@colijnit/transactionapi 258.1.23 → 258.1.24

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.
@@ -59,6 +59,7 @@ export declare class TransactionLineInfo extends BusinessObject {
59
59
  directSell: boolean;
60
60
  warehouseNumber: number;
61
61
  warehouseDescription: string;
62
+ preReceive: boolean;
62
63
  commissionCode: string;
63
64
  commissionDescription: string;
64
65
  deliveryMethodCode: string;
@@ -31,6 +31,7 @@ exports.TransactionRefTransaction = TransactionRefTransaction;
31
31
  class TransactionLineInfo extends business_object_1.BusinessObject {
32
32
  constructor() {
33
33
  super(...arguments);
34
+ this.preReceive = false;
34
35
  this.selected = false;
35
36
  this.purchasePortalLine = new purchase_portal_line_bo_1.PurchasePortalLine();
36
37
  this.refTransactions = [];
@@ -91,6 +92,10 @@ __decorate([
91
92
  (0, no_db_field_decorator_1.NoDbField)(),
92
93
  __metadata("design:type", String)
93
94
  ], TransactionLineInfo.prototype, "warehouseDescription", void 0);
95
+ __decorate([
96
+ (0, no_db_field_decorator_1.NoDbField)(),
97
+ __metadata("design:type", Boolean)
98
+ ], TransactionLineInfo.prototype, "preReceive", void 0);
94
99
  __decorate([
95
100
  (0, no_db_field_decorator_1.NoDbField)(),
96
101
  __metadata("design:type", String)
@@ -9,6 +9,7 @@ export declare class Warehouse extends BusinessObject {
9
9
  relationId: string;
10
10
  type: string;
11
11
  dropshipment: boolean;
12
+ useWMSForIncomingGoods: boolean;
12
13
  stockInfo: GetStockInfoOutputParams;
13
14
  constructor();
14
15
  getId(): any;
@@ -41,6 +41,10 @@ __decorate([
41
41
  (0, boolean_decorator_1.BooleanText)(),
42
42
  __metadata("design:type", Boolean)
43
43
  ], Warehouse.prototype, "dropshipment", void 0);
44
+ __decorate([
45
+ (0, boolean_decorator_1.BooleanText)(),
46
+ __metadata("design:type", Boolean)
47
+ ], Warehouse.prototype, "useWMSForIncomingGoods", void 0);
44
48
  __decorate([
45
49
  (0, no_db_field_decorator_1.NoDbField)(),
46
50
  __metadata("design:type", get_stock_info_output_params_1.GetStockInfoOutputParams)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/transactionapi",
3
- "version": "258.1.23",
3
+ "version": "258.1.24",
4
4
  "scripts": {
5
5
  "build": "grunt clean && tsc",
6
6
  "browserify": "browserify build/connector.js --s colijn -o dist/out-tsc/bundle.js",