@colijnit/transaction 256.1.96 → 256.1.97
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 +25 -22
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/lib/component/payment/payment.component.js +75 -75
- package/esm2015/lib/component/transaction-header/transaction-header-popup/transaction-header-popup-payment.component.js +11 -10
- package/esm2015/lib/service/pending-reason.service.js +4 -3
- package/esm2015/lib/service/transaction-connector.service.js +3 -3
- package/esm2015/lib/service/transaction.service.js +7 -6
- package/esm2015/lib/transaction-version.js +3 -3
- package/fesm2015/colijnit-transaction.js +96 -94
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/lib/service/transaction-connector.service.d.ts +1 -1
- package/lib/service/transaction.service.d.ts +5 -5
- package/package.json +2 -2
|
@@ -3,8 +3,8 @@ export class Version {
|
|
|
3
3
|
constructor() {
|
|
4
4
|
this.name = "@colijnit/transaction";
|
|
5
5
|
this.description = "Colijn IT transaction package";
|
|
6
|
-
this.symVer = "256.1.
|
|
7
|
-
this.publishDate = "
|
|
6
|
+
this.symVer = "256.1.97";
|
|
7
|
+
this.publishDate = "26/06/2025, 17:16:13";
|
|
8
8
|
}
|
|
9
9
|
}
|
|
10
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
10
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tdmVyc2lvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL3RyYW5zYWN0aW9uL3NyYy9saWIvdHJhbnNhY3Rpb24tdmVyc2lvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSx1REFBdUQ7QUFDdkQsTUFBTSxPQUFPLE9BQU87SUFBcEI7UUFDUyxTQUFJLEdBQUcsdUJBQXVCLENBQUM7UUFDL0IsZ0JBQVcsR0FBRywrQkFBK0IsQ0FBQztRQUM5QyxXQUFNLEdBQUcsVUFBVSxDQUFDO1FBQ3BCLGdCQUFXLEdBQUcsc0JBQXNCLENBQUM7SUFDOUMsQ0FBQztDQUFBIiwic291cmNlc0NvbnRlbnQiOlsiLy8gdGhpcyBmaWxlIGlzIGR5bmFtaWNhbGx5IGNyZWF0ZWQsIGRvIG5vdCBjaGFuZ2UgdGhpc1xuZXhwb3J0IGNsYXNzIFZlcnNpb24ge1xuICBwdWJsaWMgbmFtZSA9IFwiQGNvbGlqbml0L3RyYW5zYWN0aW9uXCI7XG4gIHB1YmxpYyBkZXNjcmlwdGlvbiA9IFwiQ29saWpuIElUIHRyYW5zYWN0aW9uIHBhY2thZ2VcIjtcbiAgcHVibGljIHN5bVZlciA9IFwiMjU2LjEuOTdcIjtcbiAgcHVibGljIHB1Ymxpc2hEYXRlID0gXCIyNi8wNi8yMDI1LCAxNzoxNjoxM1wiO1xufSJdfQ==
|
|
@@ -290,8 +290,8 @@ class Version {
|
|
|
290
290
|
constructor() {
|
|
291
291
|
this.name = "@colijnit/transaction";
|
|
292
292
|
this.description = "Colijn IT transaction package";
|
|
293
|
-
this.symVer = "256.1.
|
|
294
|
-
this.publishDate = "
|
|
293
|
+
this.symVer = "256.1.97";
|
|
294
|
+
this.publishDate = "26/06/2025, 17:16:13";
|
|
295
295
|
}
|
|
296
296
|
}
|
|
297
297
|
|
|
@@ -7162,11 +7162,11 @@ class TransactionConnectorService {
|
|
|
7162
7162
|
}, overrideOld).getValue(branch, group);
|
|
7163
7163
|
});
|
|
7164
7164
|
}
|
|
7165
|
-
getCashDrawers(cashDrawersRequest) {
|
|
7165
|
+
getCashDrawers(cashDrawersRequest, overrideOld = false) {
|
|
7166
7166
|
return __awaiter(this, void 0, void 0, function* () {
|
|
7167
7167
|
return this._selectMultipleParameterizedCacheService.requestCache(CashDrawer, (cashDrawersRequest) => {
|
|
7168
7168
|
return this._adapterService.functionCall(this._adapterService.getCashDrawers, [cashDrawersRequest]);
|
|
7169
|
-
}).getValue(cashDrawersRequest);
|
|
7169
|
+
}, overrideOld).getValue(cashDrawersRequest);
|
|
7170
7170
|
});
|
|
7171
7171
|
}
|
|
7172
7172
|
getPriceLists(code) {
|
|
@@ -11290,7 +11290,7 @@ class PendingReasonService extends TransactionBaseService {
|
|
|
11290
11290
|
success = success && (yield this._handleHeaderOperationStatus(status, response.transactionInfo));
|
|
11291
11291
|
}
|
|
11292
11292
|
const hasPendingReasons = response.headerOperationStatuses.filter(los => los.pendingReason !== "REASON_NONE").length > 0;
|
|
11293
|
-
if (!hasPendingReasons) {
|
|
11293
|
+
if (!hasPendingReasons && this.transactionKind !== TransactionKind.PurchaseOrder) {
|
|
11294
11294
|
if ((this.autoSave && saveTransaction && !this.manualSaveParam) || overrideSave) {
|
|
11295
11295
|
return this.saveTransactionAndCommit(response);
|
|
11296
11296
|
}
|
|
@@ -11396,7 +11396,7 @@ class PendingReasonService extends TransactionBaseService {
|
|
|
11396
11396
|
return __awaiter(this, void 0, void 0, function* () {
|
|
11397
11397
|
const response = yield this.connector.resolvePendingHeaderReason(pendingHeaderValues);
|
|
11398
11398
|
// this.rememberCurrentTransaction(response);
|
|
11399
|
-
return this.handleHeaderOperationStatuses(response);
|
|
11399
|
+
return this.handleHeaderOperationStatuses(response, false);
|
|
11400
11400
|
});
|
|
11401
11401
|
}
|
|
11402
11402
|
_confirmAction(uuid, reason, message, type) {
|
|
@@ -12321,7 +12321,7 @@ class TransactionService extends PendingReasonService {
|
|
|
12321
12321
|
return false;
|
|
12322
12322
|
});
|
|
12323
12323
|
}
|
|
12324
|
-
updateDiscountTransactionLine(uuid, lineUuid, type, discount, reason =
|
|
12324
|
+
updateDiscountTransactionLine(uuid, lineUuid, type, discount, reason = '', code = '') {
|
|
12325
12325
|
return __awaiter(this, void 0, void 0, function* () {
|
|
12326
12326
|
const response = yield this.connector.changeTransactionLineLineDiscount(uuid, lineUuid, type, discount, reason, code);
|
|
12327
12327
|
if (response) {
|
|
@@ -12925,7 +12925,7 @@ class TransactionService extends PendingReasonService {
|
|
|
12925
12925
|
return this.connector.getCashRegisters(branch, group, this.cashRegistersDirty);
|
|
12926
12926
|
}
|
|
12927
12927
|
getCashDrawers(cashDrawersRequest) {
|
|
12928
|
-
return this.connector.getCashDrawers(cashDrawersRequest);
|
|
12928
|
+
return this.connector.getCashDrawers(cashDrawersRequest, this.cashRegistersDirty);
|
|
12929
12929
|
}
|
|
12930
12930
|
getPriceLists() {
|
|
12931
12931
|
return this.connector.getPriceLists();
|
|
@@ -12950,8 +12950,9 @@ class TransactionService extends PendingReasonService {
|
|
|
12950
12950
|
if (transactionInfo && transactionInfo.branch) {
|
|
12951
12951
|
transactionBranch = transactionInfo.branch.relationNr;
|
|
12952
12952
|
}
|
|
12953
|
-
else if (this.currentTransaction && this.currentTransaction.transactionInfo && this.currentTransaction.transactionInfo.branch)
|
|
12953
|
+
else if (this.currentTransaction && this.currentTransaction.transactionInfo && this.currentTransaction.transactionInfo.branch) {
|
|
12954
12954
|
transactionBranch = this.currentTransaction.transactionInfo.branch.relationNr;
|
|
12955
|
+
}
|
|
12955
12956
|
else {
|
|
12956
12957
|
transactionBranch = this.currentBranch;
|
|
12957
12958
|
}
|
|
@@ -13992,7 +13993,7 @@ class TransactionService extends PendingReasonService {
|
|
|
13992
13993
|
});
|
|
13993
13994
|
}
|
|
13994
13995
|
else {
|
|
13995
|
-
throwError(
|
|
13996
|
+
throwError('Failed to create transaction');
|
|
13996
13997
|
}
|
|
13997
13998
|
}
|
|
13998
13999
|
else {
|
|
@@ -14004,7 +14005,7 @@ class TransactionService extends PendingReasonService {
|
|
|
14004
14005
|
TransactionService.ɵprov = i0.ɵɵdefineInjectable({ factory: function TransactionService_Factory() { return new TransactionService(i0.ɵɵinject(TransactionSettingsService), i0.ɵɵinject(TransactionDialogService), i0.ɵɵinject(TransactionConnectorService), i0.ɵɵinject(ArticleConnectorService), i0.ɵɵinject(DictionaryService), i0.ɵɵinject(TransactionEventService), i0.ɵɵinject(TransactionRelationService), i0.ɵɵinject(TransactionScreenConfigurationService), i0.ɵɵinject(i9.RelationService), i0.ɵɵinject(i10.SharedService)); }, token: TransactionService, providedIn: "root" });
|
|
14005
14006
|
TransactionService.decorators = [
|
|
14006
14007
|
{ type: Injectable, args: [{
|
|
14007
|
-
providedIn:
|
|
14008
|
+
providedIn: 'root'
|
|
14008
14009
|
},] }
|
|
14009
14010
|
];
|
|
14010
14011
|
|
|
@@ -48141,84 +48142,84 @@ PaymentComponent.decorators = [
|
|
|
48141
48142
|
{ type: Component, args: [{
|
|
48142
48143
|
selector: "co-payment",
|
|
48143
48144
|
template: `
|
|
48144
|
-
|
|
48145
|
-
|
|
48146
|
-
|
|
48147
|
-
|
|
48148
|
-
|
|
48149
|
-
|
|
48150
|
-
|
|
48151
|
-
|
|
48152
|
-
|
|
48153
|
-
|
|
48154
|
-
|
|
48155
|
-
|
|
48156
|
-
|
|
48157
|
-
|
|
48158
|
-
|
|
48159
|
-
|
|
48160
|
-
|
|
48161
|
-
|
|
48162
|
-
|
|
48163
|
-
|
|
48164
|
-
|
|
48165
|
-
|
|
48166
|
-
|
|
48167
|
-
|
|
48168
|
-
|
|
48169
|
-
|
|
48170
|
-
|
|
48171
|
-
|
|
48172
|
-
|
|
48173
|
-
|
|
48174
|
-
|
|
48175
|
-
|
|
48176
|
-
</div>
|
|
48177
|
-
</div>
|
|
48178
|
-
<div class="payment-to-pay-wrapper">
|
|
48179
|
-
<div class="payment-to-pay-total">
|
|
48180
|
-
<div class="payment-to-pay-header">
|
|
48181
|
-
<span class="payment-header-title" [textContent]="'TOTAL_AMOUNT_TO_PAY' | localize"></span>
|
|
48182
|
-
<span class="payment-total-pay" [textContent]="depositAmount ? (depositAmount | coCurrency: true) : (paymentService.amount | coCurrency: true)"></span>
|
|
48183
|
-
</div>
|
|
48184
|
-
<div class="payment-input-button-wrapper">
|
|
48185
|
-
<div class="payment-input-button">
|
|
48186
|
-
<co-payment-to-pay
|
|
48187
|
-
[amountToPay]="paymentService.amountToPay"></co-payment-to-pay>
|
|
48188
|
-
<div class="payment-to-pay-button">
|
|
48189
|
-
<co-button [iconData]="iconCacheService.getIcon(icons.CheckDuotone)" (click)="handlePayment()"
|
|
48190
|
-
[disabled]="paymentService.amountToPay === 0"></co-button>
|
|
48145
|
+
<div class="payment-wrapper">
|
|
48146
|
+
<div class="payment-methods-register-wrapper">
|
|
48147
|
+
<div class="payment-methods-wrapper">
|
|
48148
|
+
<div class="payment-methods-header">
|
|
48149
|
+
<span class="payment-header-title" [textContent]="'SELECT' | localize"></span>
|
|
48150
|
+
<!--span class="payment-header-title extra" [textContent]="'FREE' | localize:false"></span-->
|
|
48151
|
+
<span class="payment-header-title" [textContent]="'PAYMENT_METHOD' | localize:false"></span>
|
|
48152
|
+
</div>
|
|
48153
|
+
<div class="payment-methods co-small-scrollbar">
|
|
48154
|
+
<co-loader class="loader" *ngIf="showLoader"></co-loader>
|
|
48155
|
+
<ng-container *ngIf="!showLoader">
|
|
48156
|
+
<co-payment-tile *ngFor="let paymentMethod of paymentMethods; let index = index"
|
|
48157
|
+
[image]="paymentMethod.image"
|
|
48158
|
+
[description]="paymentMethod.payment.description"
|
|
48159
|
+
[selected]="paymentMethodIdx === index"
|
|
48160
|
+
(selectedChange)="paymentMethodSelected(paymentMethod.payment, index)"
|
|
48161
|
+
></co-payment-tile>
|
|
48162
|
+
</ng-container>
|
|
48163
|
+
</div>
|
|
48164
|
+
</div>
|
|
48165
|
+
<div class="payment-cash-register-wrapper" *ngIf="showCashRegisters">
|
|
48166
|
+
<div class="payment-cash-register-header">
|
|
48167
|
+
<span class="payment-header-title" [textContent]="'SELECT_CASH_REGISTER' | localize"></span>
|
|
48168
|
+
</div>
|
|
48169
|
+
<div class="payment-methods">
|
|
48170
|
+
<co-payment-tile *ngFor="let cashRegister of cashRegisters; let index = index"
|
|
48171
|
+
[icon]="cashRegister.icon"
|
|
48172
|
+
[description]="cashRegister.description"
|
|
48173
|
+
[selected]="cashRegisterIdx === index"
|
|
48174
|
+
(selectedChange)="cashRegisterSelected(cashRegister, index)"
|
|
48175
|
+
></co-payment-tile>
|
|
48176
|
+
</div>
|
|
48191
48177
|
</div>
|
|
48192
|
-
</div>
|
|
48193
|
-
<div class="payment-bookdate" *ngIf="showPaymentDate">
|
|
48194
|
-
<co-input-date [(model)]="paymentDate"></co-input-date>
|
|
48195
|
-
</div>
|
|
48196
|
-
<div class="payment-error-message" *ngIf="paymentService.statusMessage"
|
|
48197
|
-
[textContent]="paymentService.statusMessage"></div>
|
|
48198
48178
|
</div>
|
|
48199
|
-
|
|
48179
|
+
<div class="payment-to-pay-wrapper">
|
|
48180
|
+
<div class="payment-to-pay-total">
|
|
48181
|
+
<div class="payment-to-pay-header">
|
|
48182
|
+
<span class="payment-header-title" [textContent]="'TOTAL_AMOUNT_TO_PAY' | localize"></span>
|
|
48183
|
+
<span class="payment-total-pay" [textContent]="paymentService.amountToPay | coCurrency: true"></span>
|
|
48184
|
+
</div>
|
|
48185
|
+
<div class="payment-input-button-wrapper">
|
|
48186
|
+
<div class="payment-input-button">
|
|
48187
|
+
<co-payment-to-pay
|
|
48188
|
+
[amountToPay]="paymentService.amountToPay"></co-payment-to-pay>
|
|
48189
|
+
<div class="payment-to-pay-button">
|
|
48190
|
+
<co-button [iconData]="iconCacheService.getIcon(icons.CheckDuotone)" (click)="handlePayment()"
|
|
48191
|
+
[disabled]="paymentService.amountToPay === 0"></co-button>
|
|
48192
|
+
</div>
|
|
48193
|
+
</div>
|
|
48194
|
+
<div class="payment-bookdate" *ngIf="showPaymentDate">
|
|
48195
|
+
<co-input-date [(model)]="paymentDate"></co-input-date>
|
|
48196
|
+
</div>
|
|
48197
|
+
<div class="payment-error-message" *ngIf="paymentService.statusMessage"
|
|
48198
|
+
[textContent]="paymentService.statusMessage"></div>
|
|
48199
|
+
</div>
|
|
48200
|
+
</div>
|
|
48200
48201
|
|
|
48201
|
-
|
|
48202
|
-
|
|
48203
|
-
|
|
48204
|
-
|
|
48205
|
-
|
|
48206
|
-
|
|
48207
|
-
|
|
48208
|
-
|
|
48209
|
-
|
|
48210
|
-
|
|
48211
|
-
|
|
48212
|
-
|
|
48213
|
-
|
|
48214
|
-
|
|
48202
|
+
<div class="payment-deposit">
|
|
48203
|
+
<co-deposit-payment
|
|
48204
|
+
[branch]="branch"
|
|
48205
|
+
[transactionUuid]="transactionUuid"
|
|
48206
|
+
(depositPaymentFetched)="onDepositPaymentFetched($event)">
|
|
48207
|
+
</co-deposit-payment>
|
|
48208
|
+
</div>
|
|
48209
|
+
<co-key-pad class="payment-to-pay-keypad" *ngIf="showKeyPad"
|
|
48210
|
+
[showValue]="false"
|
|
48211
|
+
[emitModelChangeOnEnter]="false"
|
|
48212
|
+
[model]="paymentService.amountToPay"
|
|
48213
|
+
(modelChange)="handleKeyPadModelChange($event)"
|
|
48214
|
+
(enterClick)="handlePayment()"
|
|
48215
|
+
></co-key-pad>
|
|
48216
|
+
</div>
|
|
48215
48217
|
</div>
|
|
48216
|
-
|
|
48217
|
-
|
|
48218
|
-
|
|
48219
|
-
|
|
48220
|
-
|
|
48221
|
-
</co-dialog>
|
|
48218
|
+
<co-dialog *ngIf="paymentService.showPspQrCode" (closeClick)="paymentService.showPspQrCode = false">
|
|
48219
|
+
<co-payment-qr-code
|
|
48220
|
+
[qrCodeImage]="paymentService.qrCodeImage"
|
|
48221
|
+
></co-payment-qr-code>
|
|
48222
|
+
</co-dialog>
|
|
48222
48223
|
`,
|
|
48223
48224
|
providers: [
|
|
48224
48225
|
TransactionPaymentService
|
|
@@ -51287,6 +51288,7 @@ class TransactionHeaderPopupPaymentComponent extends TransactionHeaderPopupBaseC
|
|
|
51287
51288
|
this._paymentSubs.push(this.transactionEventService.transactionPaymentDone.subscribe(() => {
|
|
51288
51289
|
this._getDepositInfo();
|
|
51289
51290
|
this._getOutstandingAmounts();
|
|
51291
|
+
this.handleCloseDialog();
|
|
51290
51292
|
}), this.screenConfigService.configSet.subscribe((configObjects) => this._getObjectConfiguration(configObjects)));
|
|
51291
51293
|
this.showCashOnDelivery = yield this.transactionService.getInternalParameter(InternalParam.SellDirectlyFromSuppl);
|
|
51292
51294
|
});
|
|
@@ -51318,7 +51320,7 @@ class TransactionHeaderPopupPaymentComponent extends TransactionHeaderPopupBaseC
|
|
|
51318
51320
|
this.cashOnDelivery = value;
|
|
51319
51321
|
}
|
|
51320
51322
|
showPaymentButton() {
|
|
51321
|
-
return this.orderPaymentAnalysis.some(t => t.outstandingAmount
|
|
51323
|
+
return this.orderPaymentAnalysis.some(t => t.outstandingAmount !== 0) && this.chosenAmountToPay !== 0;
|
|
51322
51324
|
}
|
|
51323
51325
|
openPayment(event) {
|
|
51324
51326
|
var _a;
|
|
@@ -51326,8 +51328,8 @@ class TransactionHeaderPopupPaymentComponent extends TransactionHeaderPopupBaseC
|
|
|
51326
51328
|
event.preventDefault();
|
|
51327
51329
|
event.stopPropagation();
|
|
51328
51330
|
this.transactionIdToPay = (_a = this.transactionIdToPay) !== null && _a !== void 0 ? _a : this.transactionInfo.id;
|
|
51329
|
-
if (this.orderPaymentAnalysis.filter(payment => payment.transactionKind === this.transKind.SalesInvoice && payment.outstandingAmount
|
|
51330
|
-
const lastTransaction = this.orderPaymentAnalysis.filter(payment => payment.transactionKind === this.transKind.SalesInvoice && payment.outstandingAmount
|
|
51331
|
+
if (this.orderPaymentAnalysis.filter(payment => payment.transactionKind === this.transKind.SalesInvoice && payment.outstandingAmount !== 0).length === 1) {
|
|
51332
|
+
const lastTransaction = this.orderPaymentAnalysis.filter(payment => payment.transactionKind === this.transKind.SalesInvoice && payment.outstandingAmount !== 0)[0];
|
|
51331
51333
|
this.transactionIdToPay = lastTransaction.transactionId;
|
|
51332
51334
|
}
|
|
51333
51335
|
if (yield this.lockTransaction()) {
|
|
@@ -51400,20 +51402,20 @@ class TransactionHeaderPopupPaymentComponent extends TransactionHeaderPopupBaseC
|
|
|
51400
51402
|
}
|
|
51401
51403
|
}
|
|
51402
51404
|
_updateChosenAmountToPay() {
|
|
51403
|
-
if (this.orderPaymentAnalysis.some(t => t.outstandingAmount
|
|
51405
|
+
if (this.orderPaymentAnalysis.some(t => t.outstandingAmount !== 0) &&
|
|
51404
51406
|
this.orderPaymentAnalysis.filter(payment => payment.transactionKind === this.transKind.SalesInvoice).length === 0) {
|
|
51405
51407
|
this.chosenAmountToPay = this.paymentAnalysis.totalDeposit;
|
|
51406
51408
|
}
|
|
51407
51409
|
// Deposit only
|
|
51408
51410
|
if (this.orderPaymentAnalysis.filter(payment => payment.transactionKind === this.transKind.SalesOrder &&
|
|
51409
|
-
payment.outstandingAmount
|
|
51411
|
+
payment.outstandingAmount !== 0).length === 1) {
|
|
51410
51412
|
this.chosenAmountToPay = this.orderPaymentAnalysis[0].outstandingAmount;
|
|
51411
51413
|
}
|
|
51412
|
-
if (this.orderPaymentAnalysis.filter(payment => (payment.transactionKind === this.transKind.SalesInvoice) && (payment.outstandingAmount
|
|
51413
|
-
const remainingInvoice = this.orderPaymentAnalysis.filter(payment => (payment.transactionKind === this.transKind.SalesInvoice) && (payment.outstandingAmount
|
|
51414
|
+
if (this.orderPaymentAnalysis.filter(payment => (payment.transactionKind === this.transKind.SalesInvoice) && (payment.outstandingAmount !== 0)).length === 1) {
|
|
51415
|
+
const remainingInvoice = this.orderPaymentAnalysis.filter(payment => (payment.transactionKind === this.transKind.SalesInvoice) && (payment.outstandingAmount !== 0))[0];
|
|
51414
51416
|
this.chosenAmountToPay = remainingInvoice.outstandingAmount;
|
|
51415
51417
|
}
|
|
51416
|
-
if (this.orderPaymentAnalysis.filter(payment => (payment.transactionKind === this.transKind.SalesInvoice) && (payment.outstandingAmount
|
|
51418
|
+
if (this.orderPaymentAnalysis.filter(payment => (payment.transactionKind === this.transKind.SalesInvoice) && (payment.outstandingAmount !== 0)).length > 1) {
|
|
51417
51419
|
this.chosenAmountToPay = 0;
|
|
51418
51420
|
}
|
|
51419
51421
|
}
|
|
@@ -51590,7 +51592,7 @@ TransactionHeaderPopupPaymentComponent.decorators = [
|
|
|
51590
51592
|
<strong>{{ paymentInfo.paidAmount | coCurrency:true }}</strong>
|
|
51591
51593
|
</td>
|
|
51592
51594
|
<td>{{ paymentInfo.settledAmount | coCurrency:true }}</td>
|
|
51593
|
-
<td [class.outstanding]="paymentInfo.outstandingAmount
|
|
51595
|
+
<td [class.outstanding]="paymentInfo.outstandingAmount !== 0">
|
|
51594
51596
|
<strong>{{ paymentInfo.outstandingAmount | coCurrency:true }}</strong>
|
|
51595
51597
|
</td>
|
|
51596
51598
|
</tr>
|