@colijnit/transactionapi 1.1.72 → 1.1.73

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.
@@ -92,6 +92,11 @@ export declare class TransactionLineInfo extends BusinessObject {
92
92
  articleImageData: string;
93
93
  purchaseOrderId: number;
94
94
  locationNr: string;
95
+ quantityToReceive: number;
96
+ quantityToAllocate: number;
97
+ quantityPurchaseToConfirm: number;
98
+ quantityToDeliver: number;
99
+ quantityToInvoice: number;
95
100
  purchasePortalLine: PurchasePortalLine;
96
101
  refTransactions: TransactionRefTransaction[];
97
102
  private _configuration;
@@ -134,6 +134,26 @@ __decorate([
134
134
  no_db_field_decorator_1.NoDbField(),
135
135
  __metadata("design:type", String)
136
136
  ], TransactionLineInfo.prototype, "locationNr", void 0);
137
+ __decorate([
138
+ no_db_field_decorator_1.NoDbField(),
139
+ __metadata("design:type", Number)
140
+ ], TransactionLineInfo.prototype, "quantityToReceive", void 0);
141
+ __decorate([
142
+ no_db_field_decorator_1.NoDbField(),
143
+ __metadata("design:type", Number)
144
+ ], TransactionLineInfo.prototype, "quantityToAllocate", void 0);
145
+ __decorate([
146
+ no_db_field_decorator_1.NoDbField(),
147
+ __metadata("design:type", Number)
148
+ ], TransactionLineInfo.prototype, "quantityPurchaseToConfirm", void 0);
149
+ __decorate([
150
+ no_db_field_decorator_1.NoDbField(),
151
+ __metadata("design:type", Number)
152
+ ], TransactionLineInfo.prototype, "quantityToDeliver", void 0);
153
+ __decorate([
154
+ no_db_field_decorator_1.NoDbField(),
155
+ __metadata("design:type", Number)
156
+ ], TransactionLineInfo.prototype, "quantityToInvoice", void 0);
137
157
  __decorate([
138
158
  no_db_field_decorator_1.NoDbField(),
139
159
  __metadata("design:type", purchase_portal_line_bo_1.PurchasePortalLine)
@@ -18,5 +18,6 @@ export declare class TransactionStatusInfo extends BusinessObject {
18
18
  isFullyReceived: boolean;
19
19
  quantityTransportNotification: number;
20
20
  quantityPurchaseConfirmed: number;
21
+ isFullyPurchaseConfirmed: boolean;
21
22
  quantityInvoiceControl: number;
22
23
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/transactionapi",
3
- "version": "1.1.72",
3
+ "version": "1.1.73",
4
4
  "scripts": {
5
5
  "build": "grunt clean && tsc",
6
6
  "browserify": "browserify build/connector.js --s colijn -o dist/out-tsc/bundle.js",