merchi_sdk_js 0.0.33 → 0.0.35
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +1 -1
- package/src/job.js +2 -2
- package/src/variation_fields_option.js +1 -0
package/package.json
CHANGED
package/src/job.js
CHANGED
@@ -583,13 +583,13 @@ export function Job() {
|
|
583
583
|
return assignment ? assignment.isUserSupplier(user) : false;
|
584
584
|
}
|
585
585
|
|
586
|
-
this.
|
586
|
+
this.tryDeduct = function (success, error) {
|
587
587
|
var request = new Request(),
|
588
588
|
data = serialise(this)[0],
|
589
589
|
query = new Dictionary(),
|
590
590
|
self = this;
|
591
591
|
query.add('embed', JSON.stringify({inventory: {}}));
|
592
|
-
request.resource('/jobs/' + this.id() + '/
|
592
|
+
request.resource('/jobs/' + this.id() + '/deduct/');
|
593
593
|
request.method('POST');
|
594
594
|
request.data().merge(data);
|
595
595
|
request.query().merge(query);
|
@@ -15,6 +15,7 @@ export function VariationFieldsOption() {
|
|
15
15
|
addPropertyTo(this, 'default');
|
16
16
|
addPropertyTo(this, 'include');
|
17
17
|
addPropertyTo(this, 'colour');
|
18
|
+
addPropertyTo(this, 'noInventory');
|
18
19
|
addPropertyTo(this, 'variationCost');
|
19
20
|
addPropertyTo(this, 'variationCostDiscountGroup', DiscountGroup);
|
20
21
|
addPropertyTo(this, 'variationUnitCost');
|