rerobe-js-orm 4.9.15 → 4.9.16
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.
|
@@ -36,8 +36,9 @@ exports.SALES_CHANNELS = {
|
|
|
36
36
|
};
|
|
37
37
|
// Point-of-sale / in-person channels: the customer is handed the goods at the
|
|
38
38
|
// moment of sale, so every item is fulfilled at sale time (there is no separate
|
|
39
|
-
// fulfillment step, and no per-item fulfillment record is created).
|
|
40
|
-
|
|
39
|
+
// fulfillment step, and no per-item fulfillment record is created). `store` is a
|
|
40
|
+
// legacy in-person store-sale channel, treated the same.
|
|
41
|
+
exports.POS_SALES_CHANNELS = [exports.SALES_CHANNELS.ribbnWebPOS, exports.SALES_CHANNELS.ribbnMobilePOS, exports.SALES_CHANNELS.store];
|
|
41
42
|
exports.FULFILLMENT_TYPES = {
|
|
42
43
|
fulfilled: 'FULFILLED',
|
|
43
44
|
partiallyFulfilled: 'PARTIALLY_FULFILLED',
|