packages-ob-lib 0.0.4 → 0.0.5
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/dist/pos/openbravo/businessPartner/interfaces/businesspartner.export.interface.d.ts +2 -2
- package/dist/pos/openbravo/ob.service.d.ts +170 -25
- package/dist/pos/openbravo/ob.service.js +133 -23
- package/dist/pos/openbravo/ob.service.js.map +1 -1
- package/dist/pos/openbravo/order/index.d.ts +3 -3
- package/dist/pos/openbravo/order/index.js +3 -3
- package/dist/pos/openbravo/order/index.js.map +1 -1
- package/dist/pos/openbravo/product/index.d.ts +71 -11
- package/dist/pos/openbravo/product/index.js +74 -21
- package/dist/pos/openbravo/product/index.js.map +1 -1
- package/dist/pos/openbravo/productPrice/index.d.ts +23 -4
- package/dist/pos/openbravo/productPrice/index.js +23 -7
- package/dist/pos/openbravo/productPrice/index.js.map +1 -1
- package/dist/pos/openbravo/stock/index.d.ts +35 -6
- package/dist/pos/openbravo/stock/index.js +40 -12
- package/dist/pos/openbravo/stock/index.js.map +1 -1
- package/dist/pos/openbravo/stock/interfaces/stock.export.interface.d.ts +12 -12
- package/dist/pos/openbravo/types.d.ts +4 -0
- package/dist/pos/openbravo/types.js +4 -0
- package/dist/pos/openbravo/types.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
@@ -1,51 +1,51 @@
|
|
1
1
|
export interface StockExport {
|
2
2
|
warehouse: string;
|
3
3
|
product: string;
|
4
|
-
product_info:
|
4
|
+
product_info: StockProductInfo;
|
5
5
|
organization: string;
|
6
6
|
attributeSetInstance: string;
|
7
|
-
attributeSetInstance_info:
|
7
|
+
attributeSetInstance_info: StockAttributeSetInstanceInfo;
|
8
8
|
bin: string;
|
9
9
|
quantityOnHand: number;
|
10
10
|
reservedQty: number;
|
11
11
|
allocatedQuantity: number;
|
12
12
|
UOM: string;
|
13
13
|
handlingUnit: string;
|
14
|
-
handlingUnits:
|
14
|
+
handlingUnits: StockHandlingUnit[];
|
15
15
|
}
|
16
|
-
export interface
|
16
|
+
export interface StockProductInfo {
|
17
17
|
searchKey: string;
|
18
18
|
name: string;
|
19
19
|
upcEAN: string;
|
20
20
|
productType: string;
|
21
21
|
id: string;
|
22
22
|
}
|
23
|
-
export interface
|
23
|
+
export interface StockAttributeSetInstanceInfo {
|
24
24
|
description: string;
|
25
25
|
serialNo: string;
|
26
26
|
lot: string;
|
27
27
|
expirationDate: string;
|
28
28
|
id: string;
|
29
29
|
}
|
30
|
-
export interface
|
30
|
+
export interface StockHandlingUnit {
|
31
31
|
searchKey: string;
|
32
32
|
type: string;
|
33
33
|
status: string;
|
34
34
|
parent: string;
|
35
35
|
storageType: string;
|
36
|
-
contents:
|
37
|
-
handlingUnits:
|
36
|
+
contents: StockHandlingUnitContent[];
|
37
|
+
handlingUnits: StockSubHandlingUnit[];
|
38
38
|
}
|
39
|
-
export interface
|
39
|
+
export interface StockHandlingUnitContent {
|
40
40
|
product: string;
|
41
|
-
product_info:
|
41
|
+
product_info: StockProductInfo;
|
42
42
|
attributeSetInstance: string;
|
43
|
-
attributeSetInstance_info:
|
43
|
+
attributeSetInstance_info: StockAttributeSetInstanceInfo;
|
44
44
|
quantityOnHand: number;
|
45
45
|
UOM: string;
|
46
46
|
handlingUnit: string;
|
47
47
|
}
|
48
|
-
export interface
|
48
|
+
export interface StockSubHandlingUnit {
|
49
49
|
searchKey: string;
|
50
50
|
type: string;
|
51
51
|
status: string;
|
@@ -9,3 +9,7 @@ export * from './productMedia/interfaces/productMedia.export.interface';
|
|
9
9
|
export * from './promotion/interfaces/promotion.export.interface';
|
10
10
|
export * from './stock/interfaces/stock.export.interface';
|
11
11
|
export * from './productprice/interfaces/productprice.export.interface';
|
12
|
+
export * from './stockTransaction/interfaces/stockTransaction.export.interface';
|
13
|
+
export * from './distributionOrder/interfaces/distributionOrder.export.interface';
|
14
|
+
export * from './goodsMovement/interfaces/goodsMovement.export.interface';
|
15
|
+
export * from './inventory/interfaces/inventory.export.interface';
|
@@ -25,4 +25,8 @@ __exportStar(require("./productMedia/interfaces/productMedia.export.interface"),
|
|
25
25
|
__exportStar(require("./promotion/interfaces/promotion.export.interface"), exports);
|
26
26
|
__exportStar(require("./stock/interfaces/stock.export.interface"), exports);
|
27
27
|
__exportStar(require("./productprice/interfaces/productprice.export.interface"), exports);
|
28
|
+
__exportStar(require("./stockTransaction/interfaces/stockTransaction.export.interface"), exports);
|
29
|
+
__exportStar(require("./distributionOrder/interfaces/distributionOrder.export.interface"), exports);
|
30
|
+
__exportStar(require("./goodsMovement/interfaces/goodsMovement.export.interface"), exports);
|
31
|
+
__exportStar(require("./inventory/interfaces/inventory.export.interface"), exports);
|
28
32
|
//# sourceMappingURL=types.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../src/pos/openbravo/types.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,gGAA8E;AAC9E,4EAA0D;AAC1D,0FAAwE;AACxE,oFAAkE;AAClE,gFAA8D;AAC9D,gGAA8E;AAC9E,4GAA0F;AAC1F,0FAAwE;AACxE,oFAAkE;AAClE,4EAA0D;AAC1D,0FAAwE"}
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../src/pos/openbravo/types.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,gGAA8E;AAC9E,4EAA0D;AAC1D,0FAAwE;AACxE,oFAAkE;AAClE,gFAA8D;AAC9D,gGAA8E;AAC9E,4GAA0F;AAC1F,0FAAwE;AACxE,oFAAkE;AAClE,4EAA0D;AAC1D,0FAAwE;AACxE,kGAAgF;AAChF,oGAAkF;AAClF,4FAA0E;AAC1E,oFAAkE"}
|