@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tomei/finance",
3
- "version": "0.3.41",
3
+ "version": "0.3.43",
4
4
  "description": "NestJS package for finance module",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -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',