Changeset 3305668
- Timestamp:
- 06/03/2025 11:41:05 AM (10 months ago)
- Location:
- cdekdelivery
- Files:
-
- 2 deleted
- 4 edited
- 22 copied
-
tags/4.2.3 (copied) (copied from cdekdelivery/trunk)
-
tags/4.2.3/README.md (copied) (copied from cdekdelivery/trunk/README.md) (2 diffs)
-
tags/4.2.3/build/cdek-checkout-map.asset.php (copied) (copied from cdekdelivery/trunk/build/cdek-checkout-map.asset.php)
-
tags/4.2.3/build/cdek-checkout-map.js (copied) (copied from cdekdelivery/trunk/build/cdek-checkout-map.js)
-
tags/4.2.3/cdek.php (copied) (copied from cdekdelivery/trunk/cdek.php) (1 diff)
-
tags/4.2.3/lang/cdekdelivery.pot (copied) (copied from cdekdelivery/trunk/lang/cdekdelivery.pot) (1 diff)
-
tags/4.2.3/src/Actions/CalculateDeliveryAction.php (copied) (copied from cdekdelivery/trunk/src/Actions/CalculateDeliveryAction.php)
-
tags/4.2.3/src/Actions/CheckoutItemPriceAction.php (copied) (copied from cdekdelivery/trunk/src/Actions/CheckoutItemPriceAction.php)
-
tags/4.2.3/src/Actions/OrderCreateAction.php (copied) (copied from cdekdelivery/trunk/src/Actions/OrderCreateAction.php)
-
tags/4.2.3/src/Actions/ProcessWoocommerceCreateShippingAction.php (deleted)
-
tags/4.2.3/src/Actions/RecalculateShippingAction.php (copied) (copied from cdekdelivery/trunk/src/Actions/RecalculateShippingAction.php)
-
tags/4.2.3/src/Actions/SaveOfficeToSessionAction.php (copied) (copied from cdekdelivery/trunk/src/Actions/SaveOfficeToSessionAction.php)
-
tags/4.2.3/src/Blocks/CheckoutMapBlock.php (copied) (copied from cdekdelivery/trunk/src/Blocks/CheckoutMapBlock.php)
-
tags/4.2.3/src/Helpers/CheckoutHelper.php (copied) (copied from cdekdelivery/trunk/src/Helpers/CheckoutHelper.php)
-
tags/4.2.3/src/Helpers/DataCleaner.php (copied) (copied from cdekdelivery/trunk/src/Helpers/DataCleaner.php)
-
tags/4.2.3/src/Helpers/ShippingDetector.php (deleted)
-
tags/4.2.3/src/Loader.php (copied) (copied from cdekdelivery/trunk/src/Loader.php)
-
tags/4.2.3/src/MetaKeys.php (copied) (copied from cdekdelivery/trunk/src/MetaKeys.php)
-
tags/4.2.3/src/Model/Order.php (copied) (copied from cdekdelivery/trunk/src/Model/Order.php)
-
tags/4.2.3/src/ShippingMethod.php (copied) (copied from cdekdelivery/trunk/src/ShippingMethod.php)
-
tags/4.2.3/src/UI/CheckoutMap.php (copied) (copied from cdekdelivery/trunk/src/UI/CheckoutMap.php)
-
tags/4.2.3/src/Validator/CheckoutValidator.php (copied) (copied from cdekdelivery/trunk/src/Validator/CheckoutValidator.php) (2 diffs)
-
tags/4.2.3/vendor/composer/autoload_classmap.php (copied) (copied from cdekdelivery/trunk/vendor/composer/autoload_classmap.php)
-
tags/4.2.3/vendor/composer/autoload_static.php (copied) (copied from cdekdelivery/trunk/vendor/composer/autoload_static.php)
-
trunk/README.md (modified) (2 diffs)
-
trunk/cdek.php (modified) (1 diff)
-
trunk/lang/cdekdelivery.pot (modified) (1 diff)
-
trunk/src/Validator/CheckoutValidator.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cdekdelivery/tags/4.2.3/README.md
r3302591 r3305668 5 5 Requires PHP: 7.4 6 6 Tested up to: 6.8 7 Stable tag: 4.2. 27 Stable tag: 4.2.3 8 8 License: GPLv3 9 9 … … 73 73 * WP-201 Fixed error with shipment auto creation due to vat calculation 74 74 * WP-203 Fixed vat calculation for waybills 75 * WP-211 Fixed error with shipment creation on new checkout due to missing office 75 76 76 77 = 4.1 = -
cdekdelivery/tags/4.2.3/cdek.php
r3302591 r3305668 4 4 * Plugin URI: https://www.cdek.ru/ru/integration/modules/33 5 5 * Description: CDEK delivery integration for WooCommerce 6 * Version: 4.2. 26 * Version: 4.2.3 7 7 * Requires at least: 6.0 8 8 * Text Domain: cdekdelivery -
cdekdelivery/tags/4.2.3/lang/cdekdelivery.pot
r3302591 r3305668 10 10 "X-Generator: GlotPress/4.0.1\n" 11 11 "Language: ru\n" 12 "Project-Id-Version: CDEKDelivery 4.2. 2"12 "Project-Id-Version: CDEKDelivery 4.2.3" 13 13 14 14 #: build/cdek-order-item.js:1 -
cdekdelivery/tags/4.2.3/src/Validator/CheckoutValidator.php
r3301921 r3305668 11 11 12 12 use Cdek\CdekApi; 13 use Cdek\Config; 13 14 use Cdek\Exceptions\CacheException; 14 15 use Cdek\Exceptions\External\ApiException; … … 33 34 34 35 if ( in_array((int)$meta[MetaKeys::TARIFF_MODE], Tariff::listOfficeDeliveryModes(), true) ) { 35 if ( empty($meta[MetaKeys::OFFICE_CODE]) ) {36 if ( empty($meta[MetaKeys::OFFICE_CODE]) && empty($request['extensions'][Config::DELIVERY_NAME]['office_code']) ) { 36 37 wc_add_notice(esc_html__('Order pickup point not selected.', 'cdekdelivery'), 'error'); 37 38 } -
cdekdelivery/trunk/README.md
r3302591 r3305668 5 5 Requires PHP: 7.4 6 6 Tested up to: 6.8 7 Stable tag: 4.2. 27 Stable tag: 4.2.3 8 8 License: GPLv3 9 9 … … 73 73 * WP-201 Fixed error with shipment auto creation due to vat calculation 74 74 * WP-203 Fixed vat calculation for waybills 75 * WP-211 Fixed error with shipment creation on new checkout due to missing office 75 76 76 77 = 4.1 = -
cdekdelivery/trunk/cdek.php
r3302591 r3305668 4 4 * Plugin URI: https://www.cdek.ru/ru/integration/modules/33 5 5 * Description: CDEK delivery integration for WooCommerce 6 * Version: 4.2. 26 * Version: 4.2.3 7 7 * Requires at least: 6.0 8 8 * Text Domain: cdekdelivery -
cdekdelivery/trunk/lang/cdekdelivery.pot
r3302591 r3305668 10 10 "X-Generator: GlotPress/4.0.1\n" 11 11 "Language: ru\n" 12 "Project-Id-Version: CDEKDelivery 4.2. 2"12 "Project-Id-Version: CDEKDelivery 4.2.3" 13 13 14 14 #: build/cdek-order-item.js:1 -
cdekdelivery/trunk/src/Validator/CheckoutValidator.php
r3301921 r3305668 11 11 12 12 use Cdek\CdekApi; 13 use Cdek\Config; 13 14 use Cdek\Exceptions\CacheException; 14 15 use Cdek\Exceptions\External\ApiException; … … 33 34 34 35 if ( in_array((int)$meta[MetaKeys::TARIFF_MODE], Tariff::listOfficeDeliveryModes(), true) ) { 35 if ( empty($meta[MetaKeys::OFFICE_CODE]) ) {36 if ( empty($meta[MetaKeys::OFFICE_CODE]) && empty($request['extensions'][Config::DELIVERY_NAME]['office_code']) ) { 36 37 wc_add_notice(esc_html__('Order pickup point not selected.', 'cdekdelivery'), 'error'); 37 38 }
Note: See TracChangeset
for help on using the changeset viewer.