@colijnit/transaction 12.1.152 → 12.1.153
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 +59 -20
- 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 +2 -1
- package/esm2015/lib/component/relation/relation-address/relation-address.component.js +7 -4
- package/esm2015/lib/component/relation/relation-address-select/relation-address-select.component.js +6 -3
- package/esm2015/lib/component/relation/relation-addresses/relation-addresses.component.js +7 -7
- package/esm2015/lib/component/relation/relation-base.component.js +14 -2
- package/esm2015/lib/component/relation/relation-general/relation-general.component.js +5 -6
- package/esm2015/lib/component/relation/relation-preferences/relation-preferences.component.js +10 -7
- package/esm2015/lib/component/shopping-cart/shopping-cart.component.js +1 -1
- package/esm2015/lib/component/shopping-cart-preview/shopping-cart-preview.component.js +3 -3
- package/esm2015/lib/component/transaction-card/transaction-card/transaction-card.component.js +2 -2
- package/esm2015/lib/component/transaction-card/transaction-card-footer/transaction-card-footer.module.js +8 -8
- package/esm2015/lib/component/transaction-card/transaction-card-purchase-overview/transaction-card-purchase-overview.component.js +3 -3
- package/esm2015/lib/component/transaction-card/transaction-card-receive-goods/transaction-card-receive-goods.component.js +1 -1
- package/esm2015/lib/component/transaction-card/transaction-card-sales-overview/transaction-card-sales-overview.component.js +3 -3
- package/esm2015/lib/component/transaction-header-fields/transaction-header-definitive.component.js +5 -3
- package/esm2015/lib/component/transaction-header-fields/transaction-header-partial-delivery/transaction-header-partial-delivery.component.js +5 -3
- package/esm2015/lib/component/transaction-line/transaction-overview-line/transaction-overview-line.component.js +1 -1
- package/esm2015/lib/component/transaction-line-purchase-confirmation/transaction-line-purchase-confirmation.component.js +1 -1
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-picked/transaction-quick-access-picked.component.js +3 -3
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-to-be-picked/transaction-quick-access-to-be-picked.component.js +3 -3
- package/esm2015/lib/component/transaction-search/service/transaction-search.service.js +9 -1
- package/esm2015/lib/service/article-connector.service.js +1 -1
- package/esm2015/lib/service/relation-connector.service.js +1 -1
- package/esm2015/lib/service/relation.service.js +3 -1
- package/esm2015/lib/service/transaction-base.service.js +5 -2
- package/esm2015/lib/service/transaction-screen-configuration.service.js +4 -1
- package/esm2015/lib/service/transaction.service.js +5 -4
- package/esm2015/lib/transaction-version.js +3 -3
- package/fesm2015/colijnit-transaction.js +59 -22
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/lib/component/relation/relation-address/relation-address.component.d.ts +3 -1
- package/lib/component/relation/relation-address-select/relation-address-select.component.d.ts +3 -1
- package/lib/component/relation/relation-addresses/relation-addresses.component.d.ts +3 -3
- package/lib/component/relation/relation-base.component.d.ts +7 -2
- package/lib/component/relation/relation-general/relation-general.component.d.ts +2 -2
- package/lib/component/relation/relation-preferences/relation-preferences.component.d.ts +6 -4
- package/lib/component/shopping-cart-preview/shopping-cart-preview.component.d.ts +2 -2
- package/lib/component/transaction-card/transaction-card/transaction-card.component.d.ts +1 -1
- package/lib/component/transaction-card/transaction-card-purchase-overview/transaction-card-purchase-overview.component.d.ts +3 -3
- package/lib/component/transaction-card/transaction-card-sales-overview/transaction-card-sales-overview.component.d.ts +3 -3
- package/lib/component/transaction-header-fields/transaction-header-definitive.component.d.ts +2 -0
- package/lib/component/transaction-header-fields/transaction-header-partial-delivery/transaction-header-partial-delivery.component.d.ts +2 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-picked/transaction-quick-access-picked.component.d.ts +1 -1
- package/lib/component/transaction-quick-access/transaction-quick-access-to-be-picked/transaction-quick-access-to-be-picked.component.d.ts +1 -1
- package/lib/component/transaction-search/service/transaction-search.service.d.ts +1 -0
- package/lib/service/relation.service.d.ts +2 -0
- package/lib/service/transaction-screen-configuration.service.d.ts +1 -0
- package/lib/service/transaction.service.d.ts +1 -1
- package/package.json +1 -1
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
function Version() {
|
|
33
33
|
this.name = "@colijnit/transaction";
|
|
34
34
|
this.description = "Colijn IT transaction package";
|
|
35
|
-
this.symVer = "12.1.
|
|
36
|
-
this.publishDate = "
|
|
35
|
+
this.symVer = "12.1.153";
|
|
36
|
+
this.publishDate = "19-10-2023 15:15:35";
|
|
37
37
|
}
|
|
38
38
|
return Version;
|
|
39
39
|
}());
|
|
@@ -8457,6 +8457,9 @@
|
|
|
8457
8457
|
_this._screenConfigurationObjectCache = new Map();
|
|
8458
8458
|
return _this;
|
|
8459
8459
|
}
|
|
8460
|
+
TransactionScreenConfigurationService.prototype.clear = function () {
|
|
8461
|
+
this._screenConfigurationObjectCache.clear();
|
|
8462
|
+
};
|
|
8460
8463
|
TransactionScreenConfigurationService.prototype.loadConfigForModule = function (params, insertRights) {
|
|
8461
8464
|
return __awaiter(this, void 0, void 0, function () {
|
|
8462
8465
|
var transactionKind, config;
|
|
@@ -9376,6 +9379,7 @@
|
|
|
9376
9379
|
this._selectMultipleCacheService = _selectMultipleCacheService;
|
|
9377
9380
|
this._selectSingleCacheService = _selectSingleCacheService;
|
|
9378
9381
|
this._selectMultipleParameterizedCacheService = _selectMultipleParameterizedCacheService;
|
|
9382
|
+
this.relationSuggestionsRequestClear = new rxjs.Subject();
|
|
9379
9383
|
this._lockMethods = new Map([
|
|
9380
9384
|
[relationKind_enum$1.RelationKind.Customer, function (relationNr) { return _this._lockCustomerFullObject(relationNr); }],
|
|
9381
9385
|
[relationKind_enum$1.RelationKind.Supplier, function (relationNr) { return _this._lockSupplierFullObject(relationNr); }],
|
|
@@ -9839,7 +9843,10 @@
|
|
|
9839
9843
|
var response;
|
|
9840
9844
|
return __generator(this, function (_a) {
|
|
9841
9845
|
switch (_a.label) {
|
|
9842
|
-
case 0: return [4 /*yield*/, this.connector.saveTransaction(this.currentTransaction.transactionInfo.uuid)
|
|
9846
|
+
case 0: return [4 /*yield*/, this.connector.saveTransaction(this.currentTransaction.transactionInfo.uuid)
|
|
9847
|
+
.catch(function () {
|
|
9848
|
+
return null;
|
|
9849
|
+
})];
|
|
9843
9850
|
case 1:
|
|
9844
9851
|
response = _a.sent();
|
|
9845
9852
|
if (response && response.isSuccess) {
|
|
@@ -10603,6 +10610,7 @@
|
|
|
10603
10610
|
case 0: return [4 /*yield*/, this.connector.logOut()];
|
|
10604
10611
|
case 1:
|
|
10605
10612
|
_a.sent();
|
|
10613
|
+
this.logout.next();
|
|
10606
10614
|
return [2 /*return*/];
|
|
10607
10615
|
}
|
|
10608
10616
|
});
|
|
@@ -13981,6 +13989,7 @@
|
|
|
13981
13989
|
CheckoutOverviewRelationEditComponent.prototype.emptyRelation = function (event) {
|
|
13982
13990
|
this.service.createNewRelation();
|
|
13983
13991
|
this._requestForSuggestions = {};
|
|
13992
|
+
this._relationService.relationSuggestionsRequestClear.next();
|
|
13984
13993
|
this.hideSidebar();
|
|
13985
13994
|
this.updateRelation(this.service.relation);
|
|
13986
13995
|
};
|
|
@@ -15012,13 +15021,19 @@
|
|
|
15012
15021
|
];
|
|
15013
15022
|
|
|
15014
15023
|
var RelationBaseComponent = /** @class */ (function () {
|
|
15015
|
-
function RelationBaseComponent() {
|
|
15024
|
+
function RelationBaseComponent(relationService) {
|
|
15025
|
+
var _this = this;
|
|
15026
|
+
this.relationService = relationService;
|
|
15016
15027
|
this.relKind = relationKind_enum.RelationKind;
|
|
15017
15028
|
this.cfgNames = TransactionCfgName;
|
|
15018
15029
|
this.relationChange = new i0.EventEmitter();
|
|
15019
15030
|
this.inputChangeForSuggestions = new i0.EventEmitter();
|
|
15020
15031
|
this._relation = nulRelationObject.NULL_RELATION_OBJECT;
|
|
15032
|
+
this._subs = [];
|
|
15021
15033
|
this.suggestionRequest = {};
|
|
15034
|
+
this._subs.push(this.relationService.relationSuggestionsRequestClear.subscribe(function () {
|
|
15035
|
+
_this.suggestionRequest = {};
|
|
15036
|
+
}));
|
|
15022
15037
|
}
|
|
15023
15038
|
Object.defineProperty(RelationBaseComponent.prototype, "relation", {
|
|
15024
15039
|
get: function () {
|
|
@@ -15040,6 +15055,9 @@
|
|
|
15040
15055
|
enumerable: false,
|
|
15041
15056
|
configurable: true
|
|
15042
15057
|
});
|
|
15058
|
+
RelationBaseComponent.prototype.ngOnDestroy = function () {
|
|
15059
|
+
this._subs.forEach(function (s) { return s.unsubscribe(); });
|
|
15060
|
+
};
|
|
15043
15061
|
// overridden by descendant classes
|
|
15044
15062
|
RelationBaseComponent.prototype.relationSet = function () {
|
|
15045
15063
|
};
|
|
@@ -15048,6 +15066,9 @@
|
|
|
15048
15066
|
RelationBaseComponent.decorators = [
|
|
15049
15067
|
{ type: i0.Directive }
|
|
15050
15068
|
];
|
|
15069
|
+
RelationBaseComponent.ctorParameters = function () { return [
|
|
15070
|
+
{ type: RelationService }
|
|
15071
|
+
]; };
|
|
15051
15072
|
RelationBaseComponent.propDecorators = {
|
|
15052
15073
|
relation: [{ type: i0.Input }],
|
|
15053
15074
|
relationChange: [{ type: i0.Output }],
|
|
@@ -15056,8 +15077,9 @@
|
|
|
15056
15077
|
|
|
15057
15078
|
var RelationAddressSelectComponent = /** @class */ (function (_super) {
|
|
15058
15079
|
__extends(RelationAddressSelectComponent, _super);
|
|
15059
|
-
function RelationAddressSelectComponent(_formMasterService) {
|
|
15060
|
-
var _this = _super.call(this) || this;
|
|
15080
|
+
function RelationAddressSelectComponent(relationService, _formMasterService) {
|
|
15081
|
+
var _this = _super.call(this, relationService) || this;
|
|
15082
|
+
_this.relationService = relationService;
|
|
15061
15083
|
_this._formMasterService = _formMasterService;
|
|
15062
15084
|
_this.icons = Icon;
|
|
15063
15085
|
_this.collection = [];
|
|
@@ -15157,6 +15179,7 @@
|
|
|
15157
15179
|
},] }
|
|
15158
15180
|
];
|
|
15159
15181
|
RelationAddressSelectComponent.ctorParameters = function () { return [
|
|
15182
|
+
{ type: RelationService },
|
|
15160
15183
|
{ type: corecomponents_v12.FormMasterService }
|
|
15161
15184
|
]; };
|
|
15162
15185
|
RelationAddressSelectComponent.propDecorators = {
|
|
@@ -15172,11 +15195,12 @@
|
|
|
15172
15195
|
|
|
15173
15196
|
var RelationAddressComponent = /** @class */ (function (_super) {
|
|
15174
15197
|
__extends(RelationAddressComponent, _super);
|
|
15175
|
-
function RelationAddressComponent(_dictionary, _connector, _formMasterService) {
|
|
15176
|
-
var _this = _super.call(this) || this;
|
|
15198
|
+
function RelationAddressComponent(_dictionary, _connector, _formMasterService, relationService) {
|
|
15199
|
+
var _this = _super.call(this, relationService) || this;
|
|
15177
15200
|
_this._dictionary = _dictionary;
|
|
15178
15201
|
_this._connector = _connector;
|
|
15179
15202
|
_this._formMasterService = _formMasterService;
|
|
15203
|
+
_this.relationService = relationService;
|
|
15180
15204
|
_this.addressChange = new i0.EventEmitter();
|
|
15181
15205
|
_this.countries = [];
|
|
15182
15206
|
_this.fields = { text: "description", value: "code" };
|
|
@@ -15296,7 +15320,8 @@
|
|
|
15296
15320
|
RelationAddressComponent.ctorParameters = function () { return [
|
|
15297
15321
|
{ type: DictionaryService },
|
|
15298
15322
|
{ type: TransactionConnectorService },
|
|
15299
|
-
{ type: corecomponents_v12.FormMasterService }
|
|
15323
|
+
{ type: corecomponents_v12.FormMasterService },
|
|
15324
|
+
{ type: RelationService }
|
|
15300
15325
|
]; };
|
|
15301
15326
|
RelationAddressComponent.propDecorators = {
|
|
15302
15327
|
configNames: [{ type: i0.Input }],
|
|
@@ -16683,6 +16708,8 @@
|
|
|
16683
16708
|
_this.searchTransactions();
|
|
16684
16709
|
}
|
|
16685
16710
|
}
|
|
16711
|
+
}), this._transactionService.logout.subscribe(function () {
|
|
16712
|
+
_this._resetCache();
|
|
16686
16713
|
}));
|
|
16687
16714
|
}
|
|
16688
16715
|
Object.defineProperty(TransactionSearchService.prototype, "transactionType", {
|
|
@@ -16783,6 +16810,12 @@
|
|
|
16783
16810
|
_this.showFilterSidebar = true;
|
|
16784
16811
|
}, 10);
|
|
16785
16812
|
};
|
|
16813
|
+
TransactionSearchService.prototype._resetCache = function () {
|
|
16814
|
+
this.searchRequest = new transactionSearchViewRequest.TransactionSearchViewRequest();
|
|
16815
|
+
this._settingsService.settings.transactionParameters = new transactionSearchViewRequest.TransactionSearchViewRequest();
|
|
16816
|
+
this.transactions.length = 0;
|
|
16817
|
+
this._screenConfigService.clear();
|
|
16818
|
+
};
|
|
16786
16819
|
TransactionSearchService.prototype._resetRequest = function () {
|
|
16787
16820
|
this.searchRequest = this._settingsService.settings.transactionParameters;
|
|
16788
16821
|
};
|
|
@@ -25172,11 +25205,11 @@
|
|
|
25172
25205
|
|
|
25173
25206
|
var RelationGeneralComponent = /** @class */ (function (_super) {
|
|
25174
25207
|
__extends(RelationGeneralComponent, _super);
|
|
25175
|
-
function RelationGeneralComponent(_service, _dialogService,
|
|
25176
|
-
var _this = _super.call(this) || this;
|
|
25208
|
+
function RelationGeneralComponent(_service, _dialogService, relationService) {
|
|
25209
|
+
var _this = _super.call(this, relationService) || this;
|
|
25177
25210
|
_this._service = _service;
|
|
25178
25211
|
_this._dialogService = _dialogService;
|
|
25179
|
-
_this.
|
|
25212
|
+
_this.relationService = relationService;
|
|
25180
25213
|
_this.relType = relationNameKind_enum.RelationNameKind;
|
|
25181
25214
|
_this.genderType = genderType_enum.GenderType;
|
|
25182
25215
|
_this.readonly = false;
|
|
@@ -25218,7 +25251,7 @@
|
|
|
25218
25251
|
RelationGeneralComponent.decorators = [
|
|
25219
25252
|
{ type: i0.Component, args: [{
|
|
25220
25253
|
selector: "co-relation-general",
|
|
25221
|
-
template: "\n <div *ngIf=\"relationType === relType.Private\" class=\"collapseable\" @showHidePrivateRelationFields>\n <div class=\"default-data-row\">\n <co-input-text\n class=\"checkout-first-name\"\n [screenConfigurationObject]=\"configNames?.relationFirstName\"\n [readonly]=\"readonly\"\n [(model)]=\"relation.firstName\"\n [placeholder]=\"'FIRST_NAME' | localize\"\n (modelChange)=\"firstNameChange($event)\"\n
|
|
25254
|
+
template: "\n <div *ngIf=\"relationType === relType.Private\" class=\"collapseable\" @showHidePrivateRelationFields>\n <div class=\"default-data-row\">\n <co-input-text\n class=\"checkout-first-name\"\n [screenConfigurationObject]=\"configNames?.relationFirstName\"\n [readonly]=\"readonly\"\n [(model)]=\"relation.firstName\"\n [placeholder]=\"'FIRST_NAME' | localize\"\n (modelChange)=\"firstNameChange($event)\"\n ></co-input-text>\n <co-input-text\n class=\"checkout-prefix-name default-width\"\n [screenConfigurationObject]=\"configNames?.relationPrefix\"\n [readonly]=\"readonly\"\n [(model)]=\"relation.prefix\"\n [placeholder]=\"'PREFIX' | localize\"\n ></co-input-text>\n <co-input-text\n class=\"checkout-last-name\"\n [screenConfigurationObject]=\"configNames?.relationLastName\"\n [readonly]=\"readonly\"\n [(model)]=\"relation.familyName\"\n [placeholder]=\"'LAST_NAME' | localize\"\n (modelChange)=\"familyNameChange($event)\"\n ></co-input-text>\n </div>\n <div class=\"default-data-row\" [screenConfigurationObject]=\"configNames?.relationGender\" screenConfigNativeElement>\n <co-input-radio-button class=\"default-width\"\n [readonly]=\"readonly\"\n [label]=\"'MALE' | localize\"\n [model]=\"relation.gender === genderType.Male\"\n (modelChange)=\"changeGenderType(genderType.Male)\"\n ></co-input-radio-button>\n <co-input-radio-button class=\"default-width\"\n [readonly]=\"readonly\"\n [label]=\"'FEMALE' | localize\"\n [model]=\"relation.gender === genderType.Female\"\n (modelChange)=\"changeGenderType(genderType.Female)\"\n ></co-input-radio-button>\n <co-input-radio-button class=\"default-width\"\n [readonly]=\"readonly\"\n [label]=\"'UNKNOWN' | localize\"\n [model]=\"relation.gender === genderType.Unspecified\"\n (modelChange)=\"changeGenderType(genderType.Unspecified)\"\n ></co-input-radio-button>\n </div>\n <co-relation-contact-details\n [configNames]=\"configNames?.contactDetails\"\n [readonly]=\"readonly\"\n [relation]=\"relation\"\n [relationKind]=\"relationKind\"\n (inputChangeForSuggestions)=\"inputChangeForSuggestions.emit($event)\"\n ></co-relation-contact-details>\n <!--\n <div class=\"default-data-row\">\n <co-input-date [readonly]=\"readonly\" [placeholder]=\"'DATE_OF_BIRTH' | localize \" [(model)]=\"dateOfBirth\"></co-input-date>\n </div>\n -->\n </div>\n <div *ngIf=\"relationType === relType.Company\" class=\"default-data-row collapseable\" @showHideCompanyRelationFields>\n <co-input-text [readonly]=\"readonly\"\n [(model)]=\"relation.familyName\"\n [screenConfigurationObject]=\"configNames?.relationCompany\"\n [placeholder]=\"'COMPANY_NAME' | localize\"\n [required]=\"true\"\n (modelChange)=\"familyNameChange($event)\"\n ></co-input-text>\n </div>\n ",
|
|
25222
25255
|
animations: [
|
|
25223
25256
|
animations.trigger("showHidePrivateRelationFields", [
|
|
25224
25257
|
animations.state("void", animations.style({ height: 0 })),
|
|
@@ -25378,10 +25411,10 @@
|
|
|
25378
25411
|
|
|
25379
25412
|
var RelationAddressesComponent = /** @class */ (function (_super) {
|
|
25380
25413
|
__extends(RelationAddressesComponent, _super);
|
|
25381
|
-
function RelationAddressesComponent(_formMasterService,
|
|
25382
|
-
var _this = _super.call(this) || this;
|
|
25414
|
+
function RelationAddressesComponent(_formMasterService, relationService, iconCacheService) {
|
|
25415
|
+
var _this = _super.call(this, relationService) || this;
|
|
25383
25416
|
_this._formMasterService = _formMasterService;
|
|
25384
|
-
_this.
|
|
25417
|
+
_this.relationService = relationService;
|
|
25385
25418
|
_this.iconCacheService = iconCacheService;
|
|
25386
25419
|
_this.icons = Icon;
|
|
25387
25420
|
_this.readonly = false;
|
|
@@ -25418,13 +25451,13 @@
|
|
|
25418
25451
|
if (!!address.nawNr) return [3 /*break*/, 2];
|
|
25419
25452
|
address.startDate = new Date();
|
|
25420
25453
|
address.sequence = this.relation.getNextAddressSequence();
|
|
25421
|
-
return [4 /*yield*/, this.
|
|
25454
|
+
return [4 /*yield*/, this.relationService.insertAddress(address)];
|
|
25422
25455
|
case 1:
|
|
25423
25456
|
savedAddress = _a.sent();
|
|
25424
25457
|
this.relation.addresses.push(savedAddress);
|
|
25425
25458
|
this.changeAddress(savedAddress);
|
|
25426
25459
|
return [3 /*break*/, 4];
|
|
25427
|
-
case 2: return [4 /*yield*/, this.
|
|
25460
|
+
case 2: return [4 /*yield*/, this.relationService.updateAddress(address)];
|
|
25428
25461
|
case 3:
|
|
25429
25462
|
savedAddress = _a.sent();
|
|
25430
25463
|
idx = this.relation.addresses.findIndex(function (a) { return a.nawNr === address.nawNr; });
|
|
@@ -25518,8 +25551,9 @@
|
|
|
25518
25551
|
}());
|
|
25519
25552
|
var RelationPreferencesComponent = /** @class */ (function (_super) {
|
|
25520
25553
|
__extends(RelationPreferencesComponent, _super);
|
|
25521
|
-
function RelationPreferencesComponent(_service) {
|
|
25522
|
-
var _this = _super.call(this) || this;
|
|
25554
|
+
function RelationPreferencesComponent(relationService, _service) {
|
|
25555
|
+
var _this = _super.call(this, relationService) || this;
|
|
25556
|
+
_this.relationService = relationService;
|
|
25523
25557
|
_this._service = _service;
|
|
25524
25558
|
_this.readonly = false;
|
|
25525
25559
|
_this.privacySettings = [];
|
|
@@ -25569,6 +25603,7 @@
|
|
|
25569
25603
|
},] }
|
|
25570
25604
|
];
|
|
25571
25605
|
RelationPreferencesComponent.ctorParameters = function () { return [
|
|
25606
|
+
{ type: RelationService },
|
|
25572
25607
|
{ type: TransactionService }
|
|
25573
25608
|
]; };
|
|
25574
25609
|
RelationPreferencesComponent.propDecorators = {
|
|
@@ -28025,6 +28060,7 @@
|
|
|
28025
28060
|
success = _a.sent();
|
|
28026
28061
|
if (!success) {
|
|
28027
28062
|
this.transactionInfo.transactionDefinitive = oldDefinitive;
|
|
28063
|
+
this.checkbox.setModel(this.transactionInfo.transactionDefinitive);
|
|
28028
28064
|
return [2 /*return*/, success];
|
|
28029
28065
|
}
|
|
28030
28066
|
_a.label = 2;
|
|
@@ -28047,6 +28083,7 @@
|
|
|
28047
28083
|
},] }
|
|
28048
28084
|
];
|
|
28049
28085
|
TransactionHeaderDefinitiveComponent.propDecorators = {
|
|
28086
|
+
checkbox: [{ type: i0.ViewChild, args: [corecomponents_v12.InputCheckboxComponent,] }],
|
|
28050
28087
|
showClass: [{ type: i0.HostBinding, args: ["class.co-transaction-header-definitive",] }]
|
|
28051
28088
|
};
|
|
28052
28089
|
|
|
@@ -28878,6 +28915,7 @@
|
|
|
28878
28915
|
this.showLoader = false;
|
|
28879
28916
|
if (!success) {
|
|
28880
28917
|
this.transactionInfo.allowPartialDelivery = oldPartial;
|
|
28918
|
+
this.checkbox.setModel(this.transactionInfo.allowPartialDelivery);
|
|
28881
28919
|
return [2 /*return*/, success];
|
|
28882
28920
|
}
|
|
28883
28921
|
else {
|
|
@@ -28905,6 +28943,7 @@
|
|
|
28905
28943
|
},] }
|
|
28906
28944
|
];
|
|
28907
28945
|
TransactionHeaderPartialDeliveryComponent.propDecorators = {
|
|
28946
|
+
checkbox: [{ type: i0.ViewChild, args: [corecomponents_v12.InputCheckboxComponent,] }],
|
|
28908
28947
|
showClass: [{ type: i0.HostBinding, args: ["class.co-transaction-header-partial-delivery",] }]
|
|
28909
28948
|
};
|
|
28910
28949
|
|