@colijnit/transaction 255.1.16 → 255.1.18
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/bundles/colijnit-transaction.umd.js +101 -34
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/lib/component/checkout/checkout-overview-relation-edit/checkout-overview-relation-edit.component.js +3 -4
- package/esm2015/lib/component/transaction-header-fields/transaction-header-deposit-amount.component.js +3 -3
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-sales-quotation/transaction-quick-access-sales-quotation.component.js +5 -2
- package/esm2015/lib/component/transaction-search/transaction-filter-content/enum/search-placeholder.enum.js +2 -1
- package/esm2015/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-order/transaction-purchase-order-filter-content-order.component.js +20 -1
- package/esm2015/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-order/transaction-sales-order-filter-content-order.component.js +21 -2
- package/esm2015/lib/component/transaction-search/transaction-filter-content/sales-quotation-filter-content/transaction-sales-quotation-filter-content-order/transaction-sales-quotation-filter-content-order.component.js +20 -1
- package/esm2015/lib/component/transaction-search/transaction-filter-content/service-order-filter-content/transaction-service-order-filter-content-order/transaction-service-order-filter-content-order.component.js +20 -1
- package/esm2015/lib/service/transaction-connector-adapter.service.js +13 -1
- package/esm2015/lib/service/transaction-connector.service.js +6 -1
- package/esm2015/lib/service/transaction.service.js +6 -1
- package/esm2015/lib/transaction-version.js +3 -3
- package/fesm2015/colijnit-transaction.js +110 -9
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/lib/component/transaction-header/transaction-header-popup/style/_material-definition.scss +1 -1
- package/lib/component/transaction-search/transaction-filter-content/enum/search-placeholder.enum.d.ts +2 -1
- package/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-order/transaction-purchase-order-filter-content-order.component.d.ts +6 -0
- package/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-order/transaction-sales-order-filter-content-order.component.d.ts +6 -0
- package/lib/component/transaction-search/transaction-filter-content/sales-quotation-filter-content/transaction-sales-quotation-filter-content-order/transaction-sales-quotation-filter-content-order.component.d.ts +6 -0
- package/lib/component/transaction-search/transaction-filter-content/service-order-filter-content/transaction-service-order-filter-content-order/transaction-service-order-filter-content-order.component.d.ts +6 -0
- package/lib/service/transaction-connector-adapter.service.d.ts +1 -0
- package/lib/service/transaction-connector.service.d.ts +1 -0
- package/lib/service/transaction.service.d.ts +1 -0
- package/package.json +3 -3
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
function Version() {
|
|
34
34
|
this.name = "@colijnit/transaction";
|
|
35
35
|
this.description = "Colijn IT transaction package";
|
|
36
|
-
this.symVer = "255.1.
|
|
37
|
-
this.publishDate = "
|
|
36
|
+
this.symVer = "255.1.18";
|
|
37
|
+
this.publishDate = "22-8-2024 17:36:35";
|
|
38
38
|
}
|
|
39
39
|
return Version;
|
|
40
40
|
}());
|
|
@@ -7468,6 +7468,26 @@
|
|
|
7468
7468
|
});
|
|
7469
7469
|
});
|
|
7470
7470
|
};
|
|
7471
|
+
TransactionConnectorAdapterService.prototype.getAllProjectCodes = function () {
|
|
7472
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
7473
|
+
var response;
|
|
7474
|
+
return __generator(this, function (_a) {
|
|
7475
|
+
switch (_a.label) {
|
|
7476
|
+
case 0: return [4 /*yield*/, this.connector.getAllProjectCodes()];
|
|
7477
|
+
case 1:
|
|
7478
|
+
response = _a.sent();
|
|
7479
|
+
if (response && response.validationResult && response.validationResult.success) {
|
|
7480
|
+
return [2 /*return*/, this._boFactory.makeBOArrayFromRawBackendDataArray(projectCode_bo.ProjectCode, response.resultObjects)];
|
|
7481
|
+
}
|
|
7482
|
+
else {
|
|
7483
|
+
this._handleExceptionFromResponse(response);
|
|
7484
|
+
return [2 /*return*/, []];
|
|
7485
|
+
}
|
|
7486
|
+
return [2 /*return*/];
|
|
7487
|
+
}
|
|
7488
|
+
});
|
|
7489
|
+
});
|
|
7490
|
+
};
|
|
7471
7491
|
TransactionConnectorAdapterService.prototype.getPaymentConditions = function (name) {
|
|
7472
7492
|
return __awaiter(this, void 0, void 0, function () {
|
|
7473
7493
|
var response;
|
|
@@ -10493,6 +10513,16 @@
|
|
|
10493
10513
|
});
|
|
10494
10514
|
});
|
|
10495
10515
|
};
|
|
10516
|
+
TransactionConnectorService.prototype.getAllProjectCodes = function () {
|
|
10517
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
10518
|
+
return __generator(this, function (_a) {
|
|
10519
|
+
switch (_a.label) {
|
|
10520
|
+
case 0: return [4 /*yield*/, this._adapterService.getAllProjectCodes()];
|
|
10521
|
+
case 1: return [2 /*return*/, _a.sent()];
|
|
10522
|
+
}
|
|
10523
|
+
});
|
|
10524
|
+
});
|
|
10525
|
+
};
|
|
10496
10526
|
TransactionConnectorService.prototype.getPaymentConditions = function (name) {
|
|
10497
10527
|
return __awaiter(this, void 0, void 0, function () {
|
|
10498
10528
|
return __generator(this, function (_a) {
|
|
@@ -16827,6 +16857,16 @@
|
|
|
16827
16857
|
});
|
|
16828
16858
|
});
|
|
16829
16859
|
};
|
|
16860
|
+
TransactionService.prototype.getAllProjectCodes = function () {
|
|
16861
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
16862
|
+
return __generator(this, function (_a) {
|
|
16863
|
+
switch (_a.label) {
|
|
16864
|
+
case 0: return [4 /*yield*/, this.connector.getAllProjectCodes()];
|
|
16865
|
+
case 1: return [2 /*return*/, _a.sent()];
|
|
16866
|
+
}
|
|
16867
|
+
});
|
|
16868
|
+
});
|
|
16869
|
+
};
|
|
16830
16870
|
TransactionService.prototype.getPaymentConditions = function (name) {
|
|
16831
16871
|
return __awaiter(this, void 0, void 0, function () {
|
|
16832
16872
|
return __generator(this, function (_a) {
|
|
@@ -18120,7 +18160,6 @@
|
|
|
18120
18160
|
return this._relation;
|
|
18121
18161
|
},
|
|
18122
18162
|
set: function (value) {
|
|
18123
|
-
var _a, _b;
|
|
18124
18163
|
if (this._relation && value && this._relation.relationId && value.relationId && this._relation.relationId === value.relationId) {
|
|
18125
18164
|
return;
|
|
18126
18165
|
}
|
|
@@ -18132,8 +18171,8 @@
|
|
|
18132
18171
|
}
|
|
18133
18172
|
if (this._relation instanceof customerFullObject_bo.CustomerFullObject) {
|
|
18134
18173
|
this.customerGroup = this._relation.customerGroup;
|
|
18135
|
-
this.customerLanguage =
|
|
18136
|
-
this.customerTitle =
|
|
18174
|
+
this.customerLanguage = this._relation.language;
|
|
18175
|
+
this.customerTitle = this._relation.titleId;
|
|
18137
18176
|
}
|
|
18138
18177
|
this.address = this._getFirstActiveAddressOrCreateNew(this._relation);
|
|
18139
18178
|
if (this.address) {
|
|
@@ -18166,7 +18205,7 @@
|
|
|
18166
18205
|
CheckoutOverviewRelationEditComponent.prototype.ngOnInit = function () {
|
|
18167
18206
|
return __awaiter(this, void 0, void 0, function () {
|
|
18168
18207
|
var _this = this;
|
|
18169
|
-
return __generator(this, function (
|
|
18208
|
+
return __generator(this, function (_a) {
|
|
18170
18209
|
this._suggestionsService.init(this._relationKind);
|
|
18171
18210
|
this._subs.push(this._screenConfigService.configSet.subscribe(function (configObjects) {
|
|
18172
18211
|
if (configObjects && configObjects.length > 0) {
|
|
@@ -18211,13 +18250,13 @@
|
|
|
18211
18250
|
CheckoutOverviewRelationEditComponent.prototype.onRelationSuggestionClick = function (relationSuggested) {
|
|
18212
18251
|
return __awaiter(this, void 0, void 0, function () {
|
|
18213
18252
|
var lockResult, suggestedRelation;
|
|
18214
|
-
return __generator(this, function (
|
|
18215
|
-
switch (
|
|
18253
|
+
return __generator(this, function (_a) {
|
|
18254
|
+
switch (_a.label) {
|
|
18216
18255
|
case 0:
|
|
18217
18256
|
if (!relationSuggested) return [3 /*break*/, 4];
|
|
18218
18257
|
return [4 /*yield*/, this._relationService.lockRelation(relationSuggested.relationType, parseInt(relationSuggested.relationNr, 0))];
|
|
18219
18258
|
case 1:
|
|
18220
|
-
lockResult =
|
|
18259
|
+
lockResult = _a.sent();
|
|
18221
18260
|
if (!!lockResult.success) return [3 /*break*/, 2];
|
|
18222
18261
|
this._dialogService.showError('RELATION_ALREADY_LOCKED', true, lockResult.messages[0].message);
|
|
18223
18262
|
return [3 /*break*/, 4];
|
|
@@ -18225,13 +18264,13 @@
|
|
|
18225
18264
|
this._suggestionsService.hideSidebar();
|
|
18226
18265
|
return [4 /*yield*/, this._relationService.getRelation(relationSuggested.relationType, parseInt(relationSuggested.relationNr))];
|
|
18227
18266
|
case 3:
|
|
18228
|
-
suggestedRelation =
|
|
18267
|
+
suggestedRelation = _a.sent();
|
|
18229
18268
|
if (suggestedRelation && suggestedRelation.addresses && suggestedRelation.addresses.length > 0) {
|
|
18230
18269
|
suggestedRelation.addresses.sort(function (a, b) { return a.sequence < b.sequence ? -1 : 1; });
|
|
18231
18270
|
}
|
|
18232
18271
|
this.relation = suggestedRelation;
|
|
18233
18272
|
this.relationChange.next(this.relation);
|
|
18234
|
-
|
|
18273
|
+
_a.label = 4;
|
|
18235
18274
|
case 4: return [2 /*return*/];
|
|
18236
18275
|
}
|
|
18237
18276
|
});
|
|
@@ -18334,15 +18373,15 @@
|
|
|
18334
18373
|
CheckoutOverviewRelationEditComponent.prototype._setCountryNameToAddress = function (address) {
|
|
18335
18374
|
return __awaiter(this, void 0, void 0, function () {
|
|
18336
18375
|
var country;
|
|
18337
|
-
return __generator(this, function (
|
|
18338
|
-
switch (
|
|
18376
|
+
return __generator(this, function (_a) {
|
|
18377
|
+
switch (_a.label) {
|
|
18339
18378
|
case 0:
|
|
18340
18379
|
if (!(address.countryId && !address.countryName)) return [3 /*break*/, 2];
|
|
18341
18380
|
return [4 /*yield*/, this.service.getCountry(address.countryId)];
|
|
18342
18381
|
case 1:
|
|
18343
|
-
country =
|
|
18382
|
+
country = _a.sent();
|
|
18344
18383
|
address.countryName = country.description;
|
|
18345
|
-
|
|
18384
|
+
_a.label = 2;
|
|
18346
18385
|
case 2: return [2 /*return*/];
|
|
18347
18386
|
}
|
|
18348
18387
|
});
|
|
@@ -25853,20 +25892,15 @@
|
|
|
25853
25892
|
return __awaiter(this, void 0, void 0, function () {
|
|
25854
25893
|
var request;
|
|
25855
25894
|
return __generator(this, function (_b) {
|
|
25856
|
-
|
|
25857
|
-
|
|
25858
|
-
|
|
25859
|
-
|
|
25860
|
-
|
|
25861
|
-
|
|
25862
|
-
|
|
25863
|
-
|
|
25864
|
-
|
|
25865
|
-
case 1:
|
|
25866
|
-
_b.sent();
|
|
25867
|
-
this.creatingSalesOrder = false;
|
|
25868
|
-
return [2 /*return*/];
|
|
25869
|
-
}
|
|
25895
|
+
request = new copyTransactionRequest.CopyTransactionRequest();
|
|
25896
|
+
request.transId = this.transactionInfo.id;
|
|
25897
|
+
request.transactionDate = new Date();
|
|
25898
|
+
request.transactionRelationId = this.transactionInfo.relation.relationId;
|
|
25899
|
+
request.handledByRelationId = this.transactionInfo.handledBy;
|
|
25900
|
+
this.creatingSalesOrder = true;
|
|
25901
|
+
//const salesOrderCreated: boolean = await this.transactionCreationService.createSalesOrderThroughQuotation(request);
|
|
25902
|
+
this.creatingSalesOrder = false;
|
|
25903
|
+
return [2 /*return*/];
|
|
25870
25904
|
});
|
|
25871
25905
|
});
|
|
25872
25906
|
};
|
|
@@ -37482,7 +37516,7 @@
|
|
|
37482
37516
|
TransactionHeaderDepositAmountComponent.decorators = [
|
|
37483
37517
|
{ type: i0.Component, args: [{
|
|
37484
37518
|
selector: "co-transaction-header-deposit-amount",
|
|
37485
|
-
template: "\n <span *ngIf=\"!editMode || headerReadonly\" [textContent]=\"(transactionInfo.depositAmount | coCurrency) || '...'\" [tooltip]=\"tooltipMessage\"></span>\n <co-input-text #input *ngIf=\"editMode\"\n [type]=\"'number'\"\n [placeholder]=\"showLabel ? ('DOWNPAYMENT' | localize) : ''\"\n [showSaveCancel]=\"!headerReadonly\"\n [hidden]=\"hidden\"\n [readonly]=\"readonly || headerReadonly\"\n [model]=\"transactionInfo.depositAmount\"\n (blur)=\"editMode = false\"\n ></co-input-text>\n ",
|
|
37519
|
+
template: "\n <span *ngIf=\"(!editMode || headerReadonly) && !defaultEditMode\" [textContent]=\"(transactionInfo.depositAmount | coCurrency) || '...'\" [tooltip]=\"tooltipMessage\"></span>\n <co-input-text #input *ngIf=\"editMode || defaultEditMode\"\n [type]=\"'number'\"\n [placeholder]=\"showLabel ? ('DOWNPAYMENT' | localize) : ''\"\n [showSaveCancel]=\"!headerReadonly\"\n [hidden]=\"hidden\"\n [readonly]=\"readonly || headerReadonly\"\n [model]=\"transactionInfo.depositAmount\"\n (blur)=\"editMode = false\"\n ></co-input-text>\n ",
|
|
37486
37520
|
providers: [{
|
|
37487
37521
|
provide: corecomponents_v12.SCREEN_CONFIG_ADAPTER_COMPONENT_INTERFACE_NAME,
|
|
37488
37522
|
useExisting: i0.forwardRef(function () { return TransactionHeaderDepositAmountComponent; })
|
|
@@ -45160,6 +45194,7 @@
|
|
|
45160
45194
|
SearchPlaceholder["Tags"] = "SEARCH_TAGS";
|
|
45161
45195
|
SearchPlaceholder["TurnoverGroup"] = "SEARCH_TURNOVER_GROUP";
|
|
45162
45196
|
SearchPlaceholder["Warehouse"] = "SEARCH_WAREHOUSE";
|
|
45197
|
+
SearchPlaceholder["SearchProjectCode"] = "SEARCH_PROJECT_CODE";
|
|
45163
45198
|
})(SearchPlaceholder || (SearchPlaceholder = {}));
|
|
45164
45199
|
|
|
45165
45200
|
var TransactionFilterContentBaseComponent = /** @class */ (function () {
|
|
@@ -45496,6 +45531,7 @@
|
|
|
45496
45531
|
_this.orderDepositFullyPaidFields = { text: "description", value: "code" };
|
|
45497
45532
|
_this.commissionCodeFields = { text: "description", value: "code" };
|
|
45498
45533
|
_this.workflowStatusFields = { text: "name", value: "name" };
|
|
45534
|
+
_this.projectCodeFields = { text: "description", value: "id" };
|
|
45499
45535
|
return _this;
|
|
45500
45536
|
}
|
|
45501
45537
|
TransactionPurchaseOrderFilterContentOrderComponent.prototype.showClass = function () {
|
|
@@ -45512,6 +45548,7 @@
|
|
|
45512
45548
|
this._setOrderFullyPaid();
|
|
45513
45549
|
this._setOrderDepositFullyPaid();
|
|
45514
45550
|
this._setWorkFlowStatuses();
|
|
45551
|
+
this._setAllProjectCodes();
|
|
45515
45552
|
};
|
|
45516
45553
|
//Inkoper
|
|
45517
45554
|
TransactionPurchaseOrderFilterContentOrderComponent.prototype._setPurchasePersons = function () {
|
|
@@ -45580,12 +45617,18 @@
|
|
|
45580
45617
|
_this.workflowStatuses = new corecomponents_v12.FilterViewmodel(workflowStatuses, _this.workflowStatusFields).filterItems;
|
|
45581
45618
|
});
|
|
45582
45619
|
};
|
|
45620
|
+
TransactionPurchaseOrderFilterContentOrderComponent.prototype._setAllProjectCodes = function () {
|
|
45621
|
+
var _this = this;
|
|
45622
|
+
this.transactionService.getAllProjectCodes().then(function (projectCodes) {
|
|
45623
|
+
_this.projectCodes = new corecomponents_v12.FilterViewmodel(projectCodes, _this.projectCodeFields).filterItems;
|
|
45624
|
+
});
|
|
45625
|
+
};
|
|
45583
45626
|
return TransactionPurchaseOrderFilterContentOrderComponent;
|
|
45584
45627
|
}(TransactionFilterContentBaseComponent));
|
|
45585
45628
|
TransactionPurchaseOrderFilterContentOrderComponent.decorators = [
|
|
45586
45629
|
{ type: i0.Component, args: [{
|
|
45587
45630
|
selector: 'co-transaction-purchase-order-filter-content-order',
|
|
45588
|
-
template: "\n <div class=\"transaction-filter-content-order-wrapper transaction-filter-content-wrapper\">\n\n <!--Inkoopnummer-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'PURCHASENUMBER'\"\n [(model)]=\"searchService.searchRequest.transNr\"\n [mode]=\"modes.TextField\">\n </co-transaction-filter-item>\n </div>\n\n <!--Orderdatum-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ORDER_DATE'\"\n [(model)]=\"searchService.searchRequest.rangeTransDate\"\n [mode]=\"modes.DateRangeField\">\n </co-transaction-filter-item>\n </div>\n\n <!--Leverdatum-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'DELIVERY_DATE'\"\n [(model)]=\"searchService.searchRequest.deliveryDateRange\"\n [mode]=\"modes.DateRangeField\">\n </co-transaction-filter-item>\n </div>\n\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'WORKFLOW_STATUS'\"\n [collection]=\"workflowStatuses\"\n [(model)]=\"searchService.searchRequest.rangeWorkflowStatusNames\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--Filiaal-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'BRANCH'\"\n [collection]=\"branches\"\n [(model)]=\"searchService.searchRequest.rangeBranchId\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--Betaalconditie-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'PAYMENT_CONDITION'\"\n [collection]=\"paymentConditions\"\n [(model)]=\"searchService.searchRequest.rangePaymentCondition\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--Inkoper-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'PURCHASE_PERSON'\"\n [searchCollectionPlaceholder]=\"searchPlaceholder.PurchasePerson\"\n [collection]=\"purchasePersons\"\n [(model)]=\"searchService.searchRequest.rangeHandledBy\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--Eigen referentie-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'OWN_REFERENCE'\"\n [(model)]=\"searchService.searchRequest.ownReference\"\n [mode]=\"modes.TextField\">\n </co-transaction-filter-item>\n </div>\n\n <!--Tags-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'TAGS'\"\n [searchCollectionPlaceholder]=\"searchPlaceholder.Tags\"\n [collection]=\"tags\"\n [(model)]=\"searchService.searchRequest.tagRange\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--On hold codes-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ON_HOLD'\"\n [searchCollectionPlaceholder]=\"searchPlaceholder.OnHold\"\n [collection]=\"onHoldCodes\"\n [(model)]=\"searchService.searchRequest.rangeOnHoldCodes\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--Commissiecode-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'COMMISSION_CODE'\"\n [searchCollectionPlaceholder]=\"searchPlaceholder.CommissionCode\"\n [collection]=\"commissionCodes\"\n [(model)]=\"searchService.searchRequest.commissionCodes\"\n [mode]=\"modes.SelectListWithStringCollectionOutput\">\n </co-transaction-filter-item>\n </div>\n\n <!--Order definitief-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ORDER_DEFINITIVE'\"\n [collection]=\"orderDefinite\"\n [(model)]=\"searchService.searchRequest.transactionDefinitive\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n\n <!--Order fully paid -->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ORDER_FULLY_PAID'\"\n [collection]=\"orderFullyPaid\"\n [(model)]=\"searchService.searchRequest.fullyPaid\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n\n <!--Order deposit fully paid -->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ORDER_DEPOSIT_FULLY_PAID'\"\n [collection]=\"orderDepositFullyPaid\"\n [(model)]=\"searchService.searchRequest.depositFullyPaid\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--Inactieve transacties-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'INACTIVE_TRANSACTIONS'\"\n [(model)]=\"searchService.searchRequest.active\"\n [mode]=\"modes.Checkbox\">\n </co-transaction-filter-item>\n </div>\n\n <!--Inclusief retouren -->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'INCLUDING_RETURNS'\"\n [(model)]=\"searchService.searchRequest.includingReturns\"\n [mode]=\"modes.CheckboxToBinary\">\n </co-transaction-filter-item>\n </div>\n </div>\n "
|
|
45631
|
+
template: "\n <div class=\"transaction-filter-content-order-wrapper transaction-filter-content-wrapper\">\n\n <!--Inkoopnummer-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'PURCHASENUMBER'\"\n [(model)]=\"searchService.searchRequest.transNr\"\n [mode]=\"modes.TextField\">\n </co-transaction-filter-item>\n </div>\n\n <!--Orderdatum-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ORDER_DATE'\"\n [(model)]=\"searchService.searchRequest.rangeTransDate\"\n [mode]=\"modes.DateRangeField\">\n </co-transaction-filter-item>\n </div>\n\n <!--Leverdatum-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'DELIVERY_DATE'\"\n [(model)]=\"searchService.searchRequest.deliveryDateRange\"\n [mode]=\"modes.DateRangeField\">\n </co-transaction-filter-item>\n </div>\n\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'WORKFLOW_STATUS'\"\n [collection]=\"workflowStatuses\"\n [(model)]=\"searchService.searchRequest.rangeWorkflowStatusNames\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--Filiaal-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'BRANCH'\"\n [collection]=\"branches\"\n [(model)]=\"searchService.searchRequest.rangeBranchId\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--Betaalconditie-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'PAYMENT_CONDITION'\"\n [collection]=\"paymentConditions\"\n [(model)]=\"searchService.searchRequest.rangePaymentCondition\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--Inkoper-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'PURCHASE_PERSON'\"\n [searchCollectionPlaceholder]=\"searchPlaceholder.PurchasePerson\"\n [collection]=\"purchasePersons\"\n [(model)]=\"searchService.searchRequest.rangeHandledBy\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--Eigen referentie-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'OWN_REFERENCE'\"\n [(model)]=\"searchService.searchRequest.ownReference\"\n [mode]=\"modes.TextField\">\n </co-transaction-filter-item>\n </div>\n\n <!--Project Code-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'PROJECT_CODE'\"\n [searchCollectionPlaceholder]=\"searchPlaceholder.SearchProjectCode\"\n [(model)]=\"searchService.searchRequest.projectCode\"\n [mode]=\"modes.SingleSelectList\"\n [minSearchCharsToLoadCollection]=\"3\"\n [collection]=\"projectCodes\"\n >\n </co-transaction-filter-item>\n </div>\n\n <!--Tags-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'TAGS'\"\n [searchCollectionPlaceholder]=\"searchPlaceholder.Tags\"\n [collection]=\"tags\"\n [(model)]=\"searchService.searchRequest.tagRange\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--On hold codes-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ON_HOLD'\"\n [searchCollectionPlaceholder]=\"searchPlaceholder.OnHold\"\n [collection]=\"onHoldCodes\"\n [(model)]=\"searchService.searchRequest.rangeOnHoldCodes\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--Commissiecode-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'COMMISSION_CODE'\"\n [searchCollectionPlaceholder]=\"searchPlaceholder.CommissionCode\"\n [collection]=\"commissionCodes\"\n [(model)]=\"searchService.searchRequest.commissionCodes\"\n [mode]=\"modes.SelectListWithStringCollectionOutput\">\n </co-transaction-filter-item>\n </div>\n\n <!--Order definitief-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ORDER_DEFINITIVE'\"\n [collection]=\"orderDefinite\"\n [(model)]=\"searchService.searchRequest.transactionDefinitive\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n\n <!--Order fully paid -->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ORDER_FULLY_PAID'\"\n [collection]=\"orderFullyPaid\"\n [(model)]=\"searchService.searchRequest.fullyPaid\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n\n <!--Order deposit fully paid -->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ORDER_DEPOSIT_FULLY_PAID'\"\n [collection]=\"orderDepositFullyPaid\"\n [(model)]=\"searchService.searchRequest.depositFullyPaid\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--Inactieve transacties-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'INACTIVE_TRANSACTIONS'\"\n [(model)]=\"searchService.searchRequest.active\"\n [mode]=\"modes.Checkbox\">\n </co-transaction-filter-item>\n </div>\n\n <!--Inclusief retouren -->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'INCLUDING_RETURNS'\"\n [(model)]=\"searchService.searchRequest.includingReturns\"\n [mode]=\"modes.CheckboxToBinary\">\n </co-transaction-filter-item>\n </div>\n </div>\n "
|
|
45589
45632
|
},] }
|
|
45590
45633
|
];
|
|
45591
45634
|
TransactionPurchaseOrderFilterContentOrderComponent.propDecorators = {
|
|
@@ -45878,6 +45921,7 @@
|
|
|
45878
45921
|
_this.orderDepositFullyPaidFields = { text: "description", value: "code" };
|
|
45879
45922
|
_this.orderActiveFields = { text: "description", value: "code" };
|
|
45880
45923
|
_this.customerGroupFields = { text: "naam", value: "groepsnummer" };
|
|
45924
|
+
_this.projectCodeFields = { text: "description", value: "id" };
|
|
45881
45925
|
_this.workflowStatusFields = { text: "name", value: "name" };
|
|
45882
45926
|
_this.loadCustomers = function (nameFilter) { return __awaiter(_this, void 0, void 0, function () {
|
|
45883
45927
|
var request;
|
|
@@ -45910,6 +45954,7 @@
|
|
|
45910
45954
|
this._setOrderActive();
|
|
45911
45955
|
this._setCustomerGroups();
|
|
45912
45956
|
this._setWorkFlowStatuses();
|
|
45957
|
+
this._setAllProjectCodes();
|
|
45913
45958
|
};
|
|
45914
45959
|
//Verkoper
|
|
45915
45960
|
TransactionSalesOrderFilterContentOrderComponent.prototype._setSalesPersons = function () {
|
|
@@ -45991,12 +46036,18 @@
|
|
|
45991
46036
|
_this.workflowStatuses = new corecomponents_v12.FilterViewmodel(workflowStatuses, _this.workflowStatusFields).filterItems;
|
|
45992
46037
|
});
|
|
45993
46038
|
};
|
|
46039
|
+
TransactionSalesOrderFilterContentOrderComponent.prototype._setAllProjectCodes = function () {
|
|
46040
|
+
var _this = this;
|
|
46041
|
+
this.transactionService.getAllProjectCodes().then(function (projectCodes) {
|
|
46042
|
+
_this.projectCodes = new corecomponents_v12.FilterViewmodel(projectCodes, _this.projectCodeFields).filterItems;
|
|
46043
|
+
});
|
|
46044
|
+
};
|
|
45994
46045
|
return TransactionSalesOrderFilterContentOrderComponent;
|
|
45995
46046
|
}(TransactionFilterContentBaseComponent));
|
|
45996
46047
|
TransactionSalesOrderFilterContentOrderComponent.decorators = [
|
|
45997
46048
|
{ type: i0.Component, args: [{
|
|
45998
46049
|
selector: 'co-transaction-sales-order-filter-content-order',
|
|
45999
|
-
template: "\n <div class=\"transaction-filter-content-order-wrapper transaction-filter-content-wrapper\">\n\n <!--Orderdatum-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ORDER_DATE'\"\n [(model)]=\"searchService.searchRequest.rangeTransDate\"\n [mode]=\"modes.DateRangeField\">\n </co-transaction-filter-item>\n </div>\n\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'DELIVERY_DATE'\"\n [(model)]=\"searchService.searchRequest.deliveryDateRange\"\n [mode]=\"modes.DateRangeField\">\n </co-transaction-filter-item>\n </div>\n\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'WORKFLOW_STATUS'\"\n [collection]=\"workflowStatuses\"\n [(model)]=\"searchService.searchRequest.rangeWorkflowStatusNames\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'BRANCH'\"\n [collection]=\"branches\"\n [(model)]=\"searchService.searchRequest.rangeBranchId\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--Betaalconditie-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'PAYMENT_CONDITION'\"\n [collection]=\"paymentConditions\"\n [(model)]=\"searchService.searchRequest.rangePaymentCondition\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--Verkoper-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'HANDLED_BY'\"\n [collection]=\"salesPersons\"\n [(model)]=\"searchService.searchRequest.rangeHandledBy\"\n [mode]=\"modes.Filterlist\"\n >\n </co-transaction-filter-item>\n </div>\n\n <!--Eigen referentie-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'OWN_REFERENCE'\"\n [(model)]=\"searchService.searchRequest.ownReference\"\n [mode]=\"modes.TextField\"\n >\n </co-transaction-filter-item>\n </div>\n\n <!--Tags-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'TAGS'\"\n [collection]=\"tags\"\n [(model)]=\"searchService.searchRequest.tagRange\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--On hold codes-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ON_HOLD'\"\n [collection]=\"onHoldCodes\"\n [(model)]=\"searchService.searchRequest.rangeOnHoldCodes\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--Order definitief-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ORDER_DEFINITIVE'\"\n [collection]=\"orderDefinite\"\n [(model)]=\"searchService.searchRequest.transactionDefinitive\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n\n <!--Order fully paid -->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ORDER_FULLY_PAID'\"\n [collection]=\"orderFullyPaid\"\n [(model)]=\"searchService.searchRequest.fullyPaid\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n\n\n <!--Order deposit fully paid -->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ORDER_DEPOSIT_FULLY_PAID'\"\n [collection]=\"orderDepositFullyPaid\"\n [(model)]=\"searchService.searchRequest.depositFullyPaid\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n\n <!--Commissiecode-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'COMMISSION_CODE'\"\n [collection]=\"commissionCodes\"\n [(model)]=\"searchService.searchRequest.commissionCodes\"\n [mode]=\"modes.SelectListWithStringCollectionOutput\">\n >\n </co-transaction-filter-item>\n </div>\n\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ACTIVE'\"\n [collection]=\"orderActive\"\n [(model)]=\"searchService.searchRequest.active\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--Klantnaam-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'CUSTOMER_NAME'\"\n [searchCollectionPlaceholder]=\"searchPlaceholder.CustomerName\"\n [mode]=\"modes.SingleSelectList\"\n [(model)]=\"searchService.searchRequest.relationName\"\n [minSearchCharsToLoadCollection]=\"3\"\n [
|
|
46050
|
+
template: "\n <div class=\"transaction-filter-content-order-wrapper transaction-filter-content-wrapper\">\n\n <!--Orderdatum-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ORDER_DATE'\"\n [(model)]=\"searchService.searchRequest.rangeTransDate\"\n [mode]=\"modes.DateRangeField\">\n </co-transaction-filter-item>\n </div>\n\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'DELIVERY_DATE'\"\n [(model)]=\"searchService.searchRequest.deliveryDateRange\"\n [mode]=\"modes.DateRangeField\">\n </co-transaction-filter-item>\n </div>\n\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'WORKFLOW_STATUS'\"\n [collection]=\"workflowStatuses\"\n [(model)]=\"searchService.searchRequest.rangeWorkflowStatusNames\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'BRANCH'\"\n [collection]=\"branches\"\n [(model)]=\"searchService.searchRequest.rangeBranchId\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--Betaalconditie-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'PAYMENT_CONDITION'\"\n [collection]=\"paymentConditions\"\n [(model)]=\"searchService.searchRequest.rangePaymentCondition\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--Verkoper-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'HANDLED_BY'\"\n [collection]=\"salesPersons\"\n [(model)]=\"searchService.searchRequest.rangeHandledBy\"\n [mode]=\"modes.Filterlist\"\n >\n </co-transaction-filter-item>\n </div>\n\n <!--Eigen referentie-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'OWN_REFERENCE'\"\n [(model)]=\"searchService.searchRequest.ownReference\"\n [mode]=\"modes.TextField\"\n >\n </co-transaction-filter-item>\n </div>\n\n <!--Project Code-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'PROJECT_CODE'\"\n [searchCollectionPlaceholder]=\"searchPlaceholder.SearchProjectCode\"\n [(model)]=\"searchService.searchRequest.projectCode\"\n [mode]=\"modes.SingleSelectList\"\n [minSearchCharsToLoadCollection]=\"3\"\n [collection]=\"projectCodes\"\n >\n </co-transaction-filter-item>\n </div>\n\n <!--Tags-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'TAGS'\"\n [collection]=\"tags\"\n [(model)]=\"searchService.searchRequest.tagRange\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--On hold codes-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ON_HOLD'\"\n [collection]=\"onHoldCodes\"\n [(model)]=\"searchService.searchRequest.rangeOnHoldCodes\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--Order definitief-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ORDER_DEFINITIVE'\"\n [collection]=\"orderDefinite\"\n [(model)]=\"searchService.searchRequest.transactionDefinitive\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n\n <!--Order fully paid -->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ORDER_FULLY_PAID'\"\n [collection]=\"orderFullyPaid\"\n [(model)]=\"searchService.searchRequest.fullyPaid\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n\n\n <!--Order deposit fully paid -->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ORDER_DEPOSIT_FULLY_PAID'\"\n [collection]=\"orderDepositFullyPaid\"\n [(model)]=\"searchService.searchRequest.depositFullyPaid\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n\n <!--Commissiecode-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'COMMISSION_CODE'\"\n [collection]=\"commissionCodes\"\n [(model)]=\"searchService.searchRequest.commissionCodes\"\n [mode]=\"modes.SelectListWithStringCollectionOutput\">\n >\n </co-transaction-filter-item>\n </div>\n\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ACTIVE'\"\n [collection]=\"orderActive\"\n [(model)]=\"searchService.searchRequest.active\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--Klantnaam-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'CUSTOMER_NAME'\"\n [searchCollectionPlaceholder]=\"searchPlaceholder.CustomerName\"\n [mode]=\"modes.SingleSelectList\"\n [(model)]=\"searchService.searchRequest.relationName\"\n [minSearchCharsToLoadCollection]=\"3\"\n [collection]=\"customerGroups\">\n </co-transaction-filter-item>\n </div>\n\n <!--Klantgroep-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'CUSTOMER_GROUP'\"\n [(model)]=\"searchService.searchRequest.customerGroupId\"\n [mode]=\"modes.Filterlist\"\n [collection]=\"customerGroups\">\n </co-transaction-filter-item>\n </div>\n </div>\n "
|
|
46000
46051
|
},] }
|
|
46001
46052
|
];
|
|
46002
46053
|
TransactionSalesOrderFilterContentOrderComponent.propDecorators = {
|
|
@@ -46761,6 +46812,7 @@
|
|
|
46761
46812
|
_this.isQuotationProcessedToSalesOrderFields = { text: "description", value: "code" };
|
|
46762
46813
|
_this.customerGroupFields = { text: "naam", value: "groepsnummer" };
|
|
46763
46814
|
_this.retailStadiumFields = { text: "retailStadium", value: "retailStadium" };
|
|
46815
|
+
_this.projectCodeFields = { text: "description", value: "id" };
|
|
46764
46816
|
_this.loadCustomers = function (nameFilter) { return __awaiter(_this, void 0, void 0, function () {
|
|
46765
46817
|
var request;
|
|
46766
46818
|
return __generator(this, function (_a) {
|
|
@@ -46788,6 +46840,7 @@
|
|
|
46788
46840
|
this._setCustomerGroups();
|
|
46789
46841
|
this._setRetailStadiums();
|
|
46790
46842
|
this._setIsQuotationProcessedToSales();
|
|
46843
|
+
this._setAllProjectCodes();
|
|
46791
46844
|
};
|
|
46792
46845
|
//Verkoper
|
|
46793
46846
|
TransactionSalesQuotationFilterContentOrderComponent.prototype._setSalesPersons = function () {
|
|
@@ -46862,12 +46915,18 @@
|
|
|
46862
46915
|
_this.isQuotationProcessedToSalesOrder = new corecomponents_v12.FilterViewmodel(isQuotationProcessedToSalesOrder, _this.isQuotationProcessedToSalesOrderFields).filterItems;
|
|
46863
46916
|
});
|
|
46864
46917
|
};
|
|
46918
|
+
TransactionSalesQuotationFilterContentOrderComponent.prototype._setAllProjectCodes = function () {
|
|
46919
|
+
var _this = this;
|
|
46920
|
+
this.transactionService.getAllProjectCodes().then(function (projectCodes) {
|
|
46921
|
+
_this.projectCodes = new corecomponents_v12.FilterViewmodel(projectCodes, _this.projectCodeFields).filterItems;
|
|
46922
|
+
});
|
|
46923
|
+
};
|
|
46865
46924
|
return TransactionSalesQuotationFilterContentOrderComponent;
|
|
46866
46925
|
}(TransactionFilterContentBaseComponent));
|
|
46867
46926
|
TransactionSalesQuotationFilterContentOrderComponent.decorators = [
|
|
46868
46927
|
{ type: i0.Component, args: [{
|
|
46869
46928
|
selector: "co-transaction-sales-quotation-filter-content-order",
|
|
46870
|
-
template: "\n <div class=\"transaction-filter-content-order-wrapper transaction-filter-content-wrapper\">\n\n <!--Orderdatum-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ORDER_DATE'\"\n [(model)]=\"searchRequest.rangeTransDate\"\n [mode]=\"modes.DateRangeField\">\n </co-transaction-filter-item>\n </div>\n\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'DELIVERY_DATE'\"\n [(model)]=\"searchRequest.deliveryDateRange\"\n [mode]=\"modes.DateRangeField\">\n </co-transaction-filter-item>\n </div>\n\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'BRANCH'\"\n [collection]=\"branches\"\n [(model)]=\"searchRequest.rangeBranchId\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--Betaalconditie-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'PAYMENT_CONDITION'\"\n [collection]=\"paymentConditions\"\n [(model)]=\"searchService.searchRequest.rangePaymentCondition\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--Verkoper-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'HANDLED_BY'\"\n [collection]=\"salesPersons\"\n [(model)]=\"searchRequest.rangeHandledBy\"\n [mode]=\"modes.Filterlist\"\n >\n </co-transaction-filter-item>\n </div>\n\n <!--Scoringskans-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'SCORING_CHANCE'\"\n [(model)]=\"searchRequest.rangeScoringChance\"\n [sliderDefaultMin]=0\n [sliderDefaultMax]=100\n [mode]=\"modes.NullableSlider\"\n >\n </co-transaction-filter-item>\n </div>\n\n <!--Scoringsdatum-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'SCORING_DATE'\"\n [(model)]=\"searchRequest.rangeExpectedScoringDate\"\n [mode]=\"modes.DateRangeField\"\n >\n </co-transaction-filter-item>\n </div>\n\n <!--Verkoopstadium-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'RETAIL_STADIUM'\"\n [collection]=\"retailStadiums\"\n [(model)]=\"searchRequest.rangeRetailStadium\"\n [mode]=\"modes.Filterlist\"\n >\n </co-transaction-filter-item>\n </div>\n\n <!--Eigen referentie-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'OWN_REFERENCE'\"\n [(model)]=\"searchRequest.ownReference\"\n [mode]=\"modes.TextField\"\n >\n </co-transaction-filter-item>\n </div>\n\n <!--Tags-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'TAGS'\"\n [collection]=\"tags\"\n [(model)]=\"searchRequest.tagRange\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--Order definitief-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ORDER_DEFINITIVE'\"\n [collection]=\"orderDefinite\"\n [(model)]=\"searchService.searchRequest.transactionDefinitive\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n\n <!--Order fully paid -->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ORDER_FULLY_PAID'\"\n [collection]=\"orderFullyPaid\"\n [(model)]=\"searchService.searchRequest.fullyPaid\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n\n\n <!--Order deposit fully paid -->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ORDER_DEPOSIT_FULLY_PAID'\"\n [collection]=\"orderDepositFullyPaid\"\n [(model)]=\"searchService.searchRequest.depositFullyPaid\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n\n <!--Commissiecode-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'COMMISSION_CODE'\"\n [collection]=\"commissionCodes\"\n [(model)]=\"searchRequest.commissionCodes\"\n [mode]=\"modes.SelectListWithStringCollectionOutput\">\n >\n </co-transaction-filter-item>\n </div>\n\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'INACTIVE_TRANSACTIONS'\"\n [(model)]=\"searchRequest.active\"\n [mode]=\"modes.Checkbox\">\n </co-transaction-filter-item>\n </div>\n\n <!--Klantnaam-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'CUSTOMER_NAME'\"\n [searchCollectionPlaceholder]=\"searchPlaceholder.CustomerName\"\n [mode]=\"modes.SingleSelectList\"\n [(model)]=\"searchRequest.relationName\"\n [minSearchCharsToLoadCollection]=\"3\"\n [collectionLoadFn]=\"loadCustomers\">\n </co-transaction-filter-item>\n </div>\n\n <!--Klantgroep-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'CUSTOMER_GROUP'\"\n [(model)]=\"searchRequest.customerGroupId\"\n [mode]=\"modes.Filterlist\"\n [collection]=\"customerGroups\">\n </co-transaction-filter-item>\n </div>\n\n <!-- Is quotation processed to saled order -->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'IS_QUOTATION_PROCESSED_TO_SALESORDER'\"\n [collection]=\"isQuotationProcessedToSalesOrder\"\n [(model)]=\"searchRequest.isQuotationProcessedToSales\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n </div>\n ",
|
|
46929
|
+
template: "\n <div class=\"transaction-filter-content-order-wrapper transaction-filter-content-wrapper\">\n\n <!--Orderdatum-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ORDER_DATE'\"\n [(model)]=\"searchRequest.rangeTransDate\"\n [mode]=\"modes.DateRangeField\">\n </co-transaction-filter-item>\n </div>\n\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'DELIVERY_DATE'\"\n [(model)]=\"searchRequest.deliveryDateRange\"\n [mode]=\"modes.DateRangeField\">\n </co-transaction-filter-item>\n </div>\n\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'BRANCH'\"\n [collection]=\"branches\"\n [(model)]=\"searchRequest.rangeBranchId\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--Betaalconditie-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'PAYMENT_CONDITION'\"\n [collection]=\"paymentConditions\"\n [(model)]=\"searchService.searchRequest.rangePaymentCondition\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--Verkoper-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'HANDLED_BY'\"\n [collection]=\"salesPersons\"\n [(model)]=\"searchRequest.rangeHandledBy\"\n [mode]=\"modes.Filterlist\"\n >\n </co-transaction-filter-item>\n </div>\n\n <!--Scoringskans-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'SCORING_CHANCE'\"\n [(model)]=\"searchRequest.rangeScoringChance\"\n [sliderDefaultMin]=0\n [sliderDefaultMax]=100\n [mode]=\"modes.NullableSlider\"\n >\n </co-transaction-filter-item>\n </div>\n\n <!--Scoringsdatum-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'SCORING_DATE'\"\n [(model)]=\"searchRequest.rangeExpectedScoringDate\"\n [mode]=\"modes.DateRangeField\"\n >\n </co-transaction-filter-item>\n </div>\n\n <!--Verkoopstadium-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'RETAIL_STADIUM'\"\n [collection]=\"retailStadiums\"\n [(model)]=\"searchRequest.rangeRetailStadium\"\n [mode]=\"modes.Filterlist\"\n >\n </co-transaction-filter-item>\n </div>\n\n <!--Eigen referentie-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'OWN_REFERENCE'\"\n [(model)]=\"searchRequest.ownReference\"\n [mode]=\"modes.TextField\"\n >\n </co-transaction-filter-item>\n </div>\n\n <!--Project Code-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'PROJECT_CODE'\"\n [searchCollectionPlaceholder]=\"searchPlaceholder.SearchProjectCode\"\n [(model)]=\"searchService.searchRequest.projectCode\"\n [mode]=\"modes.SingleSelectList\"\n [minSearchCharsToLoadCollection]=\"3\"\n [collection]=\"projectCodes\"\n >\n </co-transaction-filter-item>\n </div>\n\n <!--Tags-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'TAGS'\"\n [collection]=\"tags\"\n [(model)]=\"searchRequest.tagRange\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--Order definitief-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ORDER_DEFINITIVE'\"\n [collection]=\"orderDefinite\"\n [(model)]=\"searchService.searchRequest.transactionDefinitive\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n\n <!--Order fully paid -->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ORDER_FULLY_PAID'\"\n [collection]=\"orderFullyPaid\"\n [(model)]=\"searchService.searchRequest.fullyPaid\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n\n\n <!--Order deposit fully paid -->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ORDER_DEPOSIT_FULLY_PAID'\"\n [collection]=\"orderDepositFullyPaid\"\n [(model)]=\"searchService.searchRequest.depositFullyPaid\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n\n <!--Commissiecode-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'COMMISSION_CODE'\"\n [collection]=\"commissionCodes\"\n [(model)]=\"searchRequest.commissionCodes\"\n [mode]=\"modes.SelectListWithStringCollectionOutput\">\n >\n </co-transaction-filter-item>\n </div>\n\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'INACTIVE_TRANSACTIONS'\"\n [(model)]=\"searchRequest.active\"\n [mode]=\"modes.Checkbox\">\n </co-transaction-filter-item>\n </div>\n\n <!--Klantnaam-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'CUSTOMER_NAME'\"\n [searchCollectionPlaceholder]=\"searchPlaceholder.CustomerName\"\n [mode]=\"modes.SingleSelectList\"\n [(model)]=\"searchRequest.relationName\"\n [minSearchCharsToLoadCollection]=\"3\"\n [collectionLoadFn]=\"loadCustomers\">\n </co-transaction-filter-item>\n </div>\n\n <!--Klantgroep-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'CUSTOMER_GROUP'\"\n [(model)]=\"searchRequest.customerGroupId\"\n [mode]=\"modes.Filterlist\"\n [collection]=\"customerGroups\">\n </co-transaction-filter-item>\n </div>\n\n <!-- Is quotation processed to saled order -->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'IS_QUOTATION_PROCESSED_TO_SALESORDER'\"\n [collection]=\"isQuotationProcessedToSalesOrder\"\n [(model)]=\"searchRequest.isQuotationProcessedToSales\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n </div>\n ",
|
|
46871
46930
|
encapsulation: i0.ViewEncapsulation.None
|
|
46872
46931
|
},] }
|
|
46873
46932
|
];
|
|
@@ -47500,6 +47559,7 @@
|
|
|
47500
47559
|
_this.orderActiveFields = { text: "description", value: "code" };
|
|
47501
47560
|
_this.customerGroupFields = { text: "naam", value: "groepsnummer" };
|
|
47502
47561
|
_this.workflowStatusFields = { text: "name", value: "name" };
|
|
47562
|
+
_this.projectCodeFields = { text: "description", value: "id" };
|
|
47503
47563
|
_this.loadCustomers = function (nameFilter) { return __awaiter(_this, void 0, void 0, function () {
|
|
47504
47564
|
var request;
|
|
47505
47565
|
return __generator(this, function (_a) {
|
|
@@ -47531,6 +47591,7 @@
|
|
|
47531
47591
|
this._setOrderActive();
|
|
47532
47592
|
this._setCustomerGroups();
|
|
47533
47593
|
this._setWorkFlowStatuses();
|
|
47594
|
+
this._setAllProjectCodes();
|
|
47534
47595
|
};
|
|
47535
47596
|
//Verkoper
|
|
47536
47597
|
TransactionServiceOrderFilterContentOrderComponent.prototype._setSalesPersons = function () {
|
|
@@ -47612,12 +47673,18 @@
|
|
|
47612
47673
|
_this.workflowStatuses = new corecomponents_v12.FilterViewmodel(workflowStatuses, _this.workflowStatusFields).filterItems;
|
|
47613
47674
|
});
|
|
47614
47675
|
};
|
|
47676
|
+
TransactionServiceOrderFilterContentOrderComponent.prototype._setAllProjectCodes = function () {
|
|
47677
|
+
var _this = this;
|
|
47678
|
+
this.transactionService.getAllProjectCodes().then(function (projectCodes) {
|
|
47679
|
+
_this.projectCodes = new corecomponents_v12.FilterViewmodel(projectCodes, _this.projectCodeFields).filterItems;
|
|
47680
|
+
});
|
|
47681
|
+
};
|
|
47615
47682
|
return TransactionServiceOrderFilterContentOrderComponent;
|
|
47616
47683
|
}(TransactionFilterContentBaseComponent));
|
|
47617
47684
|
TransactionServiceOrderFilterContentOrderComponent.decorators = [
|
|
47618
47685
|
{ type: i0.Component, args: [{
|
|
47619
47686
|
selector: 'co-transaction-service-order-filter-content-order',
|
|
47620
|
-
template: "\n <div class=\"transaction-filter-content-order-wrapper transaction-filter-content-wrapper\">\n\n <!--Orderdatum-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ORDER_DATE'\"\n [(model)]=\"searchService.searchRequest.rangeTransDate\"\n [mode]=\"modes.DateRangeField\">\n </co-transaction-filter-item>\n </div>\n\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'DELIVERY_DATE'\"\n [(model)]=\"searchService.searchRequest.deliveryDateRange\"\n [mode]=\"modes.DateRangeField\">\n </co-transaction-filter-item>\n </div>\n\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'WORKFLOW_STATUS'\"\n [collection]=\"workflowStatuses\"\n [(model)]=\"searchService.searchRequest.rangeWorkflowStatusNames\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'BRANCH'\"\n [collection]=\"branches\"\n [(model)]=\"searchService.searchRequest.rangeBranchId\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--Betaalconditie-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'PAYMENT_CONDITION'\"\n [collection]=\"paymentConditions\"\n [(model)]=\"searchService.searchRequest.rangePaymentCondition\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--Verkoper-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'HANDLED_BY'\"\n [collection]=\"salesPersons\"\n [(model)]=\"searchService.searchRequest.rangeHandledBy\"\n [mode]=\"modes.Filterlist\"\n >\n </co-transaction-filter-item>\n </div>\n\n <!--Eigen referentie-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'OWN_REFERENCE'\"\n [(model)]=\"searchService.searchRequest.ownReference\"\n [mode]=\"modes.TextField\"\n >\n </co-transaction-filter-item>\n </div>\n\n <!--Tags-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'TAGS'\"\n [collection]=\"tags\"\n [(model)]=\"searchService.searchRequest.tagRange\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--On hold codes-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ON_HOLD'\"\n [collection]=\"onHoldCodes\"\n [(model)]=\"searchService.searchRequest.rangeOnHoldCodes\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--Order definitief-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ORDER_DEFINITIVE'\"\n [collection]=\"orderDefinite\"\n [(model)]=\"searchService.searchRequest.transactionDefinitive\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n\n <!--Order fully paid -->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ORDER_FULLY_PAID'\"\n [collection]=\"orderFullyPaid\"\n [(model)]=\"searchService.searchRequest.fullyPaid\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n\n\n <!--Order deposit fully paid -->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ORDER_DEPOSIT_FULLY_PAID'\"\n [collection]=\"orderDepositFullyPaid\"\n [(model)]=\"searchService.searchRequest.depositFullyPaid\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n\n <!--Commissiecode-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'COMMISSION_CODE'\"\n [collection]=\"commissionCodes\"\n [(model)]=\"searchService.searchRequest.commissionCodes\"\n [mode]=\"modes.SelectListWithStringCollectionOutput\">\n >\n </co-transaction-filter-item>\n </div>\n\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ACTIVE'\"\n [collection]=\"orderActive\"\n [(model)]=\"searchService.searchRequest.active\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--Klantnaam-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'CUSTOMER_NAME'\"\n [searchCollectionPlaceholder]=\"searchPlaceholder.CustomerName\"\n [mode]=\"modes.SingleSelectList\"\n [(model)]=\"searchService.searchRequest.relationName\"\n [minSearchCharsToLoadCollection]=\"3\"\n [collectionLoadFn]=\"loadCustomers\">\n </co-transaction-filter-item>\n </div>\n\n <!--Klantgroep-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'CUSTOMER_GROUP'\"\n [(model)]=\"searchService.searchRequest.customerGroupId\"\n [mode]=\"modes.Filterlist\"\n [collection]=\"customerGroups\">\n </co-transaction-filter-item>\n </div>\n </div>\n "
|
|
47687
|
+
template: "\n <div class=\"transaction-filter-content-order-wrapper transaction-filter-content-wrapper\">\n\n <!--Orderdatum-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ORDER_DATE'\"\n [(model)]=\"searchService.searchRequest.rangeTransDate\"\n [mode]=\"modes.DateRangeField\">\n </co-transaction-filter-item>\n </div>\n\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'DELIVERY_DATE'\"\n [(model)]=\"searchService.searchRequest.deliveryDateRange\"\n [mode]=\"modes.DateRangeField\">\n </co-transaction-filter-item>\n </div>\n\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'WORKFLOW_STATUS'\"\n [collection]=\"workflowStatuses\"\n [(model)]=\"searchService.searchRequest.rangeWorkflowStatusNames\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'BRANCH'\"\n [collection]=\"branches\"\n [(model)]=\"searchService.searchRequest.rangeBranchId\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--Betaalconditie-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'PAYMENT_CONDITION'\"\n [collection]=\"paymentConditions\"\n [(model)]=\"searchService.searchRequest.rangePaymentCondition\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--Verkoper-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'HANDLED_BY'\"\n [collection]=\"salesPersons\"\n [(model)]=\"searchService.searchRequest.rangeHandledBy\"\n [mode]=\"modes.Filterlist\"\n >\n </co-transaction-filter-item>\n </div>\n\n <!--Eigen referentie-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'OWN_REFERENCE'\"\n [(model)]=\"searchService.searchRequest.ownReference\"\n [mode]=\"modes.TextField\"\n >\n </co-transaction-filter-item>\n </div>\n\n <!--Project Code-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'PROJECT_CODE'\"\n [searchCollectionPlaceholder]=\"searchPlaceholder.SearchProjectCode\"\n [(model)]=\"searchService.searchRequest.projectCode\"\n [mode]=\"modes.SingleSelectList\"\n [minSearchCharsToLoadCollection]=\"3\"\n [collection]=\"projectCodes\"\n >\n </co-transaction-filter-item>\n </div>\n\n <!--Tags-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'TAGS'\"\n [collection]=\"tags\"\n [(model)]=\"searchService.searchRequest.tagRange\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--On hold codes-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ON_HOLD'\"\n [collection]=\"onHoldCodes\"\n [(model)]=\"searchService.searchRequest.rangeOnHoldCodes\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--Order definitief-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ORDER_DEFINITIVE'\"\n [collection]=\"orderDefinite\"\n [(model)]=\"searchService.searchRequest.transactionDefinitive\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n\n <!--Order fully paid -->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ORDER_FULLY_PAID'\"\n [collection]=\"orderFullyPaid\"\n [(model)]=\"searchService.searchRequest.fullyPaid\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n\n\n <!--Order deposit fully paid -->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ORDER_DEPOSIT_FULLY_PAID'\"\n [collection]=\"orderDepositFullyPaid\"\n [(model)]=\"searchService.searchRequest.depositFullyPaid\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n\n <!--Commissiecode-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'COMMISSION_CODE'\"\n [collection]=\"commissionCodes\"\n [(model)]=\"searchService.searchRequest.commissionCodes\"\n [mode]=\"modes.SelectListWithStringCollectionOutput\">\n >\n </co-transaction-filter-item>\n </div>\n\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'ACTIVE'\"\n [collection]=\"orderActive\"\n [(model)]=\"searchService.searchRequest.active\"\n [mode]=\"modes.Filterlist\">\n </co-transaction-filter-item>\n </div>\n\n <!--Klantnaam-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'CUSTOMER_NAME'\"\n [searchCollectionPlaceholder]=\"searchPlaceholder.CustomerName\"\n [mode]=\"modes.SingleSelectList\"\n [(model)]=\"searchService.searchRequest.relationName\"\n [minSearchCharsToLoadCollection]=\"3\"\n [collectionLoadFn]=\"loadCustomers\">\n </co-transaction-filter-item>\n </div>\n\n <!--Klantgroep-->\n <div class=\"filter-item-wrapper\">\n <co-transaction-filter-item [placeholder]=\"'CUSTOMER_GROUP'\"\n [(model)]=\"searchService.searchRequest.customerGroupId\"\n [mode]=\"modes.Filterlist\"\n [collection]=\"customerGroups\">\n </co-transaction-filter-item>\n </div>\n </div>\n "
|
|
47621
47688
|
},] }
|
|
47622
47689
|
];
|
|
47623
47690
|
TransactionServiceOrderFilterContentOrderComponent.propDecorators = {
|