entities.forEach(entity => {
entity.Date = entity.Date ? new Date(entity.Date) : undefined;
entity.Valor = entity.Valor ? new Date(entity.Valor) : undefined;
+ entity.CreatedAt = entity.CreatedAt ? new Date(entity.CreatedAt) : undefined;
+ entity.UpdatedAt = entity.UpdatedAt ? new Date(entity.UpdatedAt) : undefined;
});
return entities;
}
diff --git a/codbex-payments/gen/codbex-payments/schema/codbex-payments.schema b/codbex-payments/gen/codbex-payments/schema/codbex-payments.schema
index 6f446f0..b9b7950 100644
--- a/codbex-payments/gen/codbex-payments/schema/codbex-payments.schema
+++ b/codbex-payments/gen/codbex-payments/schema/codbex-payments.schema
@@ -88,6 +88,28 @@
{
"type": "INTEGER",
"name": "CUSTOMERPAYMENT_PAYMENTMETHOD"
+ },
+ {
+ "type": "TIMESTAMP",
+ "nullable": true,
+ "name": "CUSTOMERPAYMENT_CREATEDAT"
+ },
+ {
+ "type": "VARCHAR",
+ "length": 20,
+ "nullable": true,
+ "name": "CUSTOMERPAYMENT_CREATEDBY"
+ },
+ {
+ "type": "TIMESTAMP",
+ "nullable": true,
+ "name": "CUSTOMERPAYMENT_UPDATEDAT"
+ },
+ {
+ "type": "VARCHAR",
+ "length": 20,
+ "nullable": true,
+ "name": "CUSTOMERPAYMENT_UPDATEDBY"
}
]
},
@@ -178,6 +200,28 @@
{
"type": "INTEGER",
"name": "SUPPLIERPAYMENT_PAYMENTMETHOD"
+ },
+ {
+ "type": "TIMESTAMP",
+ "nullable": true,
+ "name": "SUPPLIERPAYMENT_CREATEDAT"
+ },
+ {
+ "type": "VARCHAR",
+ "length": 20,
+ "nullable": true,
+ "name": "SUPPLIERPAYMENT_CREATEDBY"
+ },
+ {
+ "type": "TIMESTAMP",
+ "nullable": true,
+ "name": "SUPPLIERPAYMENT_UPDATEDAT"
+ },
+ {
+ "type": "VARCHAR",
+ "length": 20,
+ "nullable": true,
+ "name": "SUPPLIERPAYMENT_UPDATEDBY"
}
]
},
@@ -268,6 +312,28 @@
{
"type": "INTEGER",
"name": "EMPLOYEEPAYMENT_PAYMENTMETHOD"
+ },
+ {
+ "type": "TIMESTAMP",
+ "nullable": true,
+ "name": "EMPLOYEEPAYMENT_CREATEDAT"
+ },
+ {
+ "type": "VARCHAR",
+ "length": 20,
+ "nullable": true,
+ "name": "EMPLOYEEPAYMENT_CREATEDBY"
+ },
+ {
+ "type": "TIMESTAMP",
+ "nullable": true,
+ "name": "EMPLOYEEPAYMENT_UPDATEDAT"
+ },
+ {
+ "type": "VARCHAR",
+ "length": 20,
+ "nullable": true,
+ "name": "EMPLOYEEPAYMENT_UPDATEDBY"
}
]
},
@@ -369,6 +435,28 @@
"length": 255,
"nullable": true,
"name": "PAYMENTRECORD_DELETEDREASON"
+ },
+ {
+ "type": "TIMESTAMP",
+ "nullable": true,
+ "name": "PAYMENTRECORD_CREATEDAT"
+ },
+ {
+ "type": "VARCHAR",
+ "length": 20,
+ "nullable": true,
+ "name": "PAYMENTRECORD_CREATEDBY"
+ },
+ {
+ "type": "TIMESTAMP",
+ "nullable": true,
+ "name": "PAYMENTRECORD_UPDATEDAT"
+ },
+ {
+ "type": "VARCHAR",
+ "length": 20,
+ "nullable": true,
+ "name": "PAYMENTRECORD_UPDATEDBY"
}
]
},
@@ -436,6 +524,28 @@
"nullable": true,
"unique": true,
"name": "PAYMENTADJUSTMENT_UUID"
+ },
+ {
+ "type": "TIMESTAMP",
+ "nullable": true,
+ "name": "PAYMENTADJUSTMENT_CREATEDAT"
+ },
+ {
+ "type": "VARCHAR",
+ "length": 20,
+ "nullable": true,
+ "name": "PAYMENTADJUSTMENT_CREATEDBY"
+ },
+ {
+ "type": "TIMESTAMP",
+ "nullable": true,
+ "name": "PAYMENTADJUSTMENT_UPDATEDAT"
+ },
+ {
+ "type": "VARCHAR",
+ "length": 20,
+ "nullable": true,
+ "name": "PAYMENTADJUSTMENT_UPDATEDBY"
}
]
},
diff --git a/codbex-payments/gen/codbex-payments/ui/CustomerPayment/CustomerPayment/controller.js b/codbex-payments/gen/codbex-payments/ui/CustomerPayment/CustomerPayment/controller.js
index 90fb974..0f94907 100644
--- a/codbex-payments/gen/codbex-payments/ui/CustomerPayment/CustomerPayment/controller.js
+++ b/codbex-payments/gen/codbex-payments/ui/CustomerPayment/CustomerPayment/controller.js
@@ -109,6 +109,12 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
if (e.Valor) {
e.Valor = new Date(e.Valor);
}
+ if (e.CreatedAt) {
+ e.CreatedAt = new Date(e.CreatedAt);
+ }
+ if (e.UpdatedAt) {
+ e.UpdatedAt = new Date(e.UpdatedAt);
+ }
});
$scope.data = $scope.data.concat(response.data);
diff --git a/codbex-payments/gen/codbex-payments/ui/CustomerPayment/CustomerPayment/dialog-filter/controller.js b/codbex-payments/gen/codbex-payments/ui/CustomerPayment/CustomerPayment/dialog-filter/controller.js
index 9f088f8..11aeb67 100644
--- a/codbex-payments/gen/codbex-payments/ui/CustomerPayment/CustomerPayment/dialog-filter/controller.js
+++ b/codbex-payments/gen/codbex-payments/ui/CustomerPayment/CustomerPayment/dialog-filter/controller.js
@@ -19,6 +19,18 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale']).controlle
if (params?.entity?.ValorTo) {
params.entity.ValorTo = new Date(params.entity.ValorTo);
}
+ if (params?.entity?.CreatedAtFrom) {
+ params.entity.CreatedAtFrom = new Date(params.entity.CreatedAtFrom);
+ }
+ if (params?.entity?.CreatedAtTo) {
+ params.entity.CreatedAtTo = new Date(params.entity.CreatedAtTo);
+ }
+ if (params?.entity?.UpdatedAtFrom) {
+ params.entity.UpdatedAtFrom = new Date(params.entity.UpdatedAtFrom);
+ }
+ if (params?.entity?.UpdatedAtTo) {
+ params.entity.UpdatedAtTo = new Date(params.entity.UpdatedAtTo);
+ }
$scope.entity = params.entity ?? {};
$scope.selectedMainEntityKey = params.selectedMainEntityKey;
$scope.selectedMainEntityId = params.selectedMainEntityId;
@@ -110,6 +122,30 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale']).controlle
const condition = { propertyName: 'PaymentMethod', operator: 'EQ', value: entity.PaymentMethod };
filter.$filter.conditions.push(condition);
}
+ if (entity.CreatedAtFrom) {
+ const condition = { propertyName: 'CreatedAt', operator: 'GE', value: entity.CreatedAtFrom };
+ filter.$filter.conditions.push(condition);
+ }
+ if (entity.CreatedAtTo) {
+ const condition = { propertyName: 'CreatedAt', operator: 'LE', value: entity.CreatedAtTo };
+ filter.$filter.conditions.push(condition);
+ }
+ if (entity.CreatedBy) {
+ const condition = { propertyName: 'CreatedBy', operator: 'LIKE', value: `%${entity.CreatedBy}%` };
+ filter.$filter.conditions.push(condition);
+ }
+ if (entity.UpdatedAtFrom) {
+ const condition = { propertyName: 'UpdatedAt', operator: 'GE', value: entity.UpdatedAtFrom };
+ filter.$filter.conditions.push(condition);
+ }
+ if (entity.UpdatedAtTo) {
+ const condition = { propertyName: 'UpdatedAt', operator: 'LE', value: entity.UpdatedAtTo };
+ filter.$filter.conditions.push(condition);
+ }
+ if (entity.UpdatedBy) {
+ const condition = { propertyName: 'UpdatedBy', operator: 'LIKE', value: `%${entity.UpdatedBy}%` };
+ filter.$filter.conditions.push(condition);
+ }
Dialogs.postMessage({ topic: 'codbex-payments.CustomerPayment.CustomerPayment.entitySearch', data: {
entity: entity,
filter: filter
diff --git a/codbex-payments/gen/codbex-payments/ui/CustomerPayment/CustomerPayment/dialog-filter/index.html b/codbex-payments/gen/codbex-payments/ui/CustomerPayment/CustomerPayment/dialog-filter/index.html
index ced7655..5c3e9b1 100644
--- a/codbex-payments/gen/codbex-payments/ui/CustomerPayment/CustomerPayment/dialog-filter/index.html
+++ b/codbex-payments/gen/codbex-payments/ui/CustomerPayment/CustomerPayment/dialog-filter/index.html
@@ -282,6 +282,72 @@
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.CUSTOMERPAYMENT_CREATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.CUSTOMERPAYMENT_CREATEDBY' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.CUSTOMERPAYMENT_UPDATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.CUSTOMERPAYMENT_UPDATEDBY' | t }}
+
+
+
+
+
+
+
+
diff --git a/codbex-payments/gen/codbex-payments/ui/CustomerPayment/CustomerPayment/dialog-window/controller.js b/codbex-payments/gen/codbex-payments/ui/CustomerPayment/CustomerPayment/dialog-window/controller.js
index 539bd52..34bbfe3 100644
--- a/codbex-payments/gen/codbex-payments/ui/CustomerPayment/CustomerPayment/dialog-window/controller.js
+++ b/codbex-payments/gen/codbex-payments/ui/CustomerPayment/CustomerPayment/dialog-window/controller.js
@@ -37,6 +37,12 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
if (params.entity.Valor) {
params.entity.Valor = new Date(params.entity.Valor);
}
+ if (params.entity.CreatedAt) {
+ params.entity.CreatedAt = new Date(params.entity.CreatedAt);
+ }
+ if (params.entity.UpdatedAt) {
+ params.entity.UpdatedAt = new Date(params.entity.UpdatedAt);
+ }
$scope.entity = params.entity;
$scope.selectedMainEntityKey = params.selectedMainEntityKey;
$scope.selectedMainEntityId = params.selectedMainEntityId;
diff --git a/codbex-payments/gen/codbex-payments/ui/CustomerPayment/CustomerPayment/dialog-window/index.html b/codbex-payments/gen/codbex-payments/ui/CustomerPayment/CustomerPayment/dialog-window/index.html
index 9a63c8f..e6ff2a4 100644
--- a/codbex-payments/gen/codbex-payments/ui/CustomerPayment/CustomerPayment/dialog-window/index.html
+++ b/codbex-payments/gen/codbex-payments/ui/CustomerPayment/CustomerPayment/dialog-window/index.html
@@ -291,6 +291,88 @@
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.CUSTOMERPAYMENT_CREATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.CUSTOMERPAYMENT_CREATEDBY' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.CUSTOMERPAYMENT_UPDATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.CUSTOMERPAYMENT_UPDATEDBY' | t }}
+
+
+
+
+
+
+
+
diff --git a/codbex-payments/gen/codbex-payments/ui/CustomerPayment/CustomerPayment/index.html b/codbex-payments/gen/codbex-payments/ui/CustomerPayment/CustomerPayment/index.html
index 12d4d6b..8734548 100644
--- a/codbex-payments/gen/codbex-payments/ui/CustomerPayment/CustomerPayment/index.html
+++ b/codbex-payments/gen/codbex-payments/ui/CustomerPayment/CustomerPayment/index.html
@@ -51,7 +51,11 @@
{{next.Description}} |
{{optionsCompanyValue(next.Company)}} |
{{next.Name}} |
- {{optionsPaymentMethodValue(next.PaymentMethod)}}
+ {{optionsPaymentMethodValue(next.PaymentMethod)}} |
+ {{next.CreatedAt}} |
+ {{next.CreatedBy}} |
+ {{next.UpdatedAt}} |
+ {{next.UpdatedBy}}
diff --git a/codbex-payments/gen/codbex-payments/ui/CustomerPayment/CustomerPayment/main-details/controller.js b/codbex-payments/gen/codbex-payments/ui/CustomerPayment/CustomerPayment/main-details/controller.js
index c440ccb..3c77c9f 100644
--- a/codbex-payments/gen/codbex-payments/ui/CustomerPayment/CustomerPayment/main-details/controller.js
+++ b/codbex-payments/gen/codbex-payments/ui/CustomerPayment/CustomerPayment/main-details/controller.js
@@ -65,6 +65,12 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
if (data.entity.Valor) {
data.entity.Valor = new Date(data.entity.Valor);
}
+ if (data.entity.CreatedAt) {
+ data.entity.CreatedAt = new Date(data.entity.CreatedAt);
+ }
+ if (data.entity.UpdatedAt) {
+ data.entity.UpdatedAt = new Date(data.entity.UpdatedAt);
+ }
$scope.entity = data.entity;
$scope.optionsCustomer = data.optionsCustomer;
$scope.optionsCurrency = data.optionsCurrency;
@@ -91,6 +97,12 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
if (data.entity.Valor) {
data.entity.Valor = new Date(data.entity.Valor);
}
+ if (data.entity.CreatedAt) {
+ data.entity.CreatedAt = new Date(data.entity.CreatedAt);
+ }
+ if (data.entity.UpdatedAt) {
+ data.entity.UpdatedAt = new Date(data.entity.UpdatedAt);
+ }
$scope.entity = data.entity;
$scope.optionsCustomer = data.optionsCustomer;
$scope.optionsCurrency = data.optionsCurrency;
diff --git a/codbex-payments/gen/codbex-payments/ui/CustomerPayment/CustomerPayment/main-details/index.html b/codbex-payments/gen/codbex-payments/ui/CustomerPayment/CustomerPayment/main-details/index.html
index 5e516d1..7a48691 100644
--- a/codbex-payments/gen/codbex-payments/ui/CustomerPayment/CustomerPayment/main-details/index.html
+++ b/codbex-payments/gen/codbex-payments/ui/CustomerPayment/CustomerPayment/main-details/index.html
@@ -305,6 +305,88 @@
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.CUSTOMERPAYMENT_CREATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.CUSTOMERPAYMENT_CREATEDBY' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.CUSTOMERPAYMENT_UPDATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.CUSTOMERPAYMENT_UPDATEDBY' | t }}
+
+
+
+
+
+
+
+
diff --git a/codbex-payments/gen/codbex-payments/ui/EmployeePayment/EmployeePayment/controller.js b/codbex-payments/gen/codbex-payments/ui/EmployeePayment/EmployeePayment/controller.js
index 660ba10..da981ea 100644
--- a/codbex-payments/gen/codbex-payments/ui/EmployeePayment/EmployeePayment/controller.js
+++ b/codbex-payments/gen/codbex-payments/ui/EmployeePayment/EmployeePayment/controller.js
@@ -109,6 +109,12 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
if (e.Valor) {
e.Valor = new Date(e.Valor);
}
+ if (e.CreatedAt) {
+ e.CreatedAt = new Date(e.CreatedAt);
+ }
+ if (e.UpdatedAt) {
+ e.UpdatedAt = new Date(e.UpdatedAt);
+ }
});
$scope.data = $scope.data.concat(response.data);
diff --git a/codbex-payments/gen/codbex-payments/ui/EmployeePayment/EmployeePayment/dialog-filter/controller.js b/codbex-payments/gen/codbex-payments/ui/EmployeePayment/EmployeePayment/dialog-filter/controller.js
index ee0050c..b7c7d56 100644
--- a/codbex-payments/gen/codbex-payments/ui/EmployeePayment/EmployeePayment/dialog-filter/controller.js
+++ b/codbex-payments/gen/codbex-payments/ui/EmployeePayment/EmployeePayment/dialog-filter/controller.js
@@ -19,6 +19,18 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale']).controlle
if (params?.entity?.ValorTo) {
params.entity.ValorTo = new Date(params.entity.ValorTo);
}
+ if (params?.entity?.CreatedAtFrom) {
+ params.entity.CreatedAtFrom = new Date(params.entity.CreatedAtFrom);
+ }
+ if (params?.entity?.CreatedAtTo) {
+ params.entity.CreatedAtTo = new Date(params.entity.CreatedAtTo);
+ }
+ if (params?.entity?.UpdatedAtFrom) {
+ params.entity.UpdatedAtFrom = new Date(params.entity.UpdatedAtFrom);
+ }
+ if (params?.entity?.UpdatedAtTo) {
+ params.entity.UpdatedAtTo = new Date(params.entity.UpdatedAtTo);
+ }
$scope.entity = params.entity ?? {};
$scope.selectedMainEntityKey = params.selectedMainEntityKey;
$scope.selectedMainEntityId = params.selectedMainEntityId;
@@ -109,6 +121,30 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale']).controlle
const condition = { propertyName: 'PaymentMethod', operator: 'EQ', value: entity.PaymentMethod };
filter.$filter.conditions.push(condition);
}
+ if (entity.CreatedAtFrom) {
+ const condition = { propertyName: 'CreatedAt', operator: 'GE', value: entity.CreatedAtFrom };
+ filter.$filter.conditions.push(condition);
+ }
+ if (entity.CreatedAtTo) {
+ const condition = { propertyName: 'CreatedAt', operator: 'LE', value: entity.CreatedAtTo };
+ filter.$filter.conditions.push(condition);
+ }
+ if (entity.CreatedBy) {
+ const condition = { propertyName: 'CreatedBy', operator: 'LIKE', value: `%${entity.CreatedBy}%` };
+ filter.$filter.conditions.push(condition);
+ }
+ if (entity.UpdatedAtFrom) {
+ const condition = { propertyName: 'UpdatedAt', operator: 'GE', value: entity.UpdatedAtFrom };
+ filter.$filter.conditions.push(condition);
+ }
+ if (entity.UpdatedAtTo) {
+ const condition = { propertyName: 'UpdatedAt', operator: 'LE', value: entity.UpdatedAtTo };
+ filter.$filter.conditions.push(condition);
+ }
+ if (entity.UpdatedBy) {
+ const condition = { propertyName: 'UpdatedBy', operator: 'LIKE', value: `%${entity.UpdatedBy}%` };
+ filter.$filter.conditions.push(condition);
+ }
Dialogs.postMessage({ topic: 'codbex-payments.EmployeePayment.EmployeePayment.entitySearch', data: {
entity: entity,
filter: filter
diff --git a/codbex-payments/gen/codbex-payments/ui/EmployeePayment/EmployeePayment/dialog-filter/index.html b/codbex-payments/gen/codbex-payments/ui/EmployeePayment/EmployeePayment/dialog-filter/index.html
index 612a2d3..22cb9d0 100644
--- a/codbex-payments/gen/codbex-payments/ui/EmployeePayment/EmployeePayment/dialog-filter/index.html
+++ b/codbex-payments/gen/codbex-payments/ui/EmployeePayment/EmployeePayment/dialog-filter/index.html
@@ -283,6 +283,72 @@
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.EMPLOYEEPAYMENT_CREATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.EMPLOYEEPAYMENT_CREATEDBY' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.EMPLOYEEPAYMENT_UPDATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.EMPLOYEEPAYMENT_UPDATEDBY' | t }}
+
+
+
+
+
+
+
+
diff --git a/codbex-payments/gen/codbex-payments/ui/EmployeePayment/EmployeePayment/dialog-window/controller.js b/codbex-payments/gen/codbex-payments/ui/EmployeePayment/EmployeePayment/dialog-window/controller.js
index 29a925d..a139f35 100644
--- a/codbex-payments/gen/codbex-payments/ui/EmployeePayment/EmployeePayment/dialog-window/controller.js
+++ b/codbex-payments/gen/codbex-payments/ui/EmployeePayment/EmployeePayment/dialog-window/controller.js
@@ -37,6 +37,12 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
if (params.entity.Valor) {
params.entity.Valor = new Date(params.entity.Valor);
}
+ if (params.entity.CreatedAt) {
+ params.entity.CreatedAt = new Date(params.entity.CreatedAt);
+ }
+ if (params.entity.UpdatedAt) {
+ params.entity.UpdatedAt = new Date(params.entity.UpdatedAt);
+ }
$scope.entity = params.entity;
$scope.selectedMainEntityKey = params.selectedMainEntityKey;
$scope.selectedMainEntityId = params.selectedMainEntityId;
diff --git a/codbex-payments/gen/codbex-payments/ui/EmployeePayment/EmployeePayment/dialog-window/index.html b/codbex-payments/gen/codbex-payments/ui/EmployeePayment/EmployeePayment/dialog-window/index.html
index ef9583b..285fdf9 100644
--- a/codbex-payments/gen/codbex-payments/ui/EmployeePayment/EmployeePayment/dialog-window/index.html
+++ b/codbex-payments/gen/codbex-payments/ui/EmployeePayment/EmployeePayment/dialog-window/index.html
@@ -294,6 +294,88 @@
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.EMPLOYEEPAYMENT_CREATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.EMPLOYEEPAYMENT_CREATEDBY' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.EMPLOYEEPAYMENT_UPDATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.EMPLOYEEPAYMENT_UPDATEDBY' | t }}
+
+
+
+
+
+
+
+
diff --git a/codbex-payments/gen/codbex-payments/ui/EmployeePayment/EmployeePayment/index.html b/codbex-payments/gen/codbex-payments/ui/EmployeePayment/EmployeePayment/index.html
index c74af3f..81cd3f8 100644
--- a/codbex-payments/gen/codbex-payments/ui/EmployeePayment/EmployeePayment/index.html
+++ b/codbex-payments/gen/codbex-payments/ui/EmployeePayment/EmployeePayment/index.html
@@ -53,7 +53,11 @@
{{next.Name}} |
{{next.UUID}} |
{{next.Reference}} |
- {{next.PaymentMethod}}
+ {{next.PaymentMethod}} |
+ {{next.CreatedAt}} |
+ {{next.CreatedBy}} |
+ {{next.UpdatedAt}} |
+ {{next.UpdatedBy}}
diff --git a/codbex-payments/gen/codbex-payments/ui/EmployeePayment/EmployeePayment/main-details/controller.js b/codbex-payments/gen/codbex-payments/ui/EmployeePayment/EmployeePayment/main-details/controller.js
index 3e97e78..af8f0fe 100644
--- a/codbex-payments/gen/codbex-payments/ui/EmployeePayment/EmployeePayment/main-details/controller.js
+++ b/codbex-payments/gen/codbex-payments/ui/EmployeePayment/EmployeePayment/main-details/controller.js
@@ -64,6 +64,12 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
if (data.entity.Valor) {
data.entity.Valor = new Date(data.entity.Valor);
}
+ if (data.entity.CreatedAt) {
+ data.entity.CreatedAt = new Date(data.entity.CreatedAt);
+ }
+ if (data.entity.UpdatedAt) {
+ data.entity.UpdatedAt = new Date(data.entity.UpdatedAt);
+ }
$scope.entity = data.entity;
$scope.optionsEmployee = data.optionsEmployee;
$scope.optionsCurrency = data.optionsCurrency;
@@ -88,6 +94,12 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
if (data.entity.Valor) {
data.entity.Valor = new Date(data.entity.Valor);
}
+ if (data.entity.CreatedAt) {
+ data.entity.CreatedAt = new Date(data.entity.CreatedAt);
+ }
+ if (data.entity.UpdatedAt) {
+ data.entity.UpdatedAt = new Date(data.entity.UpdatedAt);
+ }
$scope.entity = data.entity;
$scope.optionsEmployee = data.optionsEmployee;
$scope.optionsCurrency = data.optionsCurrency;
diff --git a/codbex-payments/gen/codbex-payments/ui/EmployeePayment/EmployeePayment/main-details/index.html b/codbex-payments/gen/codbex-payments/ui/EmployeePayment/EmployeePayment/main-details/index.html
index 5ecaa1f..4865343 100644
--- a/codbex-payments/gen/codbex-payments/ui/EmployeePayment/EmployeePayment/main-details/index.html
+++ b/codbex-payments/gen/codbex-payments/ui/EmployeePayment/EmployeePayment/main-details/index.html
@@ -304,6 +304,88 @@
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.EMPLOYEEPAYMENT_CREATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.EMPLOYEEPAYMENT_CREATEDBY' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.EMPLOYEEPAYMENT_UPDATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.EMPLOYEEPAYMENT_UPDATEDBY' | t }}
+
+
+
+
+
+
+
+
diff --git a/codbex-payments/gen/codbex-payments/ui/PaymentAdjustment/PaymentAdjustment/controller.js b/codbex-payments/gen/codbex-payments/ui/PaymentAdjustment/PaymentAdjustment/controller.js
index ab7c52c..fbde1a2 100644
--- a/codbex-payments/gen/codbex-payments/ui/PaymentAdjustment/PaymentAdjustment/controller.js
+++ b/codbex-payments/gen/codbex-payments/ui/PaymentAdjustment/PaymentAdjustment/controller.js
@@ -109,6 +109,12 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
if (e.Valor) {
e.Valor = new Date(e.Valor);
}
+ if (e.CreatedAt) {
+ e.CreatedAt = new Date(e.CreatedAt);
+ }
+ if (e.UpdatedAt) {
+ e.UpdatedAt = new Date(e.UpdatedAt);
+ }
});
$scope.data = $scope.data.concat(response.data);
diff --git a/codbex-payments/gen/codbex-payments/ui/PaymentAdjustment/PaymentAdjustment/dialog-filter/controller.js b/codbex-payments/gen/codbex-payments/ui/PaymentAdjustment/PaymentAdjustment/dialog-filter/controller.js
index ecac1ee..1fa9591 100644
--- a/codbex-payments/gen/codbex-payments/ui/PaymentAdjustment/PaymentAdjustment/dialog-filter/controller.js
+++ b/codbex-payments/gen/codbex-payments/ui/PaymentAdjustment/PaymentAdjustment/dialog-filter/controller.js
@@ -19,6 +19,18 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale']).controlle
if (params?.entity?.ValorTo) {
params.entity.ValorTo = new Date(params.entity.ValorTo);
}
+ if (params?.entity?.CreatedAtFrom) {
+ params.entity.CreatedAtFrom = new Date(params.entity.CreatedAtFrom);
+ }
+ if (params?.entity?.CreatedAtTo) {
+ params.entity.CreatedAtTo = new Date(params.entity.CreatedAtTo);
+ }
+ if (params?.entity?.UpdatedAtFrom) {
+ params.entity.UpdatedAtFrom = new Date(params.entity.UpdatedAtFrom);
+ }
+ if (params?.entity?.UpdatedAtTo) {
+ params.entity.UpdatedAtTo = new Date(params.entity.UpdatedAtTo);
+ }
$scope.entity = params.entity ?? {};
$scope.selectedMainEntityKey = params.selectedMainEntityKey;
$scope.selectedMainEntityId = params.selectedMainEntityId;
@@ -76,6 +88,30 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale']).controlle
const condition = { propertyName: 'UUID', operator: 'LIKE', value: `%${entity.UUID}%` };
filter.$filter.conditions.push(condition);
}
+ if (entity.CreatedAtFrom) {
+ const condition = { propertyName: 'CreatedAt', operator: 'GE', value: entity.CreatedAtFrom };
+ filter.$filter.conditions.push(condition);
+ }
+ if (entity.CreatedAtTo) {
+ const condition = { propertyName: 'CreatedAt', operator: 'LE', value: entity.CreatedAtTo };
+ filter.$filter.conditions.push(condition);
+ }
+ if (entity.CreatedBy) {
+ const condition = { propertyName: 'CreatedBy', operator: 'LIKE', value: `%${entity.CreatedBy}%` };
+ filter.$filter.conditions.push(condition);
+ }
+ if (entity.UpdatedAtFrom) {
+ const condition = { propertyName: 'UpdatedAt', operator: 'GE', value: entity.UpdatedAtFrom };
+ filter.$filter.conditions.push(condition);
+ }
+ if (entity.UpdatedAtTo) {
+ const condition = { propertyName: 'UpdatedAt', operator: 'LE', value: entity.UpdatedAtTo };
+ filter.$filter.conditions.push(condition);
+ }
+ if (entity.UpdatedBy) {
+ const condition = { propertyName: 'UpdatedBy', operator: 'LIKE', value: `%${entity.UpdatedBy}%` };
+ filter.$filter.conditions.push(condition);
+ }
Dialogs.postMessage({ topic: 'codbex-payments.PaymentAdjustment.PaymentAdjustment.entitySearch', data: {
entity: entity,
filter: filter
diff --git a/codbex-payments/gen/codbex-payments/ui/PaymentAdjustment/PaymentAdjustment/dialog-filter/index.html b/codbex-payments/gen/codbex-payments/ui/PaymentAdjustment/PaymentAdjustment/dialog-filter/index.html
index 9658bdc..4a16534 100644
--- a/codbex-payments/gen/codbex-payments/ui/PaymentAdjustment/PaymentAdjustment/dialog-filter/index.html
+++ b/codbex-payments/gen/codbex-payments/ui/PaymentAdjustment/PaymentAdjustment/dialog-filter/index.html
@@ -150,6 +150,72 @@
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTADJUSTMENT_CREATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTADJUSTMENT_CREATEDBY' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTADJUSTMENT_UPDATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTADJUSTMENT_UPDATEDBY' | t }}
+
+
+
+
+
+
+
+
diff --git a/codbex-payments/gen/codbex-payments/ui/PaymentAdjustment/PaymentAdjustment/dialog-window/controller.js b/codbex-payments/gen/codbex-payments/ui/PaymentAdjustment/PaymentAdjustment/dialog-window/controller.js
index f7a319b..ace94ce 100644
--- a/codbex-payments/gen/codbex-payments/ui/PaymentAdjustment/PaymentAdjustment/dialog-window/controller.js
+++ b/codbex-payments/gen/codbex-payments/ui/PaymentAdjustment/PaymentAdjustment/dialog-window/controller.js
@@ -37,6 +37,12 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
if (params.entity.Valor) {
params.entity.Valor = new Date(params.entity.Valor);
}
+ if (params.entity.CreatedAt) {
+ params.entity.CreatedAt = new Date(params.entity.CreatedAt);
+ }
+ if (params.entity.UpdatedAt) {
+ params.entity.UpdatedAt = new Date(params.entity.UpdatedAt);
+ }
$scope.entity = params.entity;
$scope.selectedMainEntityKey = params.selectedMainEntityKey;
$scope.selectedMainEntityId = params.selectedMainEntityId;
diff --git a/codbex-payments/gen/codbex-payments/ui/PaymentAdjustment/PaymentAdjustment/dialog-window/index.html b/codbex-payments/gen/codbex-payments/ui/PaymentAdjustment/PaymentAdjustment/dialog-window/index.html
index 399b430..2b9cc74 100644
--- a/codbex-payments/gen/codbex-payments/ui/PaymentAdjustment/PaymentAdjustment/dialog-window/index.html
+++ b/codbex-payments/gen/codbex-payments/ui/PaymentAdjustment/PaymentAdjustment/dialog-window/index.html
@@ -136,6 +136,88 @@
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTADJUSTMENT_CREATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTADJUSTMENT_CREATEDBY' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTADJUSTMENT_UPDATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTADJUSTMENT_UPDATEDBY' | t }}
+
+
+
+
+
+
+
+
diff --git a/codbex-payments/gen/codbex-payments/ui/PaymentAdjustment/PaymentAdjustment/index.html b/codbex-payments/gen/codbex-payments/ui/PaymentAdjustment/PaymentAdjustment/index.html
index 52b97ae..3963230 100644
--- a/codbex-payments/gen/codbex-payments/ui/PaymentAdjustment/PaymentAdjustment/index.html
+++ b/codbex-payments/gen/codbex-payments/ui/PaymentAdjustment/PaymentAdjustment/index.html
@@ -45,7 +45,11 @@
{{optionsCurrencyValue(next.Currency)}} |
{{optionsCompanyValue(next.Company)}} |
{{next.Reason}} |
- {{next.UUID}}
+ {{next.UUID}} |
+ {{next.CreatedAt}} |
+ {{next.CreatedBy}} |
+ {{next.UpdatedAt}} |
+ {{next.UpdatedBy}}
diff --git a/codbex-payments/gen/codbex-payments/ui/PaymentAdjustment/PaymentAdjustment/main-details/controller.js b/codbex-payments/gen/codbex-payments/ui/PaymentAdjustment/PaymentAdjustment/main-details/controller.js
index af5b092..d5e2829 100644
--- a/codbex-payments/gen/codbex-payments/ui/PaymentAdjustment/PaymentAdjustment/main-details/controller.js
+++ b/codbex-payments/gen/codbex-payments/ui/PaymentAdjustment/PaymentAdjustment/main-details/controller.js
@@ -63,6 +63,12 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
if (data.entity.Valor) {
data.entity.Valor = new Date(data.entity.Valor);
}
+ if (data.entity.CreatedAt) {
+ data.entity.CreatedAt = new Date(data.entity.CreatedAt);
+ }
+ if (data.entity.UpdatedAt) {
+ data.entity.UpdatedAt = new Date(data.entity.UpdatedAt);
+ }
$scope.entity = data.entity;
$scope.optionsCurrency = data.optionsCurrency;
$scope.optionsCompany = data.optionsCompany;
@@ -85,6 +91,12 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
if (data.entity.Valor) {
data.entity.Valor = new Date(data.entity.Valor);
}
+ if (data.entity.CreatedAt) {
+ data.entity.CreatedAt = new Date(data.entity.CreatedAt);
+ }
+ if (data.entity.UpdatedAt) {
+ data.entity.UpdatedAt = new Date(data.entity.UpdatedAt);
+ }
$scope.entity = data.entity;
$scope.optionsCurrency = data.optionsCurrency;
$scope.optionsCompany = data.optionsCompany;
diff --git a/codbex-payments/gen/codbex-payments/ui/PaymentAdjustment/PaymentAdjustment/main-details/index.html b/codbex-payments/gen/codbex-payments/ui/PaymentAdjustment/PaymentAdjustment/main-details/index.html
index a4b4f3c..24f8243 100644
--- a/codbex-payments/gen/codbex-payments/ui/PaymentAdjustment/PaymentAdjustment/main-details/index.html
+++ b/codbex-payments/gen/codbex-payments/ui/PaymentAdjustment/PaymentAdjustment/main-details/index.html
@@ -142,6 +142,88 @@
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTADJUSTMENT_CREATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTADJUSTMENT_CREATEDBY' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTADJUSTMENT_UPDATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTADJUSTMENT_UPDATEDBY' | t }}
+
+
+
+
+
+
+
+
diff --git a/codbex-payments/gen/codbex-payments/ui/PaymentRecord/PaymentRecord/controller.js b/codbex-payments/gen/codbex-payments/ui/PaymentRecord/PaymentRecord/controller.js
index 09b5ca7..a001739 100644
--- a/codbex-payments/gen/codbex-payments/ui/PaymentRecord/PaymentRecord/controller.js
+++ b/codbex-payments/gen/codbex-payments/ui/PaymentRecord/PaymentRecord/controller.js
@@ -112,6 +112,12 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
if (e.DeletedAt) {
e.DeletedAt = new Date(e.DeletedAt);
}
+ if (e.CreatedAt) {
+ e.CreatedAt = new Date(e.CreatedAt);
+ }
+ if (e.UpdatedAt) {
+ e.UpdatedAt = new Date(e.UpdatedAt);
+ }
});
$scope.data = $scope.data.concat(response.data);
diff --git a/codbex-payments/gen/codbex-payments/ui/PaymentRecord/PaymentRecord/dialog-filter/controller.js b/codbex-payments/gen/codbex-payments/ui/PaymentRecord/PaymentRecord/dialog-filter/controller.js
index 3d5537d..47d8f8d 100644
--- a/codbex-payments/gen/codbex-payments/ui/PaymentRecord/PaymentRecord/dialog-filter/controller.js
+++ b/codbex-payments/gen/codbex-payments/ui/PaymentRecord/PaymentRecord/dialog-filter/controller.js
@@ -25,6 +25,18 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale']).controlle
if (params?.entity?.DeletedAtTo) {
params.entity.DeletedAtTo = new Date(params.entity.DeletedAtTo);
}
+ if (params?.entity?.CreatedAtFrom) {
+ params.entity.CreatedAtFrom = new Date(params.entity.CreatedAtFrom);
+ }
+ if (params?.entity?.CreatedAtTo) {
+ params.entity.CreatedAtTo = new Date(params.entity.CreatedAtTo);
+ }
+ if (params?.entity?.UpdatedAtFrom) {
+ params.entity.UpdatedAtFrom = new Date(params.entity.UpdatedAtFrom);
+ }
+ if (params?.entity?.UpdatedAtTo) {
+ params.entity.UpdatedAtTo = new Date(params.entity.UpdatedAtTo);
+ }
$scope.entity = params.entity ?? {};
$scope.selectedMainEntityKey = params.selectedMainEntityKey;
$scope.selectedMainEntityId = params.selectedMainEntityId;
@@ -128,6 +140,30 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale']).controlle
const condition = { propertyName: 'DeletedReason', operator: 'LIKE', value: `%${entity.DeletedReason}%` };
filter.$filter.conditions.push(condition);
}
+ if (entity.CreatedAtFrom) {
+ const condition = { propertyName: 'CreatedAt', operator: 'GE', value: entity.CreatedAtFrom };
+ filter.$filter.conditions.push(condition);
+ }
+ if (entity.CreatedAtTo) {
+ const condition = { propertyName: 'CreatedAt', operator: 'LE', value: entity.CreatedAtTo };
+ filter.$filter.conditions.push(condition);
+ }
+ if (entity.CreatedBy) {
+ const condition = { propertyName: 'CreatedBy', operator: 'LIKE', value: `%${entity.CreatedBy}%` };
+ filter.$filter.conditions.push(condition);
+ }
+ if (entity.UpdatedAtFrom) {
+ const condition = { propertyName: 'UpdatedAt', operator: 'GE', value: entity.UpdatedAtFrom };
+ filter.$filter.conditions.push(condition);
+ }
+ if (entity.UpdatedAtTo) {
+ const condition = { propertyName: 'UpdatedAt', operator: 'LE', value: entity.UpdatedAtTo };
+ filter.$filter.conditions.push(condition);
+ }
+ if (entity.UpdatedBy) {
+ const condition = { propertyName: 'UpdatedBy', operator: 'LIKE', value: `%${entity.UpdatedBy}%` };
+ filter.$filter.conditions.push(condition);
+ }
Dialogs.postMessage({ topic: 'codbex-payments.PaymentRecord.PaymentRecord.entitySearch', data: {
entity: entity,
filter: filter
diff --git a/codbex-payments/gen/codbex-payments/ui/PaymentRecord/PaymentRecord/dialog-filter/index.html b/codbex-payments/gen/codbex-payments/ui/PaymentRecord/PaymentRecord/dialog-filter/index.html
index 92f771a..3e98e5b 100644
--- a/codbex-payments/gen/codbex-payments/ui/PaymentRecord/PaymentRecord/dialog-filter/index.html
+++ b/codbex-payments/gen/codbex-payments/ui/PaymentRecord/PaymentRecord/dialog-filter/index.html
@@ -311,6 +311,72 @@
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTRECORD_CREATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTRECORD_CREATEDBY' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTRECORD_UPDATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTRECORD_UPDATEDBY' | t }}
+
+
+
+
+
+
+
+
diff --git a/codbex-payments/gen/codbex-payments/ui/PaymentRecord/PaymentRecord/dialog-window/controller.js b/codbex-payments/gen/codbex-payments/ui/PaymentRecord/PaymentRecord/dialog-window/controller.js
index b63e39f..6a2d080 100644
--- a/codbex-payments/gen/codbex-payments/ui/PaymentRecord/PaymentRecord/dialog-window/controller.js
+++ b/codbex-payments/gen/codbex-payments/ui/PaymentRecord/PaymentRecord/dialog-window/controller.js
@@ -40,6 +40,12 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
if (params.entity.DeletedAt) {
params.entity.DeletedAt = new Date(params.entity.DeletedAt);
}
+ if (params.entity.CreatedAt) {
+ params.entity.CreatedAt = new Date(params.entity.CreatedAt);
+ }
+ if (params.entity.UpdatedAt) {
+ params.entity.UpdatedAt = new Date(params.entity.UpdatedAt);
+ }
$scope.entity = params.entity;
$scope.selectedMainEntityKey = params.selectedMainEntityKey;
$scope.selectedMainEntityId = params.selectedMainEntityId;
diff --git a/codbex-payments/gen/codbex-payments/ui/PaymentRecord/PaymentRecord/dialog-window/index.html b/codbex-payments/gen/codbex-payments/ui/PaymentRecord/PaymentRecord/dialog-window/index.html
index 2e84454..185538b 100644
--- a/codbex-payments/gen/codbex-payments/ui/PaymentRecord/PaymentRecord/dialog-window/index.html
+++ b/codbex-payments/gen/codbex-payments/ui/PaymentRecord/PaymentRecord/dialog-window/index.html
@@ -330,6 +330,88 @@
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTRECORD_CREATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTRECORD_CREATEDBY' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTRECORD_UPDATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTRECORD_UPDATEDBY' | t }}
+
+
+
+
+
+
+
+
diff --git a/codbex-payments/gen/codbex-payments/ui/PaymentRecord/PaymentRecord/index.html b/codbex-payments/gen/codbex-payments/ui/PaymentRecord/PaymentRecord/index.html
index d4aa89f..1bc0682 100644
--- a/codbex-payments/gen/codbex-payments/ui/PaymentRecord/PaymentRecord/index.html
+++ b/codbex-payments/gen/codbex-payments/ui/PaymentRecord/PaymentRecord/index.html
@@ -55,7 +55,11 @@
{{next.Reference}} |
{{next.Deleted}} |
{{next.DeletedAt}} |
- {{next.DeletedReason}}
+ {{next.DeletedReason}} |
+ {{next.CreatedAt}} |
+ {{next.CreatedBy}} |
+ {{next.UpdatedAt}} |
+ {{next.UpdatedBy}}
diff --git a/codbex-payments/gen/codbex-payments/ui/PaymentRecord/PaymentRecord/main-details/controller.js b/codbex-payments/gen/codbex-payments/ui/PaymentRecord/PaymentRecord/main-details/controller.js
index 5e416e0..08329d6 100644
--- a/codbex-payments/gen/codbex-payments/ui/PaymentRecord/PaymentRecord/main-details/controller.js
+++ b/codbex-payments/gen/codbex-payments/ui/PaymentRecord/PaymentRecord/main-details/controller.js
@@ -68,6 +68,12 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
if (data.entity.DeletedAt) {
data.entity.DeletedAt = new Date(data.entity.DeletedAt);
}
+ if (data.entity.CreatedAt) {
+ data.entity.CreatedAt = new Date(data.entity.CreatedAt);
+ }
+ if (data.entity.UpdatedAt) {
+ data.entity.UpdatedAt = new Date(data.entity.UpdatedAt);
+ }
$scope.entity = data.entity;
$scope.optionsCurrency = data.optionsCurrency;
$scope.optionsPaymentDirection = data.optionsPaymentDirection;
@@ -97,6 +103,12 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
if (data.entity.DeletedAt) {
data.entity.DeletedAt = new Date(data.entity.DeletedAt);
}
+ if (data.entity.CreatedAt) {
+ data.entity.CreatedAt = new Date(data.entity.CreatedAt);
+ }
+ if (data.entity.UpdatedAt) {
+ data.entity.UpdatedAt = new Date(data.entity.UpdatedAt);
+ }
$scope.entity = data.entity;
$scope.optionsCurrency = data.optionsCurrency;
$scope.optionsPaymentDirection = data.optionsPaymentDirection;
diff --git a/codbex-payments/gen/codbex-payments/ui/PaymentRecord/PaymentRecord/main-details/index.html b/codbex-payments/gen/codbex-payments/ui/PaymentRecord/PaymentRecord/main-details/index.html
index 8624285..0a6073e 100644
--- a/codbex-payments/gen/codbex-payments/ui/PaymentRecord/PaymentRecord/main-details/index.html
+++ b/codbex-payments/gen/codbex-payments/ui/PaymentRecord/PaymentRecord/main-details/index.html
@@ -344,6 +344,88 @@
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTRECORD_CREATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTRECORD_CREATEDBY' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTRECORD_UPDATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTRECORD_UPDATEDBY' | t }}
+
+
+
+
+
+
+
+
diff --git a/codbex-payments/gen/codbex-payments/ui/Reports/PaymentRecord/controller.js b/codbex-payments/gen/codbex-payments/ui/Reports/PaymentRecord/controller.js
index 448b44d..331c825 100644
--- a/codbex-payments/gen/codbex-payments/ui/Reports/PaymentRecord/controller.js
+++ b/codbex-payments/gen/codbex-payments/ui/Reports/PaymentRecord/controller.js
@@ -94,6 +94,12 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
if (e.DeletedAt) {
e.DeletedAt = new Date(e.DeletedAt);
}
+ if (e.CreatedAt) {
+ e.CreatedAt = new Date(e.CreatedAt);
+ }
+ if (e.UpdatedAt) {
+ e.UpdatedAt = new Date(e.UpdatedAt);
+ }
});
$scope.data = response.data;
diff --git a/codbex-payments/gen/codbex-payments/ui/Reports/PaymentRecord/dialog-filter/controller.js b/codbex-payments/gen/codbex-payments/ui/Reports/PaymentRecord/dialog-filter/controller.js
index ee7b114..c5145c9 100644
--- a/codbex-payments/gen/codbex-payments/ui/Reports/PaymentRecord/dialog-filter/controller.js
+++ b/codbex-payments/gen/codbex-payments/ui/Reports/PaymentRecord/dialog-filter/controller.js
@@ -25,6 +25,18 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale']).controlle
if (params?.entity?.DeletedAtTo) {
params.entity.DeletedAtTo = new Date(params.entity.DeletedAtTo);
}
+ if (params?.entity?.CreatedAtFrom) {
+ params.entity.CreatedAtFrom = new Date(params.entity.CreatedAtFrom);
+ }
+ if (params?.entity?.CreatedAtTo) {
+ params.entity.CreatedAtTo = new Date(params.entity.CreatedAtTo);
+ }
+ if (params?.entity?.UpdatedAtFrom) {
+ params.entity.UpdatedAtFrom = new Date(params.entity.UpdatedAtFrom);
+ }
+ if (params?.entity?.UpdatedAtTo) {
+ params.entity.UpdatedAtTo = new Date(params.entity.UpdatedAtTo);
+ }
$scope.entity = params.entity ?? {};
$scope.selectedMainEntityKey = params.selectedMainEntityKey;
$scope.selectedMainEntityId = params.selectedMainEntityId;
@@ -128,6 +140,30 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale']).controlle
const condition = { propertyName: 'DeletedReason', operator: 'LIKE', value: `%${entity.DeletedReason}%` };
filter.$filter.conditions.push(condition);
}
+ if (entity.CreatedAtFrom) {
+ const condition = { propertyName: 'CreatedAt', operator: 'GE', value: entity.CreatedAtFrom };
+ filter.$filter.conditions.push(condition);
+ }
+ if (entity.CreatedAtTo) {
+ const condition = { propertyName: 'CreatedAt', operator: 'LE', value: entity.CreatedAtTo };
+ filter.$filter.conditions.push(condition);
+ }
+ if (entity.CreatedBy) {
+ const condition = { propertyName: 'CreatedBy', operator: 'LIKE', value: `%${entity.CreatedBy}%` };
+ filter.$filter.conditions.push(condition);
+ }
+ if (entity.UpdatedAtFrom) {
+ const condition = { propertyName: 'UpdatedAt', operator: 'GE', value: entity.UpdatedAtFrom };
+ filter.$filter.conditions.push(condition);
+ }
+ if (entity.UpdatedAtTo) {
+ const condition = { propertyName: 'UpdatedAt', operator: 'LE', value: entity.UpdatedAtTo };
+ filter.$filter.conditions.push(condition);
+ }
+ if (entity.UpdatedBy) {
+ const condition = { propertyName: 'UpdatedBy', operator: 'LIKE', value: `%${entity.UpdatedBy}%` };
+ filter.$filter.conditions.push(condition);
+ }
Dialogs.postMessage({ topic: 'codbex-payments.PaymentRecord.PaymentRecord.entitySearch', data: {
entity: entity,
filter: filter
diff --git a/codbex-payments/gen/codbex-payments/ui/Reports/PaymentRecord/dialog-filter/index.html b/codbex-payments/gen/codbex-payments/ui/Reports/PaymentRecord/dialog-filter/index.html
index 95919f8..5e4d6fa 100644
--- a/codbex-payments/gen/codbex-payments/ui/Reports/PaymentRecord/dialog-filter/index.html
+++ b/codbex-payments/gen/codbex-payments/ui/Reports/PaymentRecord/dialog-filter/index.html
@@ -306,6 +306,72 @@
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTRECORD_CREATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTRECORD_CREATEDBY' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTRECORD_UPDATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTRECORD_UPDATEDBY' | t }}
+
+
+
+
+
+
+
+
diff --git a/codbex-payments/gen/codbex-payments/ui/Reports/PaymentRecord/dialog-print/controller.js b/codbex-payments/gen/codbex-payments/ui/Reports/PaymentRecord/dialog-print/controller.js
index 90b4588..bf19960 100644
--- a/codbex-payments/gen/codbex-payments/ui/Reports/PaymentRecord/dialog-print/controller.js
+++ b/codbex-payments/gen/codbex-payments/ui/Reports/PaymentRecord/dialog-print/controller.js
@@ -100,6 +100,30 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
const condition = { propertyName: 'DeletedReason', operator: 'LIKE', value: `%${entity.DeletedReason}%` };
filter.$filter.conditions.push(condition);
}
+ if (entity.CreatedAtFrom) {
+ const condition = { propertyName: 'CreatedAt', operator: 'GE', value: entity.CreatedAtFrom };
+ filter.$filter.conditions.push(condition);
+ }
+ if (entity.CreatedAtTo) {
+ const condition = { propertyName: 'CreatedAt', operator: 'LE', value: entity.CreatedAtTo };
+ filter.$filter.conditions.push(condition);
+ }
+ if (entity.CreatedBy) {
+ const condition = { propertyName: 'CreatedBy', operator: 'LIKE', value: `%${entity.CreatedBy}%` };
+ filter.$filter.conditions.push(condition);
+ }
+ if (entity.UpdatedAtFrom) {
+ const condition = { propertyName: 'UpdatedAt', operator: 'GE', value: entity.UpdatedAtFrom };
+ filter.$filter.conditions.push(condition);
+ }
+ if (entity.UpdatedAtTo) {
+ const condition = { propertyName: 'UpdatedAt', operator: 'LE', value: entity.UpdatedAtTo };
+ filter.$filter.conditions.push(condition);
+ }
+ if (entity.UpdatedBy) {
+ const condition = { propertyName: 'UpdatedBy', operator: 'LIKE', value: `%${entity.UpdatedBy}%` };
+ filter.$filter.conditions.push(condition);
+ }
$scope.filter = filter;
@@ -130,6 +154,12 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
if (e.DeletedAt) {
e.DeletedAt = new Date(e.DeletedAt);
}
+ if (e.CreatedAt) {
+ e.CreatedAt = new Date(e.CreatedAt);
+ }
+ if (e.UpdatedAt) {
+ e.UpdatedAt = new Date(e.UpdatedAt);
+ }
});
$scope.data = response.data;
diff --git a/codbex-payments/gen/codbex-payments/ui/Reports/PaymentRecord/dialog-print/index.html b/codbex-payments/gen/codbex-payments/ui/Reports/PaymentRecord/dialog-print/index.html
index a9b0493..5703623 100644
--- a/codbex-payments/gen/codbex-payments/ui/Reports/PaymentRecord/dialog-print/index.html
+++ b/codbex-payments/gen/codbex-payments/ui/Reports/PaymentRecord/dialog-print/index.html
@@ -37,6 +37,10 @@
{{ 'codbex-payments:codbex-payments-model.t.PAYMENTRECORD_DELETED' | t:'Deleted' }} |
{{ 'codbex-payments:codbex-payments-model.t.PAYMENTRECORD_DELETEDAT' | t:'DeletedAt' }} |
{{ 'codbex-payments:codbex-payments-model.t.PAYMENTRECORD_DELETEDREASON' | t:'DeletedReason' }} |
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTRECORD_CREATEDAT' | t:'CreatedAt' }} |
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTRECORD_CREATEDBY' | t:'CreatedBy' }} |
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTRECORD_UPDATEDAT' | t:'UpdatedAt' }} |
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTRECORD_UPDATEDBY' | t:'UpdatedBy' }} |
@@ -68,6 +72,10 @@
{{next.DeletedAt}} |
{{next.DeletedReason}} |
+ {{next.CreatedAt}} |
+ {{next.CreatedBy}} |
+ {{next.UpdatedAt}} |
+ {{next.UpdatedBy}} |
diff --git a/codbex-payments/gen/codbex-payments/ui/Reports/PaymentRecord/dialog-window/controller.js b/codbex-payments/gen/codbex-payments/ui/Reports/PaymentRecord/dialog-window/controller.js
index 1f29631..cfa3989 100644
--- a/codbex-payments/gen/codbex-payments/ui/Reports/PaymentRecord/dialog-window/controller.js
+++ b/codbex-payments/gen/codbex-payments/ui/Reports/PaymentRecord/dialog-window/controller.js
@@ -14,6 +14,12 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale']).controlle
if (params.entity.DeletedAt) {
params.entity.DeletedAt = new Date(params.entity.DeletedAt);
}
+ if (params.entity.CreatedAt) {
+ params.entity.CreatedAt = new Date(params.entity.CreatedAt);
+ }
+ if (params.entity.UpdatedAt) {
+ params.entity.UpdatedAt = new Date(params.entity.UpdatedAt);
+ }
$scope.entity = params.entity;
$scope.optionsCurrency = params.optionsCurrency;
$scope.optionsPaymentDirection = params.optionsPaymentDirection;
diff --git a/codbex-payments/gen/codbex-payments/ui/Reports/PaymentRecord/dialog-window/index.html b/codbex-payments/gen/codbex-payments/ui/Reports/PaymentRecord/dialog-window/index.html
index 8c22be1..8a9c118 100644
--- a/codbex-payments/gen/codbex-payments/ui/Reports/PaymentRecord/dialog-window/index.html
+++ b/codbex-payments/gen/codbex-payments/ui/Reports/PaymentRecord/dialog-window/index.html
@@ -263,6 +263,66 @@
placeholder="{{ 'codbex-payments:codbex-payments-model.messages.inputEnter' | t:{'name':'$t(codbex-payments:codbex-payments-model.t.PAYMENTRECORD_DELETEDREASON)'} }}">
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTRECORD_CREATEDAT' | t }}
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTRECORD_CREATEDBY' | t }}
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTRECORD_UPDATEDAT' | t }}
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTRECORD_UPDATEDBY' | t }}
+
+
+
+
+
diff --git a/codbex-payments/gen/codbex-payments/ui/Reports/PaymentRecord/index.html b/codbex-payments/gen/codbex-payments/ui/Reports/PaymentRecord/index.html
index 16ba646..e340fa8 100644
--- a/codbex-payments/gen/codbex-payments/ui/Reports/PaymentRecord/index.html
+++ b/codbex-payments/gen/codbex-payments/ui/Reports/PaymentRecord/index.html
@@ -41,6 +41,10 @@
{{ 'codbex-payments:codbex-payments-model.t.PAYMENTRECORD_DELETED' | t:'Deleted' }} |
{{ 'codbex-payments:codbex-payments-model.t.PAYMENTRECORD_DELETEDAT' | t:'DeletedAt' }} |
{{ 'codbex-payments:codbex-payments-model.t.PAYMENTRECORD_DELETEDREASON' | t:'DeletedReason' }} |
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTRECORD_CREATEDAT' | t:'CreatedAt' }} |
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTRECORD_CREATEDBY' | t:'CreatedBy' }} |
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTRECORD_UPDATEDAT' | t:'UpdatedAt' }} |
+ {{ 'codbex-payments:codbex-payments-model.t.PAYMENTRECORD_UPDATEDBY' | t:'UpdatedBy' }} |
|
@@ -82,6 +86,10 @@
{{next.DeletedAt}} |
{{next.DeletedReason}} |
+ {{next.CreatedAt}} |
+ {{next.CreatedBy}} |
+ {{next.UpdatedAt}} |
+ {{next.UpdatedBy}} |
diff --git a/codbex-payments/gen/codbex-payments/ui/SupplierPayment/SupplierPayment/controller.js b/codbex-payments/gen/codbex-payments/ui/SupplierPayment/SupplierPayment/controller.js
index 19679f2..8d9495b 100644
--- a/codbex-payments/gen/codbex-payments/ui/SupplierPayment/SupplierPayment/controller.js
+++ b/codbex-payments/gen/codbex-payments/ui/SupplierPayment/SupplierPayment/controller.js
@@ -109,6 +109,12 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
if (e.Valor) {
e.Valor = new Date(e.Valor);
}
+ if (e.CreatedAt) {
+ e.CreatedAt = new Date(e.CreatedAt);
+ }
+ if (e.UpdatedAt) {
+ e.UpdatedAt = new Date(e.UpdatedAt);
+ }
});
$scope.data = $scope.data.concat(response.data);
diff --git a/codbex-payments/gen/codbex-payments/ui/SupplierPayment/SupplierPayment/dialog-filter/controller.js b/codbex-payments/gen/codbex-payments/ui/SupplierPayment/SupplierPayment/dialog-filter/controller.js
index 6fe67f5..63d9d28 100644
--- a/codbex-payments/gen/codbex-payments/ui/SupplierPayment/SupplierPayment/dialog-filter/controller.js
+++ b/codbex-payments/gen/codbex-payments/ui/SupplierPayment/SupplierPayment/dialog-filter/controller.js
@@ -19,6 +19,18 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale']).controlle
if (params?.entity?.ValorTo) {
params.entity.ValorTo = new Date(params.entity.ValorTo);
}
+ if (params?.entity?.CreatedAtFrom) {
+ params.entity.CreatedAtFrom = new Date(params.entity.CreatedAtFrom);
+ }
+ if (params?.entity?.CreatedAtTo) {
+ params.entity.CreatedAtTo = new Date(params.entity.CreatedAtTo);
+ }
+ if (params?.entity?.UpdatedAtFrom) {
+ params.entity.UpdatedAtFrom = new Date(params.entity.UpdatedAtFrom);
+ }
+ if (params?.entity?.UpdatedAtTo) {
+ params.entity.UpdatedAtTo = new Date(params.entity.UpdatedAtTo);
+ }
$scope.entity = params.entity ?? {};
$scope.selectedMainEntityKey = params.selectedMainEntityKey;
$scope.selectedMainEntityId = params.selectedMainEntityId;
@@ -109,6 +121,30 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale']).controlle
const condition = { propertyName: 'PaymentMethod', operator: 'EQ', value: entity.PaymentMethod };
filter.$filter.conditions.push(condition);
}
+ if (entity.CreatedAtFrom) {
+ const condition = { propertyName: 'CreatedAt', operator: 'GE', value: entity.CreatedAtFrom };
+ filter.$filter.conditions.push(condition);
+ }
+ if (entity.CreatedAtTo) {
+ const condition = { propertyName: 'CreatedAt', operator: 'LE', value: entity.CreatedAtTo };
+ filter.$filter.conditions.push(condition);
+ }
+ if (entity.CreatedBy) {
+ const condition = { propertyName: 'CreatedBy', operator: 'LIKE', value: `%${entity.CreatedBy}%` };
+ filter.$filter.conditions.push(condition);
+ }
+ if (entity.UpdatedAtFrom) {
+ const condition = { propertyName: 'UpdatedAt', operator: 'GE', value: entity.UpdatedAtFrom };
+ filter.$filter.conditions.push(condition);
+ }
+ if (entity.UpdatedAtTo) {
+ const condition = { propertyName: 'UpdatedAt', operator: 'LE', value: entity.UpdatedAtTo };
+ filter.$filter.conditions.push(condition);
+ }
+ if (entity.UpdatedBy) {
+ const condition = { propertyName: 'UpdatedBy', operator: 'LIKE', value: `%${entity.UpdatedBy}%` };
+ filter.$filter.conditions.push(condition);
+ }
Dialogs.postMessage({ topic: 'codbex-payments.SupplierPayment.SupplierPayment.entitySearch', data: {
entity: entity,
filter: filter
diff --git a/codbex-payments/gen/codbex-payments/ui/SupplierPayment/SupplierPayment/dialog-filter/index.html b/codbex-payments/gen/codbex-payments/ui/SupplierPayment/SupplierPayment/dialog-filter/index.html
index 63d05b7..df0890f 100644
--- a/codbex-payments/gen/codbex-payments/ui/SupplierPayment/SupplierPayment/dialog-filter/index.html
+++ b/codbex-payments/gen/codbex-payments/ui/SupplierPayment/SupplierPayment/dialog-filter/index.html
@@ -283,6 +283,72 @@
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.SUPPLIERPAYMENT_CREATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.SUPPLIERPAYMENT_CREATEDBY' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.SUPPLIERPAYMENT_UPDATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.SUPPLIERPAYMENT_UPDATEDBY' | t }}
+
+
+
+
+
+
+
+
diff --git a/codbex-payments/gen/codbex-payments/ui/SupplierPayment/SupplierPayment/dialog-window/controller.js b/codbex-payments/gen/codbex-payments/ui/SupplierPayment/SupplierPayment/dialog-window/controller.js
index ccffc3d..58ff3a2 100644
--- a/codbex-payments/gen/codbex-payments/ui/SupplierPayment/SupplierPayment/dialog-window/controller.js
+++ b/codbex-payments/gen/codbex-payments/ui/SupplierPayment/SupplierPayment/dialog-window/controller.js
@@ -37,6 +37,12 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
if (params.entity.Valor) {
params.entity.Valor = new Date(params.entity.Valor);
}
+ if (params.entity.CreatedAt) {
+ params.entity.CreatedAt = new Date(params.entity.CreatedAt);
+ }
+ if (params.entity.UpdatedAt) {
+ params.entity.UpdatedAt = new Date(params.entity.UpdatedAt);
+ }
$scope.entity = params.entity;
$scope.selectedMainEntityKey = params.selectedMainEntityKey;
$scope.selectedMainEntityId = params.selectedMainEntityId;
diff --git a/codbex-payments/gen/codbex-payments/ui/SupplierPayment/SupplierPayment/dialog-window/index.html b/codbex-payments/gen/codbex-payments/ui/SupplierPayment/SupplierPayment/dialog-window/index.html
index bbfd58a..2c8ac22 100644
--- a/codbex-payments/gen/codbex-payments/ui/SupplierPayment/SupplierPayment/dialog-window/index.html
+++ b/codbex-payments/gen/codbex-payments/ui/SupplierPayment/SupplierPayment/dialog-window/index.html
@@ -294,6 +294,88 @@
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.SUPPLIERPAYMENT_CREATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.SUPPLIERPAYMENT_CREATEDBY' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.SUPPLIERPAYMENT_UPDATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.SUPPLIERPAYMENT_UPDATEDBY' | t }}
+
+
+
+
+
+
+
+
diff --git a/codbex-payments/gen/codbex-payments/ui/SupplierPayment/SupplierPayment/index.html b/codbex-payments/gen/codbex-payments/ui/SupplierPayment/SupplierPayment/index.html
index 15c6588..0d917df 100644
--- a/codbex-payments/gen/codbex-payments/ui/SupplierPayment/SupplierPayment/index.html
+++ b/codbex-payments/gen/codbex-payments/ui/SupplierPayment/SupplierPayment/index.html
@@ -53,7 +53,11 @@
{{next.Name}} |
{{next.UUID}} |
{{next.Reference}} |
- {{next.PaymentMethod}}
+ {{next.PaymentMethod}} |
+ {{next.CreatedAt}} |
+ {{next.CreatedBy}} |
+ {{next.UpdatedAt}} |
+ {{next.UpdatedBy}}
diff --git a/codbex-payments/gen/codbex-payments/ui/SupplierPayment/SupplierPayment/main-details/controller.js b/codbex-payments/gen/codbex-payments/ui/SupplierPayment/SupplierPayment/main-details/controller.js
index 4d2bb1c..f844add 100644
--- a/codbex-payments/gen/codbex-payments/ui/SupplierPayment/SupplierPayment/main-details/controller.js
+++ b/codbex-payments/gen/codbex-payments/ui/SupplierPayment/SupplierPayment/main-details/controller.js
@@ -64,6 +64,12 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
if (data.entity.Valor) {
data.entity.Valor = new Date(data.entity.Valor);
}
+ if (data.entity.CreatedAt) {
+ data.entity.CreatedAt = new Date(data.entity.CreatedAt);
+ }
+ if (data.entity.UpdatedAt) {
+ data.entity.UpdatedAt = new Date(data.entity.UpdatedAt);
+ }
$scope.entity = data.entity;
$scope.optionsSupplier = data.optionsSupplier;
$scope.optionsCurrency = data.optionsCurrency;
@@ -88,6 +94,12 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
if (data.entity.Valor) {
data.entity.Valor = new Date(data.entity.Valor);
}
+ if (data.entity.CreatedAt) {
+ data.entity.CreatedAt = new Date(data.entity.CreatedAt);
+ }
+ if (data.entity.UpdatedAt) {
+ data.entity.UpdatedAt = new Date(data.entity.UpdatedAt);
+ }
$scope.entity = data.entity;
$scope.optionsSupplier = data.optionsSupplier;
$scope.optionsCurrency = data.optionsCurrency;
diff --git a/codbex-payments/gen/codbex-payments/ui/SupplierPayment/SupplierPayment/main-details/index.html b/codbex-payments/gen/codbex-payments/ui/SupplierPayment/SupplierPayment/main-details/index.html
index 287b1fd..a916d16 100644
--- a/codbex-payments/gen/codbex-payments/ui/SupplierPayment/SupplierPayment/main-details/index.html
+++ b/codbex-payments/gen/codbex-payments/ui/SupplierPayment/SupplierPayment/main-details/index.html
@@ -304,6 +304,88 @@
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.SUPPLIERPAYMENT_CREATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.SUPPLIERPAYMENT_CREATEDBY' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.SUPPLIERPAYMENT_UPDATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-payments:codbex-payments-model.t.SUPPLIERPAYMENT_UPDATEDBY' | t }}
+
+
+
+
+
+
+
+
diff --git a/codbex-payments/package.json b/codbex-payments/package.json
index 64b5662..4ada5ee 100644
--- a/codbex-payments/package.json
+++ b/codbex-payments/package.json
@@ -10,9 +10,10 @@
},
"dependencies": {
"@codbex/codbex-partners": "^1.0.0",
+ "@codbex/codbex-companies": "^1.1.0",
"@codbex/codbex-employees": "^1.0.0",
"@codbex/codbex-currencies": "^1.2.0",
"@codbex/codbex-number-generator": "^1.1.0",
"@codbex/codbex-number-generator-data": "^1.0.0"
}
-}
+}
\ No newline at end of file
diff --git a/codbex-payments/project.json b/codbex-payments/project.json
index 672c5ae..450de09 100644
--- a/codbex-payments/project.json
+++ b/codbex-payments/project.json
@@ -1,3 +1 @@
-{
- "guid": "codbex-payments"
-}
\ No newline at end of file
+{"guid":"codbex-payments","actions":[{"name":"Build TypeScript","commands":[{"os":"unix","command":"tsc"},{"os":"windows","command":"cmd /c tsc"}],"registry":"true"}]}
\ No newline at end of file
diff --git a/codbex-payments/translations/en-US/codbex-payments.model.json b/codbex-payments/translations/en-US/codbex-payments.model.json
index 3cc6272..60149c4 100644
--- a/codbex-payments/translations/en-US/codbex-payments.model.json
+++ b/codbex-payments/translations/en-US/codbex-payments.model.json
@@ -83,6 +83,10 @@
"CUSTOMERPAYMENT_UUID": "UUID",
"CUSTOMERPAYMENT_REFERENCE": "Reference",
"CUSTOMERPAYMENT_PAYMENTMETHOD": "PaymentMethod",
+ "CUSTOMERPAYMENT_CREATEDAT": "CreatedAt",
+ "CUSTOMERPAYMENT_CREATEDBY": "CreatedBy",
+ "CUSTOMERPAYMENT_UPDATEDAT": "UpdatedAt",
+ "CUSTOMERPAYMENT_UPDATEDBY": "UpdatedBy",
"SUPPLIERPAYMENT": "SupplierPayment",
"SUPPLIERPAYMENT_ID": "Id",
"SUPPLIERPAYMENT_SUPPLIER": "Supplier",
@@ -100,6 +104,10 @@
"SUPPLIERPAYMENT_UUID": "UUID",
"SUPPLIERPAYMENT_REFERENCE": "Reference",
"SUPPLIERPAYMENT_PAYMENTMETHOD": "PaymentMethod",
+ "SUPPLIERPAYMENT_CREATEDAT": "CreatedAt",
+ "SUPPLIERPAYMENT_CREATEDBY": "CreatedBy",
+ "SUPPLIERPAYMENT_UPDATEDAT": "UpdatedAt",
+ "SUPPLIERPAYMENT_UPDATEDBY": "UpdatedBy",
"EMPLOYEEPAYMENT": "EmployeePayment",
"EMPLOYEEPAYMENT_ID": "Id",
"EMPLOYEEPAYMENT_EMPLOYEE": "Employee",
@@ -117,6 +125,10 @@
"EMPLOYEEPAYMENT_UUID": "UUID",
"EMPLOYEEPAYMENT_REFERENCE": "Reference",
"EMPLOYEEPAYMENT_PAYMENTMETHOD": "PaymentMethod",
+ "EMPLOYEEPAYMENT_CREATEDAT": "CreatedAt",
+ "EMPLOYEEPAYMENT_CREATEDBY": "CreatedBy",
+ "EMPLOYEEPAYMENT_UPDATEDAT": "UpdatedAt",
+ "EMPLOYEEPAYMENT_UPDATEDBY": "UpdatedBy",
"PAYMENTRECORD": "PaymentRecord",
"PAYMENTRECORD_ID": "Id",
"PAYMENTRECORD_DATE": "Date",
@@ -136,6 +148,10 @@
"PAYMENTRECORD_DELETED": "Deleted",
"PAYMENTRECORD_DELETEDAT": "DeletedAt",
"PAYMENTRECORD_DELETEDREASON": "DeletedReason",
+ "PAYMENTRECORD_CREATEDAT": "CreatedAt",
+ "PAYMENTRECORD_CREATEDBY": "CreatedBy",
+ "PAYMENTRECORD_UPDATEDAT": "UpdatedAt",
+ "PAYMENTRECORD_UPDATEDBY": "UpdatedBy",
"CURRENCY": "Currency",
"CURRENCY_ID": "Id",
"CURRENCY_CODE": "Code",
@@ -183,6 +199,10 @@
"PAYMENTADJUSTMENT_COMPANY": "Company",
"PAYMENTADJUSTMENT_REASON": "Reason",
"PAYMENTADJUSTMENT_UUID": "UUID",
+ "PAYMENTADJUSTMENT_CREATEDAT": "CreatedAt",
+ "PAYMENTADJUSTMENT_CREATEDBY": "CreatedBy",
+ "PAYMENTADJUSTMENT_UPDATEDAT": "UpdatedAt",
+ "PAYMENTADJUSTMENT_UPDATEDBY": "UpdatedBy",
"PAYMENTDIRECTION": "PaymentDirection",
"PAYMENTDIRECTION_ID": "Id",
"PAYMENTDIRECTION_NAME": "Name",
|