@tomei/finance 0.6.40 → 0.6.41
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/dist/finance-company/finance-company.js +3 -3
- package/dist/finance-company/finance-company.js.map +1 -1
- package/dist/models/payment-paid-with.entity.d.ts +1 -1
- package/dist/models/payment-paid-with.entity.js +1 -1
- package/dist/models/payment-paid-with.entity.js.map +1 -1
- package/dist/payment/payment.js +1 -1
- package/dist/payment/payment.js.map +1 -1
- package/dist/payment-paid-with/interfaces/payment-paid-with.interface.d.ts +1 -1
- package/dist/payment-paid-with/payment-paid-with.d.ts +1 -1
- package/dist/payment-paid-with/payment-paid-with.js +1 -1
- package/dist/payment-paid-with/payment-paid-with.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/finance-company/finance-company.ts +3 -3
- package/src/models/payment-paid-with.entity.ts +1 -1
- package/src/payment/payment.ts +1 -1
- package/src/payment-paid-with/interfaces/payment-paid-with.interface.ts +1 -1
- package/src/payment-paid-with/payment-paid-with.ts +1 -1
package/package.json
CHANGED
|
@@ -1341,7 +1341,7 @@ export default class FinanceCompany extends ObjectBase {
|
|
|
1341
1341
|
Currency: paymentPaidWithItem.Currency,
|
|
1342
1342
|
Amount: paymentPaidWithItem.Amount,
|
|
1343
1343
|
Status: paymentPaidWithItem.Status,
|
|
1344
|
-
|
|
1344
|
+
TransactionId: paymentPaidWithItem.TransactionId,
|
|
1345
1345
|
RefBank: paymentPaidWithItem.RefBank,
|
|
1346
1346
|
RefName: paymentPaidWithItem.RefName,
|
|
1347
1347
|
RefNo: paymentPaidWithItem.RefNo,
|
|
@@ -1516,7 +1516,7 @@ export default class FinanceCompany extends ObjectBase {
|
|
|
1516
1516
|
Currency: paymentPaidWithItem.Currency,
|
|
1517
1517
|
Amount: paymentPaidWithItem.Amount,
|
|
1518
1518
|
Status: paymentPaidWithItem.Status,
|
|
1519
|
-
|
|
1519
|
+
TransactionId: paymentPaidWithItem.TransactionId,
|
|
1520
1520
|
RefBank: paymentPaidWithItem.RefBank,
|
|
1521
1521
|
RefName: paymentPaidWithItem.RefName,
|
|
1522
1522
|
RefNo: paymentPaidWithItem.RefNo,
|
|
@@ -1986,7 +1986,7 @@ export default class FinanceCompany extends ObjectBase {
|
|
|
1986
1986
|
Currency: paymentPaidWithItem.Currency,
|
|
1987
1987
|
Amount: paymentPaidWithItem.Amount,
|
|
1988
1988
|
Status: paymentPaidWithItem.Status,
|
|
1989
|
-
LedgerNo: paymentPaidWithItem.
|
|
1989
|
+
LedgerNo: paymentPaidWithItem.TransactionId,
|
|
1990
1990
|
RefBank: paymentPaidWithItem.RefBank,
|
|
1991
1991
|
RefName: paymentPaidWithItem.RefName,
|
|
1992
1992
|
RefNo: paymentPaidWithItem.RefNo,
|
package/src/payment/payment.ts
CHANGED
|
@@ -186,7 +186,7 @@ export default class Payment extends AccountSystemEntity {
|
|
|
186
186
|
ppw.Currency = paymentPaidWithItem.Currency;
|
|
187
187
|
ppw.Amount = paymentPaidWithItem.Amount;
|
|
188
188
|
ppw.Status = paymentPaidWithItem.Status;
|
|
189
|
-
ppw.
|
|
189
|
+
ppw.TransactionId = paymentPaidWithItem.TransactionId;
|
|
190
190
|
ppw.RefBank = paymentPaidWithItem.RefBank;
|
|
191
191
|
ppw.RefName = paymentPaidWithItem.RefName;
|
|
192
192
|
ppw.RefNo = paymentPaidWithItem.RefNo;
|