@colijnit/transaction 262.1.25 → 262.1.26
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/fesm2022/colijnit-transaction.mjs +81 -69
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +12 -10
- package/lib/component/relation/relation-address-tile/style/_layout.scss +1 -0
- package/lib/style/_variables.scss +0 -1
- package/package.json +2 -2
- package/colijnit-transaction-262.1.23.tgz +0 -0
|
@@ -355,8 +355,8 @@ import { DateField } from '@colijnit/ioneconnector/build/factory/decorators/date
|
|
|
355
355
|
class Version {
|
|
356
356
|
name = "@colijnit/transaction";
|
|
357
357
|
description = "Colijn IT transaction package";
|
|
358
|
-
symVer = "262.1.
|
|
359
|
-
publishDate = "
|
|
358
|
+
symVer = "262.1.26";
|
|
359
|
+
publishDate = "30-6-2026, 17:55:19";
|
|
360
360
|
}
|
|
361
361
|
|
|
362
362
|
class CheckoutModuleService extends BaseModuleService {
|
|
@@ -7810,6 +7810,19 @@ class TransactionConnectorAdapterService {
|
|
|
7810
7810
|
return 0;
|
|
7811
7811
|
}
|
|
7812
7812
|
}
|
|
7813
|
+
async createPublicQuote(request) {
|
|
7814
|
+
const response = await this.connector.createPublicQuote(request);
|
|
7815
|
+
if (response && response.validationResult && response.validationResult.success) {
|
|
7816
|
+
return response.resultObject;
|
|
7817
|
+
}
|
|
7818
|
+
else {
|
|
7819
|
+
this._handleExceptionFromResponse(response);
|
|
7820
|
+
return null;
|
|
7821
|
+
}
|
|
7822
|
+
}
|
|
7823
|
+
async getCreatePublicQuoteResponse(request) {
|
|
7824
|
+
return this.connector.createPublicQuote(request);
|
|
7825
|
+
}
|
|
7813
7826
|
_openPdfContent(content) {
|
|
7814
7827
|
if (content) {
|
|
7815
7828
|
try {
|
|
@@ -9373,16 +9386,16 @@ class TransactionConnectorService {
|
|
|
9373
9386
|
return this._adapterService.functionCall(this._adapterService.getCashRegistersForTransaction, [transactionUUID]);
|
|
9374
9387
|
}
|
|
9375
9388
|
async getLspPackageInfoPrintLayouts(showLoader) {
|
|
9376
|
-
return await this._adapterService.getLspPackageInfoPrintLayouts
|
|
9389
|
+
return await this._adapterService.functionCall(this._adapterService.getLspPackageInfoPrintLayouts, [showLoader]);
|
|
9377
9390
|
}
|
|
9378
9391
|
async printLspPackageInfo(request, showLoader) {
|
|
9379
|
-
return await this._adapterService.printLspPackageInfo
|
|
9392
|
+
return await this._adapterService.functionCall(this._adapterService.printLspPackageInfo, [request]);
|
|
9380
9393
|
}
|
|
9381
9394
|
async printDeliveryNoteForLspPackage(request, showLoader) {
|
|
9382
|
-
return await this._adapterService.printDeliveryNoteForLspPackage
|
|
9395
|
+
return await this._adapterService.functionCall(this._adapterService.printDeliveryNoteForLspPackage, [request]);
|
|
9383
9396
|
}
|
|
9384
9397
|
async getRouteDeparture(request, showLoader) {
|
|
9385
|
-
return await this._adapterService.getRouteDeparture
|
|
9398
|
+
return await this._adapterService.functionCall(this._adapterService.getRouteDeparture, [request]);
|
|
9386
9399
|
}
|
|
9387
9400
|
async changeHeadersTransactionsDefinitive(request, showLoader) {
|
|
9388
9401
|
return await this._adapterService.changeHeadersTransactionsDefinitive(request);
|
|
@@ -9436,49 +9449,55 @@ class TransactionConnectorService {
|
|
|
9436
9449
|
return await this._adapterService.updateContainer(container);
|
|
9437
9450
|
}
|
|
9438
9451
|
async getCashPaymentValueByTransId(transId, showLoader) {
|
|
9439
|
-
return await this._adapterService.getCashPaymentValueByTransId
|
|
9452
|
+
return await this._adapterService.functionCall(this._adapterService.getCashPaymentValueByTransId, [transId, showLoader]);
|
|
9440
9453
|
}
|
|
9441
9454
|
async getContactMoments(table, key, showLoader) {
|
|
9442
|
-
return await this._adapterService.getContactMoments
|
|
9455
|
+
return await this._adapterService.functionCall(this._adapterService.getContactMoments, [table, key, showLoader]);
|
|
9443
9456
|
}
|
|
9444
9457
|
async mergeContactMoments(mergeContactMomentsRequest, showLoader) {
|
|
9445
|
-
return await this._adapterService.mergeContactMoments
|
|
9458
|
+
return await this._adapterService.functionCall(this._adapterService.mergeContactMoments, [mergeContactMomentsRequest, showLoader]);
|
|
9446
9459
|
}
|
|
9447
9460
|
async printWorkOrder(printWorkOrderRequest, showLoader) {
|
|
9448
|
-
return await this._adapterService.printWorkOrder
|
|
9461
|
+
return await this._adapterService.functionCall(this._adapterService.printWorkOrder, [printWorkOrderRequest, showLoader]);
|
|
9449
9462
|
}
|
|
9450
9463
|
async printHistoricWorkOrder(printHistoricWorkOrderRequest, showLoader) {
|
|
9451
|
-
return await this._adapterService.printHistoricWorkOrder
|
|
9464
|
+
return await this._adapterService.functionCall(this._adapterService.printHistoricWorkOrder, [printHistoricWorkOrderRequest, showLoader]);
|
|
9452
9465
|
}
|
|
9453
9466
|
async startWorkOrderBatch(batchTransactionSendingRequest, showLoader) {
|
|
9454
|
-
return await this._adapterService.startWorkOrderBatch
|
|
9467
|
+
return await this._adapterService.functionCall(this._adapterService.startWorkOrderBatch, [batchTransactionSendingRequest, showLoader]);
|
|
9455
9468
|
}
|
|
9456
9469
|
async emailWorkOrder(emailWorkOrderRequest, showLoader) {
|
|
9457
|
-
return await this._adapterService.emailWorkOrder
|
|
9470
|
+
return await this._adapterService.functionCall(this._adapterService.emailWorkOrder, [emailWorkOrderRequest, showLoader]);
|
|
9458
9471
|
}
|
|
9459
9472
|
async emailHistoricWorkOrder(emailHistoricWorkOrderRequest, showLoader) {
|
|
9460
|
-
return await this._adapterService.emailHistoricWorkOrder
|
|
9473
|
+
return await this._adapterService.functionCall(this._adapterService.emailHistoricWorkOrder, [emailHistoricWorkOrderRequest, showLoader]);
|
|
9461
9474
|
}
|
|
9462
9475
|
async pdfWorkOrder(pdfWorkOrderRequest, localPrint, showLoader) {
|
|
9463
|
-
return await this._adapterService.pdfWorkOrder
|
|
9476
|
+
return await this._adapterService.functionCall(this._adapterService.pdfWorkOrder, [pdfWorkOrderRequest, localPrint, showLoader]);
|
|
9464
9477
|
}
|
|
9465
9478
|
async pdfHistoricWorkOrder(pdfHistoricWorkOrderRequest, showLoader) {
|
|
9466
|
-
return await this._adapterService.pdfHistoricWorkOrder
|
|
9479
|
+
return await this._adapterService.functionCall(this._adapterService.pdfHistoricWorkOrder, [pdfHistoricWorkOrderRequest, showLoader]);
|
|
9467
9480
|
}
|
|
9468
9481
|
async getWorkOrderEmailLayouts(transactionUUID, showLoader) {
|
|
9469
|
-
return
|
|
9482
|
+
return this._selectMultipleParameterizedCacheService.requestCache(ReportLayoutSelectionEmail, (transactionUUID) => {
|
|
9483
|
+
return this._adapterService.functionCall(this._adapterService.getWorkOrderEmailLayouts, [transactionUUID, showLoader]);
|
|
9484
|
+
}).getValue(transactionUUID);
|
|
9470
9485
|
}
|
|
9471
9486
|
async getWorkOrderPrintLayouts(transactionUUID, showLoader) {
|
|
9472
|
-
return
|
|
9487
|
+
return this._selectMultipleParameterizedCacheService.requestCache(ReportLayoutSelectionPrint, (transactionUUID) => {
|
|
9488
|
+
return this._adapterService.functionCall(this._adapterService.getWorkOrderPrintLayouts, [transactionUUID, showLoader]);
|
|
9489
|
+
}).getValue(transactionUUID);
|
|
9473
9490
|
}
|
|
9474
9491
|
async getWorkOrderDefaultSendMethod(relationId, showLoader) {
|
|
9475
|
-
return await this._adapterService.getWorkOrderDefaultSendMethod
|
|
9492
|
+
return await this._adapterService.functionCall(this._adapterService.getWorkOrderDefaultSendMethod, [relationId, showLoader]);
|
|
9476
9493
|
}
|
|
9477
9494
|
async getDefaultEmailAddressListForWorkOrder(transactionUUID, showLoader) {
|
|
9478
|
-
return
|
|
9495
|
+
return this._selectMultipleParameterizedCacheService.requestCache(ReportLayoutSelectionEmail, (transactionUUID) => {
|
|
9496
|
+
return this._adapterService.functionCall(this._adapterService.getDefaultEmailAddressListForWorkOrder, [transactionUUID, showLoader]);
|
|
9497
|
+
}).getValue(transactionUUID);
|
|
9479
9498
|
}
|
|
9480
9499
|
async previewWorkOrder(pdfWorkOrderRequest, showLoader) {
|
|
9481
|
-
return await this._adapterService.previewWorkOrder
|
|
9500
|
+
return await this._adapterService.functionCall(this._adapterService.previewWorkOrder, [pdfWorkOrderRequest, showLoader]);
|
|
9482
9501
|
}
|
|
9483
9502
|
async cancelPspTransaction(pspTransactionUuid) {
|
|
9484
9503
|
return await this._adapterService.cancelPspTransaction(pspTransactionUuid);
|
|
@@ -9487,15 +9506,21 @@ class TransactionConnectorService {
|
|
|
9487
9506
|
return await this._adapterService.createQRCode(width, height, data);
|
|
9488
9507
|
}
|
|
9489
9508
|
async roundUp(amount, paymentMethodCode, showLoader) {
|
|
9490
|
-
return await this._adapterService.roundUp
|
|
9509
|
+
return await this._adapterService.functionCall(this._adapterService.roundUp, [amount, paymentMethodCode, showLoader]);
|
|
9510
|
+
}
|
|
9511
|
+
async createPublicQuote(request) {
|
|
9512
|
+
return this._adapterService.functionCall(this._adapterService.createPublicQuote, [request]);
|
|
9513
|
+
}
|
|
9514
|
+
async getCreatePublicQuoteResponse(request) {
|
|
9515
|
+
return this._adapterService.functionCall(this._adapterService.getCreatePublicQuoteResponse, [request]);
|
|
9491
9516
|
}
|
|
9492
9517
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TransactionConnectorService, deps: [{ token: TransactionConnectorAdapterService }, { token: TransactionSelectSingleCacheService }, { token: TransactionSelectMultipleCacheService }, { token: TransactionSelectMultipleParameterizedCacheService }, { token: TransactionSelectSingleParameterizedCacheService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
9493
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TransactionConnectorService, providedIn:
|
|
9518
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TransactionConnectorService, providedIn: 'root' });
|
|
9494
9519
|
}
|
|
9495
9520
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TransactionConnectorService, decorators: [{
|
|
9496
9521
|
type: Injectable,
|
|
9497
9522
|
args: [{
|
|
9498
|
-
providedIn:
|
|
9523
|
+
providedIn: 'root'
|
|
9499
9524
|
}]
|
|
9500
9525
|
}], ctorParameters: () => [{ type: TransactionConnectorAdapterService }, { type: TransactionSelectSingleCacheService }, { type: TransactionSelectMultipleCacheService }, { type: TransactionSelectMultipleParameterizedCacheService }, { type: TransactionSelectSingleParameterizedCacheService }] });
|
|
9501
9526
|
|
|
@@ -31460,6 +31485,7 @@ class RelationAddressesComponent extends RelationBaseComponent {
|
|
|
31460
31485
|
transactionService;
|
|
31461
31486
|
transactionEventService;
|
|
31462
31487
|
transactionHeaderService;
|
|
31488
|
+
changeDetector;
|
|
31463
31489
|
icons = Icon;
|
|
31464
31490
|
readonly = false;
|
|
31465
31491
|
addresses = [];
|
|
@@ -31476,7 +31502,7 @@ class RelationAddressesComponent extends RelationBaseComponent {
|
|
|
31476
31502
|
showEditAddressDialog = false;
|
|
31477
31503
|
addressToEdit;
|
|
31478
31504
|
_boFactory = new BusinessObjectFactory();
|
|
31479
|
-
constructor(_formMasterService, relationService, iconCacheService, transactionService, transactionEventService, transactionHeaderService) {
|
|
31505
|
+
constructor(_formMasterService, relationService, iconCacheService, transactionService, transactionEventService, transactionHeaderService, changeDetector) {
|
|
31480
31506
|
super(transactionService, relationService);
|
|
31481
31507
|
this._formMasterService = _formMasterService;
|
|
31482
31508
|
this.relationService = relationService;
|
|
@@ -31484,6 +31510,7 @@ class RelationAddressesComponent extends RelationBaseComponent {
|
|
|
31484
31510
|
this.transactionService = transactionService;
|
|
31485
31511
|
this.transactionEventService = transactionEventService;
|
|
31486
31512
|
this.transactionHeaderService = transactionHeaderService;
|
|
31513
|
+
this.changeDetector = changeDetector;
|
|
31487
31514
|
}
|
|
31488
31515
|
ngAfterViewInit() {
|
|
31489
31516
|
if (!this.selectedNawNr && this.addresses && this.addresses.length > 0) {
|
|
@@ -31516,18 +31543,23 @@ class RelationAddressesComponent extends RelationBaseComponent {
|
|
|
31516
31543
|
else {
|
|
31517
31544
|
address.localHash = this.transactionHeaderService.generateAddressLocalHash(address);
|
|
31518
31545
|
}
|
|
31519
|
-
const idx = this.relation.addresses.findIndex(a => a.
|
|
31546
|
+
const idx = this.relation.addresses.findIndex(a => a.nawNr === address.nawNr);
|
|
31520
31547
|
if (idx > -1) {
|
|
31521
31548
|
this.relation.addresses[idx] = address;
|
|
31549
|
+
this.relationChange.emit(this.relation);
|
|
31522
31550
|
}
|
|
31523
31551
|
}
|
|
31524
|
-
this.showEditAddressDialog = false;
|
|
31525
31552
|
this.transactionEventService.headerPopupSaveButtonEnableChange.next(true);
|
|
31553
|
+
this.closeNewAddressDialog();
|
|
31526
31554
|
}
|
|
31527
31555
|
showNewAddressDialog() {
|
|
31528
31556
|
this.addressToEdit = new Address();
|
|
31529
31557
|
this.showEditAddressDialog = true;
|
|
31530
31558
|
}
|
|
31559
|
+
closeNewAddressDialog() {
|
|
31560
|
+
this.showEditAddressDialog = false;
|
|
31561
|
+
this.changeDetector.detectChanges();
|
|
31562
|
+
}
|
|
31531
31563
|
changeAddress(address) {
|
|
31532
31564
|
if (address && !this.readonly) {
|
|
31533
31565
|
if (address.nawNr && address.nawNr !== 0) {
|
|
@@ -31551,7 +31583,7 @@ class RelationAddressesComponent extends RelationBaseComponent {
|
|
|
31551
31583
|
this.showEditAddressDialog = true;
|
|
31552
31584
|
}
|
|
31553
31585
|
}
|
|
31554
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RelationAddressesComponent, deps: [{ token: i1$1.FormMasterService }, { token: TransactionRelationService }, { token: IconCacheService }, { token: TransactionService }, { token: TransactionEventService }, { token: TransactionHeaderService }], target: i0.ɵɵFactoryTarget.Component });
|
|
31586
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RelationAddressesComponent, deps: [{ token: i1$1.FormMasterService }, { token: TransactionRelationService }, { token: IconCacheService }, { token: TransactionService }, { token: TransactionEventService }, { token: TransactionHeaderService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
31555
31587
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.16", type: RelationAddressesComponent, isStandalone: false, selector: "co-relation-addresses", inputs: { readonly: "readonly", addresses: "addresses", showOnlyActive: "showOnlyActive", type: "type", selectedNawNr: "selectedNawNr", selectedLocalHash: "selectedLocalHash", noSaveOnAddAddress: "noSaveOnAddAddress" }, outputs: { selectedNawNrChange: "selectedNawNrChange", selectedLocalHashChange: "selectedLocalHashChange" }, host: { properties: { "class.co-relation-addresses": "this.showClass" } }, providers: [
|
|
31556
31588
|
FormMasterService
|
|
31557
31589
|
], usesInheritance: true, ngImport: i0, template: `
|
|
@@ -31563,7 +31595,7 @@ class RelationAddressesComponent extends RelationBaseComponent {
|
|
|
31563
31595
|
[address]="address"
|
|
31564
31596
|
[readonly]="readonly"
|
|
31565
31597
|
[selected]="(selectedNawNr === address.nawNr && address.nawNr !== undefined) || (selectedLocalHash === address.localHash && address.localHash !== undefined)"
|
|
31566
|
-
(editAddressClicked)="
|
|
31598
|
+
(editAddressClicked)="editAddress($event)"
|
|
31567
31599
|
(selectedChange)="handleChangeAddressClick($event)"
|
|
31568
31600
|
></co-relation-address-tile>
|
|
31569
31601
|
}
|
|
@@ -31621,7 +31653,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
31621
31653
|
[address]="address"
|
|
31622
31654
|
[readonly]="readonly"
|
|
31623
31655
|
[selected]="(selectedNawNr === address.nawNr && address.nawNr !== undefined) || (selectedLocalHash === address.localHash && address.localHash !== undefined)"
|
|
31624
|
-
(editAddressClicked)="
|
|
31656
|
+
(editAddressClicked)="editAddress($event)"
|
|
31625
31657
|
(selectedChange)="handleChangeAddressClick($event)"
|
|
31626
31658
|
></co-relation-address-tile>
|
|
31627
31659
|
}
|
|
@@ -31671,7 +31703,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
31671
31703
|
encapsulation: ViewEncapsulation.None,
|
|
31672
31704
|
standalone: false
|
|
31673
31705
|
}]
|
|
31674
|
-
}], ctorParameters: () => [{ type: i1$1.FormMasterService }, { type: TransactionRelationService }, { type: IconCacheService }, { type: TransactionService }, { type: TransactionEventService }, { type: TransactionHeaderService }], propDecorators: { readonly: [{
|
|
31706
|
+
}], ctorParameters: () => [{ type: i1$1.FormMasterService }, { type: TransactionRelationService }, { type: IconCacheService }, { type: TransactionService }, { type: TransactionEventService }, { type: TransactionHeaderService }, { type: i0.ChangeDetectorRef }], propDecorators: { readonly: [{
|
|
31675
31707
|
type: Input
|
|
31676
31708
|
}], addresses: [{
|
|
31677
31709
|
type: Input
|
|
@@ -85034,13 +85066,13 @@ class TransactionCreationService extends TransactionService {
|
|
|
85034
85066
|
return reject();
|
|
85035
85067
|
}
|
|
85036
85068
|
request.branchNr = this.currentBranch;
|
|
85037
|
-
|
|
85038
|
-
|
|
85069
|
+
const response = await this.connector.convertSalesQuotationToSalesOrder(request);
|
|
85070
|
+
if (response) {
|
|
85039
85071
|
await this.handleLineOperationStatuses(response);
|
|
85040
85072
|
resolve(response.transactionInfo.transactionNr);
|
|
85041
85073
|
}
|
|
85042
|
-
|
|
85043
|
-
|
|
85074
|
+
else {
|
|
85075
|
+
resolve(null);
|
|
85044
85076
|
}
|
|
85045
85077
|
});
|
|
85046
85078
|
}
|
|
@@ -110101,46 +110133,32 @@ class TransactionInvoiceCheckOrderTileComponent {
|
|
|
110101
110133
|
SimpleGridColumnTemplateType = SimpleGridColumnTemplateType;
|
|
110102
110134
|
columnAlign = ColumnAlign;
|
|
110103
110135
|
icons = Icon;
|
|
110104
|
-
showClass() {
|
|
110105
|
-
return true;
|
|
110106
|
-
}
|
|
110107
|
-
selected = false;
|
|
110108
|
-
toCheckInputList;
|
|
110109
|
-
set toCheckInputs(toCheckInputs) {
|
|
110110
|
-
this.toCheckInputList = toCheckInputs;
|
|
110111
|
-
}
|
|
110112
|
-
;
|
|
110113
|
-
bookingPriceInputList;
|
|
110114
|
-
set bookingPriceInputs(bookingPriceInputs) {
|
|
110115
|
-
this.bookingPriceInputList = bookingPriceInputs;
|
|
110116
|
-
}
|
|
110117
|
-
;
|
|
110118
110136
|
invoiceCheckOrder;
|
|
110119
110137
|
lineSelectedEvent = new EventEmitter();
|
|
110120
110138
|
saveRowEvent = new EventEmitter();
|
|
110121
110139
|
selectAllLinesEvent = new EventEmitter();
|
|
110122
110140
|
openTransactionEvent = new EventEmitter();
|
|
110141
|
+
selected = false;
|
|
110123
110142
|
constructor(iconCacheService, changeDetector) {
|
|
110124
110143
|
this.iconCacheService = iconCacheService;
|
|
110125
110144
|
this.changeDetector = changeDetector;
|
|
110126
110145
|
}
|
|
110146
|
+
showClass() {
|
|
110147
|
+
return true;
|
|
110148
|
+
}
|
|
110127
110149
|
handleLineSelected(selected, line) {
|
|
110128
110150
|
line.process = selected;
|
|
110129
110151
|
this.lineSelectedEvent.emit({ selected: selected, lineNumber: line.lineNumber });
|
|
110130
110152
|
}
|
|
110131
110153
|
handleSaveRow(data) {
|
|
110132
110154
|
const row = data;
|
|
110133
|
-
|
|
110134
|
-
let bookingPrice = parseInt(this.bookingPriceInputList.get(index).model);
|
|
110135
|
-
let quantity = parseInt(this.toCheckInputList.get(index).model);
|
|
110136
|
-
this.saveRowEvent.emit({ row: row, newValues: { bookingPrice: bookingPrice, quantity: quantity } });
|
|
110155
|
+
this.saveRowEvent.emit({ row: row, newValues: { bookingPrice: row.bookingPrice, quantity: row.toCheck } });
|
|
110137
110156
|
}
|
|
110138
110157
|
handleOpenTransaction(transNo) {
|
|
110139
110158
|
this.openTransactionEvent.emit(transNo);
|
|
110140
110159
|
}
|
|
110141
|
-
close = close;
|
|
110142
110160
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TransactionInvoiceCheckOrderTileComponent, deps: [{ token: IconCacheService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
110143
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TransactionInvoiceCheckOrderTileComponent, isStandalone: false, selector: "co-transaction-invoice-check-order-tile", inputs: { invoiceCheckOrder: "invoiceCheckOrder" }, outputs: { lineSelectedEvent: "lineSelectedEvent", saveRowEvent: "saveRowEvent", selectAllLinesEvent: "selectAllLinesEvent", openTransactionEvent: "openTransactionEvent" }, host: { properties: { "class.co-transaction-invoice-check-order-tile": "this.showClass" } },
|
|
110161
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TransactionInvoiceCheckOrderTileComponent, isStandalone: false, selector: "co-transaction-invoice-check-order-tile", inputs: { invoiceCheckOrder: "invoiceCheckOrder" }, outputs: { lineSelectedEvent: "lineSelectedEvent", saveRowEvent: "saveRowEvent", selectAllLinesEvent: "selectAllLinesEvent", openTransactionEvent: "openTransactionEvent" }, host: { properties: { "class.co-transaction-invoice-check-order-tile": "this.showClass" } }, ngImport: i0, template: `
|
|
110144
110162
|
<div class="row">
|
|
110145
110163
|
<div class="transaction-tile-wrapper">
|
|
110146
110164
|
<div class="tile">
|
|
@@ -110226,7 +110244,7 @@ class TransactionInvoiceCheckOrderTileComponent {
|
|
|
110226
110244
|
<span [textContent]="row['bookingPrice'] | coCurrency: true"></span>
|
|
110227
110245
|
</ng-template>
|
|
110228
110246
|
<ng-template [templateType]="SimpleGridColumnTemplateType.Edit" let-row="row">
|
|
110229
|
-
<co-input-text #editBookingPriceComponent [customHeight]="true" [customWidth]="true" [showClearButton]="false" [type]="'number'" [model]="row['bookingPrice']"></co-input-text>
|
|
110247
|
+
<co-input-text #editBookingPriceComponent [customHeight]="true" [customWidth]="true" [showClearButton]="false" [type]="'number'" [(model)]="row['bookingPrice']"></co-input-text>
|
|
110230
110248
|
</ng-template>
|
|
110231
110249
|
</co-simple-grid-column>
|
|
110232
110250
|
|
|
@@ -110279,7 +110297,7 @@ class TransactionInvoiceCheckOrderTileComponent {
|
|
|
110279
110297
|
<span [textContent]="row['toCheck']"></span>
|
|
110280
110298
|
</ng-template>
|
|
110281
110299
|
<ng-template [templateType]="SimpleGridColumnTemplateType.Edit" let-row="row">
|
|
110282
|
-
<co-input-text #editToCheckComponent [customHeight]="true" [customWidth]="true" [showClearButton]="false" [type]="'number'" [model]="row['toCheck']"></co-input-text>
|
|
110300
|
+
<co-input-text #editToCheckComponent [customHeight]="true" [customWidth]="true" [showClearButton]="false" [type]="'number'" [(model)]="row['toCheck']"></co-input-text>
|
|
110283
110301
|
</ng-template>
|
|
110284
110302
|
</co-simple-grid-column>
|
|
110285
110303
|
|
|
@@ -110383,7 +110401,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
110383
110401
|
<span [textContent]="row['bookingPrice'] | coCurrency: true"></span>
|
|
110384
110402
|
</ng-template>
|
|
110385
110403
|
<ng-template [templateType]="SimpleGridColumnTemplateType.Edit" let-row="row">
|
|
110386
|
-
<co-input-text #editBookingPriceComponent [customHeight]="true" [customWidth]="true" [showClearButton]="false" [type]="'number'" [model]="row['bookingPrice']"></co-input-text>
|
|
110404
|
+
<co-input-text #editBookingPriceComponent [customHeight]="true" [customWidth]="true" [showClearButton]="false" [type]="'number'" [(model)]="row['bookingPrice']"></co-input-text>
|
|
110387
110405
|
</ng-template>
|
|
110388
110406
|
</co-simple-grid-column>
|
|
110389
110407
|
|
|
@@ -110436,7 +110454,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
110436
110454
|
<span [textContent]="row['toCheck']"></span>
|
|
110437
110455
|
</ng-template>
|
|
110438
110456
|
<ng-template [templateType]="SimpleGridColumnTemplateType.Edit" let-row="row">
|
|
110439
|
-
<co-input-text #editToCheckComponent [customHeight]="true" [customWidth]="true" [showClearButton]="false" [type]="'number'" [model]="row['toCheck']"></co-input-text>
|
|
110457
|
+
<co-input-text #editToCheckComponent [customHeight]="true" [customWidth]="true" [showClearButton]="false" [type]="'number'" [(model)]="row['toCheck']"></co-input-text>
|
|
110440
110458
|
</ng-template>
|
|
110441
110459
|
</co-simple-grid-column>
|
|
110442
110460
|
|
|
@@ -110452,16 +110470,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
110452
110470
|
encapsulation: ViewEncapsulation.None,
|
|
110453
110471
|
standalone: false
|
|
110454
110472
|
}]
|
|
110455
|
-
}], ctorParameters: () => [{ type: IconCacheService }, { type: i0.ChangeDetectorRef }], propDecorators: {
|
|
110456
|
-
type: HostBinding,
|
|
110457
|
-
args: ['class.co-transaction-invoice-check-order-tile']
|
|
110458
|
-
}], toCheckInputs: [{
|
|
110459
|
-
type: ViewChildren,
|
|
110460
|
-
args: ['editToCheckComponent']
|
|
110461
|
-
}], bookingPriceInputs: [{
|
|
110462
|
-
type: ViewChildren,
|
|
110463
|
-
args: ['editBookingPriceComponent']
|
|
110464
|
-
}], invoiceCheckOrder: [{
|
|
110473
|
+
}], ctorParameters: () => [{ type: IconCacheService }, { type: i0.ChangeDetectorRef }], propDecorators: { invoiceCheckOrder: [{
|
|
110465
110474
|
type: Input
|
|
110466
110475
|
}], lineSelectedEvent: [{
|
|
110467
110476
|
type: Output
|
|
@@ -110471,6 +110480,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
110471
110480
|
type: Output
|
|
110472
110481
|
}], openTransactionEvent: [{
|
|
110473
110482
|
type: Output
|
|
110483
|
+
}], showClass: [{
|
|
110484
|
+
type: HostBinding,
|
|
110485
|
+
args: ['class.co-transaction-invoice-check-order-tile']
|
|
110474
110486
|
}] } });
|
|
110475
110487
|
|
|
110476
110488
|
class TransactionInvoiceCheckOrderTileModule {
|