@colijnit/transactionapi 1.1.48 → 1.1.49

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.
@@ -61,13 +61,13 @@ export declare class TransactionSearchViewRequest {
61
61
  contactOption: string;
62
62
  warehouse: number;
63
63
  sourceWarehouse: number;
64
- quantityAllocated: number;
65
- quantityToBePicked: number;
66
- quantityPicked: number;
67
- quantityDelivered: number;
68
- quantityInvoiced: number;
69
- quantityReceived: number;
70
- quantityConfirmed: number;
64
+ quantityAllocated: number[];
65
+ quantityToBePicked: number[];
66
+ quantityPicked: number[];
67
+ quantityDelivered: number[];
68
+ quantityInvoiced: number[];
69
+ quantityReceived: number[];
70
+ quantityConfirmed: number[];
71
71
  quotationStatus: boolean;
72
72
  rangeSalesStage: string;
73
73
  exceedanceCodes: string[];
@@ -1,4 +1,4 @@
1
- import { BusinessObject } from "./business-object";
1
+ import { BusinessObject } from './business-object';
2
2
  export declare class TransactionTotal extends BusinessObject {
3
3
  grossAmount: number;
4
4
  netAmount: number;
@@ -11,7 +11,7 @@ var __extends = (this && this.__extends) || (function () {
11
11
  d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
12
12
  };
13
13
  })();
14
- import { BusinessObject } from "./business-object";
14
+ import { BusinessObject } from './business-object';
15
15
  var TransactionTotal = (function (_super) {
16
16
  __extends(TransactionTotal, _super);
17
17
  function TransactionTotal() {
@@ -43,8 +43,8 @@ import { PurchaseAdviceFilters } from './model/purchase-advice-filters';
43
43
  import { PurchasePortalFilters } from './model/purchase-portal-filters.bo';
44
44
  import { GetPurchasePortalLine } from './model/get-purchase-portal-line';
45
45
  import { DocDeliveryBatch } from './model/doc-delivery-batch.bo';
46
- import { PurchaseAdviceLine } from "./model/purchase-advice-line.bo";
47
- import { GetPurchaseOrderConfirmation } from "./model/get-purchase-order-confirmation";
46
+ import { PurchaseAdviceLine } from './model/purchase-advice-line.bo';
47
+ import { GetPurchaseOrderConfirmation } from './model/get-purchase-order-confirmation';
48
48
  var options = {
49
49
  url: 'http',
50
50
  ajaxUrl: 'http'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/transactionapi",
3
- "version": "1.1.48",
3
+ "version": "1.1.49",
4
4
  "scripts": {
5
5
  "build": "grunt clean && tsc",
6
6
  "browserify": "browserify build/connector.js --s colijn -o dist/out-tsc/bundle.js",