Changeset 2686333
- Timestamp:
- 03/01/2022 06:32:21 AM (4 years ago)
- Location:
- doshii/trunk
- Files:
-
- 6 edited
-
README.txt (modified) (2 diffs)
-
doshii_function.php (modified) (1 diff)
-
include/woo-doshii-initialise.php (modified) (1 diff)
-
include/woo-doshii-product-sync.php (modified) (1 diff)
-
include/woo-order-api.php (modified) (2 diffs)
-
include/woo-order-status.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
doshii/trunk/README.txt
r2679498 r2686333 5 5 Requires at least: 4.7 6 6 Tested up to: 5.8.0 7 Stable tag: 2.4. 47 Stable tag: 2.4.5 8 8 Requires PHP: 7.0 9 9 License: GPLv2 or later … … 60 60 == Changelog == 61 61 62 = 2.4.5 = 63 64 Updated item bundles to ensure any included items are passed through as $0 65 62 66 = 2.4.4 = 63 67 -
doshii/trunk/doshii_function.php
r2679498 r2686333 7 7 Author URI: https://www.doshii.io 8 8 Contributors: 9 Version: 2.4. 49 Version: 2.4.5 10 10 */ 11 11 -
doshii/trunk/include/woo-doshii-initialise.php
r2679498 r2686333 40 40 'x-doshii-location-id' => $locationId.'', 41 41 'content-Type' => 'application/json', 42 'x-doshii-writeout' => 'WooCommerce 2.4. 4',42 'x-doshii-writeout' => 'WooCommerce 2.4.5', 43 43 ); 44 44 -
doshii/trunk/include/woo-doshii-product-sync.php
r2679498 r2686333 41 41 'x-doshii-location-id' => $locationId.'', 42 42 'content-Type' => 'application/json', 43 'x-doshii-writeout' => 'WooCommerce 2.4. 4',43 'x-doshii-writeout' => 'WooCommerce 2.4.5', 44 44 ) 45 45 )); -
doshii/trunk/include/woo-order-api.php
r2679498 r2686333 470 470 $doshiiBundleItem = $parentBundleItems[$parentBundle]; 471 471 if (!is_null($doshiiBundleItem)) { 472 $doshiiItem->unitPrice = 0; // set all included items to $0 472 473 array_push($doshiiBundleItem->includedItems, $doshiiItem); 473 474 } … … 548 549 'accept' => 'application/json', 549 550 'Accept-encoding' => 'gzip', 550 'x-doshii-writeout' => 'WooCommerce 2.4. 4',551 'x-doshii-writeout' => 'WooCommerce 2.4.5', 551 552 ), 552 553 'body' => json_encode($doshiiOrderPayload) -
doshii/trunk/include/woo-order-status.php
r2679498 r2686333 39 39 'x-doshii-location-id' => $doshii_options['location_id'].'', 40 40 'content-Type' => 'application/json', 41 'x-doshii-writeout' => 'WooCommerce 2.4. 4',41 'x-doshii-writeout' => 'WooCommerce 2.4.5', 42 42 ) 43 43 ));
Note: See TracChangeset
for help on using the changeset viewer.