1
0
Fork 0
mirror of synced 2025-04-06 07:13:33 +03:00
Changing the update description
Changing the option description
Edit tests
Changing option name
This commit is contained in:
Ivan Chaplygin 2024-04-24 11:12:56 +03:00
parent ad580604b1
commit 2f15ba5c13
12 changed files with 40 additions and 39 deletions

View file

@ -1,5 +1,5 @@
## 2024-04-23 4.7.7
* Support for services in ICML
* Added transfer of services via ICML catalog
## 2024-04-22 4.7.6
* Support WP 6.5

View file

@ -448,5 +448,5 @@ msgstr "La moneda del sitio web es distinto a la tienda del CRM. Para el funcion
msgid "Uploading services"
msgstr "Descarga de servicios"
msgid "When this option is enabled, all items of type 'virtual' will be considered services and uploaded to Simla.com"
msgstr "Si esta opción está activada, todos los elementos de tipo 'virtual' se tratarán como servicios y se cargarán en Simla.com"
msgid "Goods with the 'virtual' option enabled will be uploaded to Simla as services"
msgstr "Los bienes con la opción 'virtual' activada se cargarán en Simla como servicios"

View file

@ -457,5 +457,5 @@ msgstr "Валюта сайта отличается от валюты мага
msgid "Uploading services"
msgstr "Выгрузка услуг"
msgid "When this option is enabled, all items of type 'virtual' will be considered services and uploaded to Simla.com"
msgstr "При включении опции, все элементы типа 'виртуальные' будут рассматриваться как услуги и загружаться в Simla.com"
msgid "Goods with the 'virtual' option enabled will be uploaded to Simla as services"
msgstr "Товары с включенной опцией 'виртуальные' будут выгружаться в CRM как услуги"

View file

@ -144,6 +144,18 @@ abstract class WC_Retailcrm_Abstracts_Settings extends WC_Integration
),
];
$this->form_fields['icml_unload_services'] = [
'label' => __('Enabled', 'retailcrm'),
'title' => __('Uploading services', 'retailcrm'),
'class' => 'checkbox',
'type' => 'checkbox',
'desc_tip' => true,
'description' => __(
"Goods with the 'virtual' option enabled will be uploaded to Simla as services",
"retailcrm"
),
];
foreach (get_post_statuses() as $statusKey => $statusValue) {
$this->form_fields['p_' . $statusKey] = [
'title' => $statusValue,
@ -603,18 +615,6 @@ abstract class WC_Retailcrm_Abstracts_Settings extends WC_Integration
),
];
$this->form_fields['icml_services'] = [
'label' => __('Enabled', 'retailcrm'),
'title' => __('Uploading services', 'retailcrm'),
'class' => 'checkbox',
'type' => 'checkbox',
'desc_tip' => true,
'description' => __(
"When this option is enabled, all items of type 'virtual' will be considered services and uploaded to Simla.com",
"retailcrm"
),
];
$this->form_fields['icml'] = [
'label' => __('Generating ICML', 'retailcrm'),
'title' => __('Generating ICML catalog by wp-cron', 'retailcrm'),

View file

@ -50,8 +50,8 @@ if (!class_exists('WC_Retailcrm_Icml')) :
$this->settings = get_option(WC_Retailcrm_Base::$option_key);
$this->icmlWriter = new WC_Retailcrm_Icml_Writer($this->tmpFile);
$this->unloadServices = (
isset($this->settings['icml_services']) &&
$this->settings['icml_services'] === WC_Retailcrm_Base::YES
isset($this->settings['icml_unload_services'])
&& $this->settings['icml_unload_services'] === WC_Retailcrm_Base::YES
);
}

View file

@ -198,8 +198,8 @@ return [
"The currency of the site differs from the currency of the store in CRM. For the integration to work correctly, the currencies in CRM and CMS must match" =>
"La moneda del sitio web es distinto a la tienda del CRM. Para el funcionamiento correcto de la integración, las monedas del CMS y CRM deben coincid",
"Uploading services" => "Descarga de servicios",
"When this option is enabled, all items of type 'virtual' will be considered services and uploaded to Simla.com" =>
"Si esta opción está activada, todos los elementos de tipo 'virtual' se tratarán como servicios y se cargarán en Simla.com"
"Goods with the 'virtual' option enabled will be uploaded to Simla as services" =>
"Los bienes con la opción 'virtual' activada se cargarán en Simla como servicios"
],
"language" => "es",
"x-generator" => "GlotPress/2.4.0-alpha",

Binary file not shown.

View file

@ -197,8 +197,8 @@ return [
"The currency of the site differs from the currency of the store in CRM. For the integration to work correctly, the currencies in CRM and CMS must match" =>
"Валюта сайта отличается от валюты магазина в CRM. Для корректной работы интеграции, валюты в CRM и CMS должны совпадать",
"Uploading services" => "Выгрузка услуг",
"When this option is enabled, all items of type 'virtual' will be considered services and uploaded to Simla.com" =>
"При включении опции, все элементы типа 'виртуальные' будут рассматриваться как услуги и загружаться в Simla.com"
"Goods with the 'virtual' option enabled will be uploaded to Simla as services" =>
"Товары с включенной опцией 'виртуальные' будут выгружаться в CRM как услуги"
],
"language" => "ru",
"x-generator" => "GlotPress/2.4.0-alpha",

Binary file not shown.

View file

@ -83,7 +83,7 @@ Asegúrate de tener una clave API específica para cada tienda. Las siguientes i
== Changelog ==
= 4.7.7 =
* Support for services in ICML
* Added transfer of services via ICML catalog
= 4.7.6 =
* Support WP 6.5

View file

@ -80,7 +80,7 @@ class WC_Retailcrm_Test_Case_Helper extends WC_Unit_Test_Case
'product_description' => 'full',
'stores_for_uploading' => ['woocommerce', 'main'],
'woo_coupon_apply_field' => 'testField',
'icml_services' => 'yes'
'icml_unload_services' => 'yes'
];
update_option(WC_Retailcrm_Base::$option_key, $options);

View file

@ -62,23 +62,24 @@ class WC_Retailcrm_Icml_Test extends WC_Retailcrm_Test_Case_Helper
private function createVirtualProduct()
{
$product = wp_insert_post( array(
$product = wp_insert_post([
'post_title' => 'Dummy Product',
'post_type' => 'product',
'post_status' => 'publish',
) );
update_post_meta( $product, '_price', '10' );
update_post_meta( $product, '_regular_price', '10' );
update_post_meta( $product, '_sale_price', '' );
update_post_meta( $product, '_sku', 'DUMMY SKU' );
update_post_meta( $product, '_manage_stock', 'no' );
update_post_meta( $product, '_tax_status', 'taxable' );
update_post_meta( $product, '_downloadable', 'no' );
update_post_meta( $product, '_virtual', 'yes' );
update_post_meta( $product, '_stock_status', 'instock' );
update_post_meta( $product, '_weight', '1.1' );
wp_set_object_terms( $product, 'simple', 'product_type' );
]);
return new WC_Product_Simple( $product );
update_post_meta($product, '_price', '10');
update_post_meta($product, '_regular_price', '10');
update_post_meta($product, '_sale_price', '');
update_post_meta($product, '_sku', 'DUMMY SKU');
update_post_meta($product, '_manage_stock', 'no');
update_post_meta($product, '_tax_status', 'taxable');
update_post_meta($product, '_downloadable', 'no');
update_post_meta($product, '_virtual', 'yes');
update_post_meta($product, '_stock_status', 'instock');
update_post_meta($product, '_weight', '1.1');
wp_set_object_terms($product, 'simple', 'product_type');
return new WC_Product_Simple($product);
}
}