@colijnit/transactionapi 1.1.72 → 1.1.74

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.
@@ -67,6 +67,7 @@ export declare class TransactionLineInfo extends BusinessObject {
67
67
  reference: string;
68
68
  collectionCode: string;
69
69
  goodDescription: string;
70
+ goodId: number;
70
71
  grossLineTotal: number;
71
72
  netLineTotal: number;
72
73
  lineTotalDiscountAmount: number;
@@ -92,6 +93,11 @@ export declare class TransactionLineInfo extends BusinessObject {
92
93
  articleImageData: string;
93
94
  purchaseOrderId: number;
94
95
  locationNr: string;
96
+ quantityToReceive: number;
97
+ quantityToAllocate: number;
98
+ quantityPurchaseToConfirm: number;
99
+ quantityToDeliver: number;
100
+ quantityToInvoice: number;
95
101
  purchasePortalLine: PurchasePortalLine;
96
102
  refTransactions: TransactionRefTransaction[];
97
103
  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.74",
4
4
  "scripts": {
5
5
  "build": "grunt clean && tsc",
6
6
  "browserify": "browserify build/connector.js --s colijn -o dist/out-tsc/bundle.js",