merchi_sdk_js 0.0.8-t → 0.0.8-u
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -3,6 +3,7 @@ import { addPropertyTo } from './model.js';
|
|
3
3
|
import { DiscountGroup } from './discount_group.js';
|
4
4
|
import { MerchiFile } from './merchi_file.js';
|
5
5
|
import { VariationField } from './variation_field.js';
|
6
|
+
import { DraftTemplate } from './draft_template.js';
|
6
7
|
|
7
8
|
export function VariationFieldsOption() {
|
8
9
|
this.resource = '/variationFieldOptions';
|
@@ -20,7 +21,9 @@ export function VariationFieldsOption() {
|
|
20
21
|
addPropertyTo(this, 'variationUnitCost');
|
21
22
|
addPropertyTo(this, 'variationUnitCostDiscountGroup', DiscountGroup);
|
22
23
|
addPropertyTo(this, 'linkedFile', MerchiFile);
|
23
|
-
addPropertyTo(this, 'variationField', VariationField)
|
24
|
+
addPropertyTo(this, 'variationField', VariationField);
|
25
|
+
addPropertyTo(this, 'draftTemplates', DraftTemplate);
|
26
|
+
|
24
27
|
|
25
28
|
this.totalCost = function (quantity) {
|
26
29
|
var total = this.variationCost() ?
|