@tomei/finance 0.3.41 → 0.3.43
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/customer/customer.js +1 -0
- package/dist/customer/customer.js.map +1 -1
- package/dist/finance-company/finance-company.js +2 -0
- package/dist/finance-company/finance-company.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/customer/customer.ts +1 -0
- package/src/finance-company/finance-company.ts +2 -0
package/package.json
CHANGED
package/src/customer/customer.ts
CHANGED
|
@@ -97,6 +97,7 @@ export default abstract class FinanceCustomerBase
|
|
|
97
97
|
});
|
|
98
98
|
if (financeCustomerData) {
|
|
99
99
|
const self = new this();
|
|
100
|
+
self.CustomerId = financeCustomerData.CustomerId;
|
|
100
101
|
self.CompanyId = sFinanceCompanyId;
|
|
101
102
|
self.CustSystemCode = custSystemCode;
|
|
102
103
|
self.CustSystemRefId = custSystemRefId;
|
|
@@ -1072,6 +1072,7 @@ export default class FinanceCompany extends ObjectBase {
|
|
|
1072
1072
|
Amount: payment.Amount,
|
|
1073
1073
|
Status: PaymentStatus.SUCCESSFUL,
|
|
1074
1074
|
PostedToAccSystemYN: 'N',
|
|
1075
|
+
ReceivedBy: payment.ReceivedBy,
|
|
1075
1076
|
UpdatedAt: new Date(),
|
|
1076
1077
|
UpdatedBy: loginUser.ObjectId,
|
|
1077
1078
|
CreatedAt: new Date(),
|
|
@@ -1214,6 +1215,7 @@ export default class FinanceCompany extends ObjectBase {
|
|
|
1214
1215
|
PaymentDate: payment.PaymentDate,
|
|
1215
1216
|
Description: payment.Description,
|
|
1216
1217
|
Currency: payment.Currency,
|
|
1218
|
+
ReceivedBy: payment.ReceivedBy,
|
|
1217
1219
|
Amount: payment.Amount,
|
|
1218
1220
|
Status: PaymentStatus.SUCCESSFUL,
|
|
1219
1221
|
PostedToAccSystemYN: 'N',
|