@artisan-commerce/builders 0.7.0-canary.21 → 0.7.0-canary.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +19 -0
- package/dist/bundle.cjs.js +122 -5
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.d.ts +136 -1
- package/dist/bundle.esm.js +117 -0
- package/dist/bundle.esm.js.map +1 -1
- package/dist/bundle.umd.js +124 -9
- package/dist/bundle.umd.js.map +1 -1
- package/package.json +3 -3
package/dist/bundle.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Account, Banner, BannerImage, BillingData, Catalogue, Category, CategoryWithProducts, CommonDocumentType, ARDocumentType, BODocumentType, BRDocumentType, CLDocumentType, CODocumentType, ECDocumentType, PYDocumentType, PEDocumentType, UYDocumentType, VEDocumentType, USDocumentType, RandomImageConfig, CountryCode, DocumentType, CountrySummary, CountryCurrency, Country, Benefit, Award, Wallet, StepCategory, StepCode, Issue, IssueAdditionalInfo, IssueHistory, Workflow, StepNotification, StepWorkflow, WebhookWorkflow, StepWorkflowAdditionalInfo, StepWorkflowGroup, TransitionWorkflow, URLImage, CDNImage, Notification, OrderStatus, Allocation, BaseOrder, OrderDetails, OrderStep, OrderStepAdditionalInfo, OrderStepAdditionalInfoGroup, OrderDetailShippingCost, OrderRetry, Status, OrderPaymentMethod, OrderShoppingCart, OrderStore, OrderProduct, OrderBillProduct, OrderBillTotal, OrderAdditionalInfo, MetadataShipping, BaseField, ZipCodeField, IntegrationMessage, InjectionDetail, OrderUser, OperatorInformation, Suborder, PaymentMethodByOrder, OrderRetryPaymentMethod, BasePaymentMethod, PaymentMethod, PaymentProvider, CreditCardMapping, CardInscription, PriceCategoryTax, PriceCategory, BaseProduct, ProductAnswer, ProductQuestion, ProductDetails, CartProductAnswer, CartProductQuestion, CartProduct, Settings, UserSettings, Field, Rule, Message, LivingPlace, ShippingAddress, BillTotalCategory, BillTotal, CartStore, Objectify, ShoppingCart, ShippingCost, ShippingCostTax, Store, AdditionalStoreInformation, Delivery, Schedule, Service, GenericStoreLocation, StoreLocation, User, Phone, Vendor } from '@artisan-commerce/types';
|
|
1
|
+
import { Account, Banner, BannerImage, BillingData, Catalogue, Category, CategoryWithProducts, CommonDocumentType, ARDocumentType, BODocumentType, BRDocumentType, CLDocumentType, CODocumentType, ECDocumentType, PYDocumentType, PEDocumentType, UYDocumentType, VEDocumentType, USDocumentType, RandomImageConfig, CountryCode, DocumentType, CountrySummary, CountryCurrency, Country, Benefit, Award, Wallet, StepCategory, StepCode, Issue, IssueAdditionalInfo, IssueHistory, Workflow, StepNotification, StepWorkflow, WebhookWorkflow, StepWorkflowAdditionalInfo, StepWorkflowGroup, TransitionWorkflow, URLImage, CDNImage, Notification, OrderStatus, Allocation, BaseOrder, OrderDetails, OrderStep, OrderStepAdditionalInfo, OrderStepAdditionalInfoGroup, OrderDetailShippingCost, OrderRetry, Status, OrderPaymentMethod, OrderShoppingCart, OrderStore, OrderProductAttributes, OrderProductAdditionalInfo, OrderProductImage, OrderBillProductAdditionalInfo, TaxCalculation, TaxCalculations, OrderProductPriceCategory, OrderProduct, OrderBillProduct, OrderBillTotal, OrderAdditionalInfo, MetadataShipping, BaseField, ZipCodeField, IntegrationMessage, InjectionDetail, OrderUser, OperatorInformation, Suborder, PaymentMethodByOrder, OrderRetryPaymentMethod, BasePaymentMethod, PaymentMethod, PaymentProvider, CreditCardMapping, CardInscription, PriceCategoryTax, PriceCategory, BaseProduct, ProductAnswer, ProductQuestion, ProductDetails, CartProductAnswer, CartProductQuestion, CartProduct, Settings, UserSettings, Field, Rule, Message, LivingPlace, ShippingAddress, BillTotalCategory, BillTotal, CartStore, Objectify, ShoppingCart, ShippingCost, ShippingCostTax, Store, AdditionalStoreInformation, Delivery, Schedule, Service, GenericStoreLocation, StoreLocation, User, Phone, Vendor } from '@artisan-commerce/types';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* Generates Account object with random data.
|
|
@@ -1201,6 +1201,117 @@ declare const buildOrderStore: (overrides?: Partial<OrderStore>) => OrderStore;
|
|
|
1201
1201
|
* see {@link OrderStore}
|
|
1202
1202
|
*/
|
|
1203
1203
|
declare const genOrderStores: (quantity?: number | undefined) => OrderStore[];
|
|
1204
|
+
/**
|
|
1205
|
+
* Generates OrderProductAttributes object with random data.
|
|
1206
|
+
*
|
|
1207
|
+
* @since 0.1.0
|
|
1208
|
+
* @param {Partial<OrderProductAttributes>} overrides Properties to override
|
|
1209
|
+
* a {@link OrderProductAttributes}
|
|
1210
|
+
* @returns {OrderProductAttributes} A {@link OrderProductAttributes} object
|
|
1211
|
+
*/
|
|
1212
|
+
declare const buildOrderProductAttributes: (overrides?: Partial<OrderProductAttributes>) => OrderProductAttributes;
|
|
1213
|
+
/**
|
|
1214
|
+
* Generates a list of OrderProductAttributes objects with random data.
|
|
1215
|
+
*
|
|
1216
|
+
* @since 0.1.0
|
|
1217
|
+
* @param {number} quantity The number of objects to be generated
|
|
1218
|
+
* @returns {OrderProductAttributes[]} An array of OrderProductAttributes
|
|
1219
|
+
* objects, see {@link OrderProductAttributes}
|
|
1220
|
+
*/
|
|
1221
|
+
declare const genOrderProductAttributes: (quantity?: number | undefined) => OrderProductAttributes[];
|
|
1222
|
+
/**
|
|
1223
|
+
* Generates OrderProductAdditionalInfo object with random data.
|
|
1224
|
+
*
|
|
1225
|
+
* @since 0.1.0
|
|
1226
|
+
* @param {Partial<OrderProductAdditionalInfo>} overrides Properties to override
|
|
1227
|
+
* a {@link OrderProductAdditionalInfo}
|
|
1228
|
+
* @returns {OrderProductAdditionalInfo} A {@link OrderProductAdditionalInfo}
|
|
1229
|
+
* object
|
|
1230
|
+
*/
|
|
1231
|
+
declare const buildOrderProductAdditionalInfo: (overrides?: Partial<OrderProductAdditionalInfo>) => OrderProductAdditionalInfo;
|
|
1232
|
+
/**
|
|
1233
|
+
* Generates a list of OrderProductAdditionalInfo objects with random data.
|
|
1234
|
+
*
|
|
1235
|
+
* @since 0.1.0
|
|
1236
|
+
* @param {number} quantity The number of objects to be generated
|
|
1237
|
+
* @returns {OrderProductAdditionalInfo[]} An array of
|
|
1238
|
+
* OrderProductAdditionalInfo objects, see {@link OrderProductAdditionalInfo}
|
|
1239
|
+
*/
|
|
1240
|
+
declare const genOrderProductAdditionalInfos: (quantity?: number | undefined) => OrderProductAdditionalInfo[];
|
|
1241
|
+
/**
|
|
1242
|
+
* Generates OrderProductImage object with random data.
|
|
1243
|
+
*
|
|
1244
|
+
* @since 0.1.0
|
|
1245
|
+
* @param {Partial<OrderProductImage>} overrides Properties to override
|
|
1246
|
+
* a {@link OrderProductImage}
|
|
1247
|
+
* @returns {OrderProductImage} A {@link OrderProductImage} object
|
|
1248
|
+
*/
|
|
1249
|
+
declare const buildOrderProductImage: (overrides?: Partial<OrderProductImage>) => OrderProductImage;
|
|
1250
|
+
/**
|
|
1251
|
+
* Generates a list of OrderProductImage objects with random data.
|
|
1252
|
+
*
|
|
1253
|
+
* @since 0.1.0
|
|
1254
|
+
* @param {number} quantity The number of objects to be generated
|
|
1255
|
+
* @returns {OrderProductImage[]} An array of OrderProductImage objects,
|
|
1256
|
+
* see {@link OrderProductImage}
|
|
1257
|
+
*/
|
|
1258
|
+
declare const genOrderProductImages: (quantity?: number | undefined) => OrderProductImage[];
|
|
1259
|
+
/**
|
|
1260
|
+
* Generates OrderBillProductAdditionalInfo object with random data.
|
|
1261
|
+
*
|
|
1262
|
+
* @since 0.1.0
|
|
1263
|
+
* @param {Partial<OrderBillProductAdditionalInfo>} overrides Properties to
|
|
1264
|
+
* override a {@link OrderBillProductAdditionalInfo}
|
|
1265
|
+
* @returns {OrderBillProductAdditionalInfo} A
|
|
1266
|
+
* {@link OrderBillProductAdditionalInfo} object
|
|
1267
|
+
*/
|
|
1268
|
+
declare const buildOrderBillProductAdditionalInfo: (overrides?: Partial<OrderBillProductAdditionalInfo>) => OrderBillProductAdditionalInfo;
|
|
1269
|
+
/**
|
|
1270
|
+
* Generates TaxCalculation object with random data.
|
|
1271
|
+
*
|
|
1272
|
+
* @since 0.1.0
|
|
1273
|
+
* @param {Partial<TaxCalculation>} overrides Properties to override
|
|
1274
|
+
* a {@link TaxCalculation}
|
|
1275
|
+
* @returns {TaxCalculation} A {@link TaxCalculation} object
|
|
1276
|
+
*/
|
|
1277
|
+
declare const buildTaxCalculation: (overrides?: Partial<TaxCalculation>) => TaxCalculation;
|
|
1278
|
+
/**
|
|
1279
|
+
* Generates a list of TaxCalculation objects with random data.
|
|
1280
|
+
*
|
|
1281
|
+
* @since 0.1.0
|
|
1282
|
+
* @param {number} quantity The number of objects to be generated
|
|
1283
|
+
* @returns {TaxCalculation[]} An array of TaxCalculation objects,
|
|
1284
|
+
* see {@link TaxCalculation}
|
|
1285
|
+
*/
|
|
1286
|
+
declare const genTaxCalculations: (quantity?: number | undefined) => TaxCalculation[];
|
|
1287
|
+
/**
|
|
1288
|
+
* Generates TaxCalculations object with random data.
|
|
1289
|
+
*
|
|
1290
|
+
* @since 0.1.0
|
|
1291
|
+
* @param {Partial<TaxCalculations>} overrides Properties to override
|
|
1292
|
+
* a {@link TaxCalculations}
|
|
1293
|
+
* @returns {TaxCalculations} A {@link TaxCalculations} object
|
|
1294
|
+
*/
|
|
1295
|
+
declare const buildTaxCalculations: (overrides?: Partial<TaxCalculations>) => TaxCalculations;
|
|
1296
|
+
/**
|
|
1297
|
+
* Generates OrderProductPriceCategory object with random data.
|
|
1298
|
+
*
|
|
1299
|
+
* @since 0.1.0
|
|
1300
|
+
* @param {Partial<OrderProductPriceCategory>} overrides Properties to override
|
|
1301
|
+
* a {@link OrderProductPriceCategory}
|
|
1302
|
+
* @returns {OrderProductPriceCategory} A {@link OrderProductPriceCategory}
|
|
1303
|
+
* object
|
|
1304
|
+
*/
|
|
1305
|
+
declare const buildOrderProductPriceCategory: (overrides?: Partial<OrderProductPriceCategory>) => OrderProductPriceCategory;
|
|
1306
|
+
/**
|
|
1307
|
+
* Generates a list of OrderProductPriceCategory objects with random data.
|
|
1308
|
+
*
|
|
1309
|
+
* @since 0.1.0
|
|
1310
|
+
* @param {number} quantity The number of objects to be generated
|
|
1311
|
+
* @returns {OrderProductPriceCategory[]} An array of OrderProductPriceCategory
|
|
1312
|
+
* objects, see {@link OrderProductPriceCategory}
|
|
1313
|
+
*/
|
|
1314
|
+
declare const genOrderProductPriceCategories: (quantity?: number | undefined) => OrderProductPriceCategory[];
|
|
1204
1315
|
/**
|
|
1205
1316
|
* Generates OrderProduct object with random data.
|
|
1206
1317
|
*
|
|
@@ -1467,6 +1578,18 @@ declare const order_builder_genOrderPaymentMethods: typeof genOrderPaymentMethod
|
|
|
1467
1578
|
declare const order_builder_buildOrderShoppingCart: typeof buildOrderShoppingCart;
|
|
1468
1579
|
declare const order_builder_buildOrderStore: typeof buildOrderStore;
|
|
1469
1580
|
declare const order_builder_genOrderStores: typeof genOrderStores;
|
|
1581
|
+
declare const order_builder_buildOrderProductAttributes: typeof buildOrderProductAttributes;
|
|
1582
|
+
declare const order_builder_genOrderProductAttributes: typeof genOrderProductAttributes;
|
|
1583
|
+
declare const order_builder_buildOrderProductAdditionalInfo: typeof buildOrderProductAdditionalInfo;
|
|
1584
|
+
declare const order_builder_genOrderProductAdditionalInfos: typeof genOrderProductAdditionalInfos;
|
|
1585
|
+
declare const order_builder_buildOrderProductImage: typeof buildOrderProductImage;
|
|
1586
|
+
declare const order_builder_genOrderProductImages: typeof genOrderProductImages;
|
|
1587
|
+
declare const order_builder_buildOrderBillProductAdditionalInfo: typeof buildOrderBillProductAdditionalInfo;
|
|
1588
|
+
declare const order_builder_buildTaxCalculation: typeof buildTaxCalculation;
|
|
1589
|
+
declare const order_builder_genTaxCalculations: typeof genTaxCalculations;
|
|
1590
|
+
declare const order_builder_buildTaxCalculations: typeof buildTaxCalculations;
|
|
1591
|
+
declare const order_builder_buildOrderProductPriceCategory: typeof buildOrderProductPriceCategory;
|
|
1592
|
+
declare const order_builder_genOrderProductPriceCategories: typeof genOrderProductPriceCategories;
|
|
1470
1593
|
declare const order_builder_buildOrderProduct: typeof buildOrderProduct;
|
|
1471
1594
|
declare const order_builder_genOrderProducts: typeof genOrderProducts;
|
|
1472
1595
|
declare const order_builder_buildOrderBillProduct: typeof buildOrderBillProduct;
|
|
@@ -1520,6 +1643,18 @@ declare namespace order_builder {
|
|
|
1520
1643
|
order_builder_buildOrderShoppingCart as buildOrderShoppingCart,
|
|
1521
1644
|
order_builder_buildOrderStore as buildOrderStore,
|
|
1522
1645
|
order_builder_genOrderStores as genOrderStores,
|
|
1646
|
+
order_builder_buildOrderProductAttributes as buildOrderProductAttributes,
|
|
1647
|
+
order_builder_genOrderProductAttributes as genOrderProductAttributes,
|
|
1648
|
+
order_builder_buildOrderProductAdditionalInfo as buildOrderProductAdditionalInfo,
|
|
1649
|
+
order_builder_genOrderProductAdditionalInfos as genOrderProductAdditionalInfos,
|
|
1650
|
+
order_builder_buildOrderProductImage as buildOrderProductImage,
|
|
1651
|
+
order_builder_genOrderProductImages as genOrderProductImages,
|
|
1652
|
+
order_builder_buildOrderBillProductAdditionalInfo as buildOrderBillProductAdditionalInfo,
|
|
1653
|
+
order_builder_buildTaxCalculation as buildTaxCalculation,
|
|
1654
|
+
order_builder_genTaxCalculations as genTaxCalculations,
|
|
1655
|
+
order_builder_buildTaxCalculations as buildTaxCalculations,
|
|
1656
|
+
order_builder_buildOrderProductPriceCategory as buildOrderProductPriceCategory,
|
|
1657
|
+
order_builder_genOrderProductPriceCategories as genOrderProductPriceCategories,
|
|
1523
1658
|
order_builder_buildOrderProduct as buildOrderProduct,
|
|
1524
1659
|
order_builder_genOrderProducts as genOrderProducts,
|
|
1525
1660
|
order_builder_buildOrderBillProduct as buildOrderBillProduct,
|
package/dist/bundle.esm.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { Buffer } from 'buffer';
|
|
2
|
+
|
|
1
3
|
const genItems = (builder, quantity) => {
|
|
2
4
|
const num = quantity != null ? quantity : Math.floor(Math.random() * 9) + 1;
|
|
3
5
|
const items = [];
|
|
@@ -89983,9 +89985,112 @@ const buildOrderStore = (overrides = {}) => {
|
|
|
89983
89985
|
const genOrderStores = (quantity) => {
|
|
89984
89986
|
return genItems(buildOrderStore, quantity);
|
|
89985
89987
|
};
|
|
89988
|
+
const buildOrderProductAttributes = (overrides = {}) => {
|
|
89989
|
+
return __spreadValues$1({
|
|
89990
|
+
cantidad: "1",
|
|
89991
|
+
external_id: "001",
|
|
89992
|
+
show_in_menu: genBiasBoolean(0.5)
|
|
89993
|
+
}, overrides);
|
|
89994
|
+
};
|
|
89995
|
+
const genOrderProductAttributes = (quantity) => {
|
|
89996
|
+
return genItems(buildOrderProductAttributes, quantity);
|
|
89997
|
+
};
|
|
89998
|
+
const buildOrderProductAdditionalInfo = (overrides = {}) => {
|
|
89999
|
+
return __spreadValues$1({
|
|
90000
|
+
attributes: buildOrderProductAttributes(),
|
|
90001
|
+
available: genBiasBoolean(0.5),
|
|
90002
|
+
description: faker.lorem.lines(2),
|
|
90003
|
+
is_price_vip: genBiasBoolean(0.5),
|
|
90004
|
+
max_amount_for_sale: genNumber(100),
|
|
90005
|
+
new_store: genNumber(9999),
|
|
90006
|
+
out_of_service: genBiasBoolean(0.5),
|
|
90007
|
+
out_of_stock: genBiasBoolean(0.5),
|
|
90008
|
+
sponsored: genBiasBoolean(0.1),
|
|
90009
|
+
status: "ACTIVE",
|
|
90010
|
+
stock: 1e3,
|
|
90011
|
+
suggested_price: genNumber(100).toString(),
|
|
90012
|
+
type: "PRODUCT",
|
|
90013
|
+
measure: "unit",
|
|
90014
|
+
bill_product: buildOrderBillProductAdditionalInfo(),
|
|
90015
|
+
bill_product_and_answers: buildOrderBillProductAdditionalInfo(),
|
|
90016
|
+
images: genOrderProductImages(),
|
|
90017
|
+
price_category: "NORMAL",
|
|
90018
|
+
prices: buildOrderBillProductAdditionalInfo()
|
|
90019
|
+
}, overrides);
|
|
90020
|
+
};
|
|
90021
|
+
const genOrderProductAdditionalInfos = (quantity) => {
|
|
90022
|
+
return genItems(buildOrderProductAdditionalInfo, quantity);
|
|
90023
|
+
};
|
|
90024
|
+
const buildOrderProductImage = (overrides = {}) => {
|
|
90025
|
+
const imageName = genWord();
|
|
90026
|
+
return __spreadValues$1({
|
|
90027
|
+
bucket: genWord(),
|
|
90028
|
+
cloud_front_url: genURL(),
|
|
90029
|
+
key: `images/${imageName}.jpg`,
|
|
90030
|
+
name: `${imageName}.jpg`,
|
|
90031
|
+
url: buildURLImage()
|
|
90032
|
+
}, overrides);
|
|
90033
|
+
};
|
|
90034
|
+
const genOrderProductImages = (quantity) => {
|
|
90035
|
+
return genItems(buildOrderProductImage, quantity);
|
|
90036
|
+
};
|
|
90037
|
+
const buildOrderBillProductAdditionalInfo = (overrides = {}) => {
|
|
90038
|
+
return __spreadValues$1({
|
|
90039
|
+
normal: buildOrderProductPriceCategory(),
|
|
90040
|
+
points: buildOrderProductPriceCategory()
|
|
90041
|
+
}, overrides);
|
|
90042
|
+
};
|
|
90043
|
+
const buildTaxCalculation = (overrides = {}) => {
|
|
90044
|
+
return __spreadValues$1({
|
|
90045
|
+
code: genNumber(10),
|
|
90046
|
+
name: chooseRandom(["IVA"]),
|
|
90047
|
+
percentage: genNumber(10),
|
|
90048
|
+
vat_rate: genNumber(10).toString(),
|
|
90049
|
+
tax_base: genNumber(10),
|
|
90050
|
+
value: genNumber(10),
|
|
90051
|
+
vat_rate_code: genNumber(10)
|
|
90052
|
+
}, overrides);
|
|
90053
|
+
};
|
|
90054
|
+
const genTaxCalculations = (quantity) => {
|
|
90055
|
+
return genItems(buildTaxCalculation, quantity);
|
|
90056
|
+
};
|
|
90057
|
+
const buildTaxCalculations = (overrides = {}) => {
|
|
90058
|
+
const key = `${genNumber(10)}_${genNumber(10)}`;
|
|
90059
|
+
return __spreadValues$1({
|
|
90060
|
+
[key]: buildTaxCalculation()
|
|
90061
|
+
}, overrides);
|
|
90062
|
+
};
|
|
90063
|
+
const buildOrderProductPriceCategory = (overrides = {}) => {
|
|
90064
|
+
return __spreadValues$1({
|
|
90065
|
+
amount: genNumber(50),
|
|
90066
|
+
taxes: genTaxCalculations(),
|
|
90067
|
+
category: "NORMAL",
|
|
90068
|
+
discount: genNumber(12),
|
|
90069
|
+
discount_gross_price: genNumber(50),
|
|
90070
|
+
discount_net_price: genNumber(50),
|
|
90071
|
+
discount_total: genNumber(40),
|
|
90072
|
+
discounts: [],
|
|
90073
|
+
gross_price: genNumber(50),
|
|
90074
|
+
net_price: genNumber(50),
|
|
90075
|
+
name: faker.commerce.productName(),
|
|
90076
|
+
subtotal_before_taxes: genNumber(30),
|
|
90077
|
+
subtotal_before_taxes_before_discounts: genNumber(30),
|
|
90078
|
+
subtotal_without_taxes: genNumber(30),
|
|
90079
|
+
subtotal_zero: 0,
|
|
90080
|
+
product_id: genNumber(99999),
|
|
90081
|
+
symbol: genSymbol,
|
|
90082
|
+
tax_calcs: buildTaxCalculations(),
|
|
90083
|
+
tax_total: genNumber(12),
|
|
90084
|
+
total: genNumber(50)
|
|
90085
|
+
}, overrides);
|
|
90086
|
+
};
|
|
90087
|
+
const genOrderProductPriceCategories = (quantity) => {
|
|
90088
|
+
return genItems(buildOrderProductPriceCategory, quantity);
|
|
90089
|
+
};
|
|
89986
90090
|
const buildOrderProduct = (overrides = {}) => {
|
|
89987
90091
|
return __spreadValues$1({
|
|
89988
90092
|
id: genNumericId(),
|
|
90093
|
+
additionalInfo: buildOrderProductAdditionalInfo(),
|
|
89989
90094
|
productId: genNumericId(),
|
|
89990
90095
|
productName: genWords(5),
|
|
89991
90096
|
comment: genWords(5),
|
|
@@ -90175,6 +90280,18 @@ var order_builder = /*#__PURE__*/Object.freeze({
|
|
|
90175
90280
|
buildOrderShoppingCart: buildOrderShoppingCart,
|
|
90176
90281
|
buildOrderStore: buildOrderStore,
|
|
90177
90282
|
genOrderStores: genOrderStores,
|
|
90283
|
+
buildOrderProductAttributes: buildOrderProductAttributes,
|
|
90284
|
+
genOrderProductAttributes: genOrderProductAttributes,
|
|
90285
|
+
buildOrderProductAdditionalInfo: buildOrderProductAdditionalInfo,
|
|
90286
|
+
genOrderProductAdditionalInfos: genOrderProductAdditionalInfos,
|
|
90287
|
+
buildOrderProductImage: buildOrderProductImage,
|
|
90288
|
+
genOrderProductImages: genOrderProductImages,
|
|
90289
|
+
buildOrderBillProductAdditionalInfo: buildOrderBillProductAdditionalInfo,
|
|
90290
|
+
buildTaxCalculation: buildTaxCalculation,
|
|
90291
|
+
genTaxCalculations: genTaxCalculations,
|
|
90292
|
+
buildTaxCalculations: buildTaxCalculations,
|
|
90293
|
+
buildOrderProductPriceCategory: buildOrderProductPriceCategory,
|
|
90294
|
+
genOrderProductPriceCategories: genOrderProductPriceCategories,
|
|
90178
90295
|
buildOrderProduct: buildOrderProduct,
|
|
90179
90296
|
genOrderProducts: genOrderProducts,
|
|
90180
90297
|
buildOrderBillProduct: buildOrderBillProduct,
|