{
const entities = super.findAll(options);
entities.forEach(entity => {
entity.CreatedAt = entity.CreatedAt ? new Date(entity.CreatedAt) : undefined;
+ entity.UpdatedAt = entity.UpdatedAt ? new Date(entity.UpdatedAt) : undefined;
});
return entities;
}
diff --git a/codbex-partners/gen/codbex-partners/schema/codbex-partners.schema b/codbex-partners/gen/codbex-partners/schema/codbex-partners.schema
index 8a2f7b8..25ea6fd 100644
--- a/codbex-partners/gen/codbex-partners/schema/codbex-partners.schema
+++ b/codbex-partners/gen/codbex-partners/schema/codbex-partners.schema
@@ -97,6 +97,23 @@
"type": "TIMESTAMP",
"nullable": true,
"name": "CUSTOMER_CREATEDAT"
+ },
+ {
+ "type": "VARCHAR",
+ "length": 20,
+ "nullable": true,
+ "name": "CUSTOMER_CREATEDBY"
+ },
+ {
+ "type": "TIMESTAMP",
+ "nullable": true,
+ "name": "CUSTOMER_UPDATEDAT"
+ },
+ {
+ "type": "VARCHAR",
+ "length": 20,
+ "nullable": true,
+ "name": "CUSTOMER_UPDATEDBY"
}
]
},
@@ -167,6 +184,23 @@
"type": "TIMESTAMP",
"nullable": true,
"name": "SUPPLIER_CREATEDAT"
+ },
+ {
+ "type": "VARCHAR",
+ "length": 20,
+ "nullable": true,
+ "name": "SUPPLIER_CREATEDBY"
+ },
+ {
+ "type": "TIMESTAMP",
+ "nullable": true,
+ "name": "SUPPLIER_UPDATEDAT"
+ },
+ {
+ "type": "VARCHAR",
+ "length": 20,
+ "nullable": true,
+ "name": "SUPPLIER_UPDATEDBY"
}
]
},
@@ -190,6 +224,28 @@
"type": "VARCHAR",
"length": 5000,
"name": "CUSTOMERNOTE_NOTE"
+ },
+ {
+ "type": "TIMESTAMP",
+ "nullable": true,
+ "name": "CUSTOMERNOTE_CREATEDAT"
+ },
+ {
+ "type": "VARCHAR",
+ "length": 20,
+ "nullable": true,
+ "name": "CUSTOMERNOTE_CREATEDBY"
+ },
+ {
+ "type": "TIMESTAMP",
+ "nullable": true,
+ "name": "CUSTOMERNOTE_UPDATEDAT"
+ },
+ {
+ "type": "VARCHAR",
+ "length": 20,
+ "nullable": true,
+ "name": "CUSTOMERNOTE_UPDATEDBY"
}
]
},
@@ -213,6 +269,28 @@
"type": "VARCHAR",
"length": 5000,
"name": "SUPPLIERNOTE_NOTE"
+ },
+ {
+ "type": "TIMESTAMP",
+ "nullable": true,
+ "name": "SUPPLIERNOTE_CREATEDAT"
+ },
+ {
+ "type": "VARCHAR",
+ "length": 20,
+ "nullable": true,
+ "name": "SUPPLIERNOTE_CREATEDBY"
+ },
+ {
+ "type": "TIMESTAMP",
+ "nullable": true,
+ "name": "SUPPLIERNOTE_UPDATEDAT"
+ },
+ {
+ "type": "VARCHAR",
+ "length": 20,
+ "nullable": true,
+ "name": "SUPPLIERNOTE_UPDATEDBY"
}
]
},
@@ -236,6 +314,28 @@
"type": "VARCHAR",
"length": 5000,
"name": "MANUFACTURERNOTE_NOTE"
+ },
+ {
+ "type": "TIMESTAMP",
+ "nullable": true,
+ "name": "MANUFACTURERNOTE_CREATEDAT"
+ },
+ {
+ "type": "VARCHAR",
+ "length": 20,
+ "nullable": true,
+ "name": "MANUFACTURERNOTE_CREATEDBY"
+ },
+ {
+ "type": "TIMESTAMP",
+ "nullable": true,
+ "name": "MANUFACTURERNOTE_UPDATEDAT"
+ },
+ {
+ "type": "VARCHAR",
+ "length": 20,
+ "nullable": true,
+ "name": "MANUFACTURERNOTE_UPDATEDBY"
}
]
},
@@ -306,6 +406,23 @@
"type": "TIMESTAMP",
"nullable": true,
"name": "MANUFACTURER_CREATEDAT"
+ },
+ {
+ "type": "VARCHAR",
+ "length": 20,
+ "nullable": true,
+ "name": "MANUFACTURER_CREATEDBY"
+ },
+ {
+ "type": "TIMESTAMP",
+ "nullable": true,
+ "name": "MANUFACTURER_UPDATEDAT"
+ },
+ {
+ "type": "VARCHAR",
+ "length": 20,
+ "nullable": true,
+ "name": "MANUFACTURER_UPDATEDBY"
}
]
},
@@ -345,6 +462,17 @@
"type": "VARCHAR",
"length": 15,
"name": "CUSTOMERCONTACT_PHONE"
+ },
+ {
+ "type": "TIMESTAMP",
+ "nullable": true,
+ "name": "CUSTOMERCONTACT_CREATEDAT"
+ },
+ {
+ "type": "VARCHAR",
+ "length": 20,
+ "nullable": true,
+ "name": "CUSTOMERCONTACT_CREATEDBY"
}
]
},
@@ -384,6 +512,17 @@
"type": "VARCHAR",
"length": 15,
"name": "SUPPLIERCONTACT_PHONE"
+ },
+ {
+ "type": "TIMESTAMP",
+ "nullable": true,
+ "name": "SUPPLIERCONTACT_CREATEDAT"
+ },
+ {
+ "type": "VARCHAR",
+ "length": 20,
+ "nullable": true,
+ "name": "SUPPLIERCONTACT_CREATEDBY"
}
]
},
@@ -423,6 +562,17 @@
"type": "VARCHAR",
"length": 15,
"name": "MANUFACTURERCONTACT_PHONE"
+ },
+ {
+ "type": "TIMESTAMP",
+ "nullable": true,
+ "name": "MANUFACTURERCONTACT_CREATEDAT"
+ },
+ {
+ "type": "VARCHAR",
+ "length": 20,
+ "nullable": true,
+ "name": "MANUFACTURERCONTACT_CREATEDBY"
}
]
},
diff --git a/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerContact/controller.js b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerContact/controller.js
index 6c936e1..02fb752 100644
--- a/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerContact/controller.js
+++ b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerContact/controller.js
@@ -114,6 +114,12 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
filter.$filter.offset = (pageNumber - 1) * $scope.dataLimit;
filter.$filter.limit = $scope.dataLimit;
EntityService.search(filter).then((response) => {
+ response.data.forEach(e => {
+ if (e.CreatedAt) {
+ e.CreatedAt = new Date(e.CreatedAt);
+ }
+ });
+
$scope.data = response.data;
}, (error) => {
const message = error.data ? error.data.message : '';
diff --git a/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerContact/dialog-filter/controller.js b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerContact/dialog-filter/controller.js
index 077759b..713eb74 100644
--- a/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerContact/dialog-filter/controller.js
+++ b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerContact/dialog-filter/controller.js
@@ -7,6 +7,12 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale']).controlle
let params = ViewParameters.get();
if (Object.keys(params).length) {
+ if (params?.entity?.CreatedAtFrom) {
+ params.entity.CreatedAtFrom = new Date(params.entity.CreatedAtFrom);
+ }
+ if (params?.entity?.CreatedAtTo) {
+ params.entity.CreatedAtTo = new Date(params.entity.CreatedAtTo);
+ }
$scope.entity = params.entity ?? {};
$scope.selectedMainEntityKey = params.selectedMainEntityKey;
$scope.selectedMainEntityId = params.selectedMainEntityId;
@@ -46,6 +52,18 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale']).controlle
const condition = { propertyName: 'Phone', operator: 'LIKE', value: `%${entity.Phone}%` };
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);
+ }
Dialogs.postMessage({ topic: 'codbex-partners.Customers.CustomerContact.entitySearch', data: {
entity: entity,
filter: filter
diff --git a/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerContact/dialog-filter/index.html b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerContact/dialog-filter/index.html
index 23480cc..aa50fea 100644
--- a/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerContact/dialog-filter/index.html
+++ b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerContact/dialog-filter/index.html
@@ -85,6 +85,39 @@
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.CUSTOMERCONTACT_CREATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.CUSTOMERCONTACT_CREATEDBY' | t }}
+
+
+
+
+
+
+
+
diff --git a/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerContact/dialog-window/controller.js b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerContact/dialog-window/controller.js
index 5af2ad4..89ef587 100644
--- a/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerContact/dialog-window/controller.js
+++ b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerContact/dialog-window/controller.js
@@ -31,6 +31,10 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
let params = ViewParameters.get();
if (Object.keys(params).length) {
$scope.action = params.action;
+
+ if (params.entity.CreatedAt) {
+ params.entity.CreatedAt = new Date(params.entity.CreatedAt);
+ }
$scope.entity = params.entity;
$scope.selectedMainEntityKey = params.selectedMainEntityKey;
$scope.selectedMainEntityId = params.selectedMainEntityId;
diff --git a/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerContact/dialog-window/index.html b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerContact/dialog-window/index.html
index 2c5751a..edd14c7 100644
--- a/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerContact/dialog-window/index.html
+++ b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerContact/dialog-window/index.html
@@ -105,6 +105,47 @@
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.CUSTOMERCONTACT_CREATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.CUSTOMERCONTACT_CREATEDBY' | t }}
+
+
+
+
+
+
+
+
diff --git a/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerContact/index.html b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerContact/index.html
index 48c8f36..0b8522e 100644
--- a/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerContact/index.html
+++ b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerContact/index.html
@@ -32,6 +32,8 @@
{{ 'codbex-partners:codbex-partners-model.t.CUSTOMERCONTACT_DESIGNATION' | t:'Designation' }} |
{{ 'codbex-partners:codbex-partners-model.t.CUSTOMERCONTACT_EMAIL' | t:'Email' }} |
{{ 'codbex-partners:codbex-partners-model.t.CUSTOMERCONTACT_PHONE' | t:'Phone' }} |
+ {{ 'codbex-partners:codbex-partners-model.t.CUSTOMERCONTACT_CREATEDAT' | t:'CreatedAt' }} |
+ {{ 'codbex-partners:codbex-partners-model.t.CUSTOMERCONTACT_CREATEDBY' | t:'CreatedBy' }} |
|
@@ -48,6 +50,8 @@
{{next.Phone}}
|
+ {{next.CreatedAt}} |
+ {{next.CreatedBy}} |
diff --git a/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerNote/controller.js b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerNote/controller.js
index 9e41e10..b20bca3 100644
--- a/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerNote/controller.js
+++ b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerNote/controller.js
@@ -114,6 +114,15 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
filter.$filter.offset = (pageNumber - 1) * $scope.dataLimit;
filter.$filter.limit = $scope.dataLimit;
EntityService.search(filter).then((response) => {
+ response.data.forEach(e => {
+ if (e.CreatedAt) {
+ e.CreatedAt = new Date(e.CreatedAt);
+ }
+ if (e.UpdatedAt) {
+ e.UpdatedAt = new Date(e.UpdatedAt);
+ }
+ });
+
$scope.data = response.data;
}, (error) => {
const message = error.data ? error.data.message : '';
diff --git a/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerNote/dialog-filter/controller.js b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerNote/dialog-filter/controller.js
index 26bac34..1a7e644 100644
--- a/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerNote/dialog-filter/controller.js
+++ b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerNote/dialog-filter/controller.js
@@ -7,6 +7,18 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale']).controlle
let params = ViewParameters.get();
if (Object.keys(params).length) {
+ 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;
@@ -34,6 +46,30 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale']).controlle
const condition = { propertyName: 'Note', operator: 'LIKE', value: `%${entity.Note}%` };
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-partners.Customers.CustomerNote.entitySearch', data: {
entity: entity,
filter: filter
diff --git a/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerNote/dialog-filter/index.html b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerNote/dialog-filter/index.html
index 0901d8d..1567c05 100644
--- a/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerNote/dialog-filter/index.html
+++ b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerNote/dialog-filter/index.html
@@ -33,6 +33,72 @@
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.CUSTOMERNOTE_CREATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.CUSTOMERNOTE_CREATEDBY' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.CUSTOMERNOTE_UPDATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.CUSTOMERNOTE_UPDATEDBY' | t }}
+
+
+
+
+
+
+
+
diff --git a/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerNote/dialog-window/controller.js b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerNote/dialog-window/controller.js
index b404962..c914a31 100644
--- a/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerNote/dialog-window/controller.js
+++ b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerNote/dialog-window/controller.js
@@ -31,6 +31,13 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
let params = ViewParameters.get();
if (Object.keys(params).length) {
$scope.action = params.action;
+
+ 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-partners/gen/codbex-partners/ui/Customers/Customer/CustomerNote/dialog-window/index.html b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerNote/dialog-window/index.html
index 852211f..a1d1702 100644
--- a/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerNote/dialog-window/index.html
+++ b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerNote/dialog-window/index.html
@@ -36,6 +36,88 @@
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.CUSTOMERNOTE_CREATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.CUSTOMERNOTE_CREATEDBY' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.CUSTOMERNOTE_UPDATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.CUSTOMERNOTE_UPDATEDBY' | t }}
+
+
+
+
+
+
+
+
diff --git a/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerNote/index.html b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerNote/index.html
index fd6962f..473b4b6 100644
--- a/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerNote/index.html
+++ b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/CustomerNote/index.html
@@ -29,6 +29,10 @@
| {{ 'codbex-partners:codbex-partners-model.t.CUSTOMERNOTE_NOTE' | t:'Note' }} |
+ {{ 'codbex-partners:codbex-partners-model.t.CUSTOMERNOTE_CREATEDAT' | t:'CreatedAt' }} |
+ {{ 'codbex-partners:codbex-partners-model.t.CUSTOMERNOTE_CREATEDBY' | t:'CreatedBy' }} |
+ {{ 'codbex-partners:codbex-partners-model.t.CUSTOMERNOTE_UPDATEDAT' | t:'UpdatedAt' }} |
+ {{ 'codbex-partners:codbex-partners-model.t.CUSTOMERNOTE_UPDATEDBY' | t:'UpdatedBy' }} |
|
@@ -38,6 +42,10 @@
| {{next.Note}} |
+ {{next.CreatedAt}} |
+ {{next.CreatedBy}} |
+ {{next.UpdatedAt}} |
+ {{next.UpdatedBy}} |
diff --git a/codbex-partners/gen/codbex-partners/ui/Customers/Customer/controller.js b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/controller.js
index 5e8dbc5..b9822a1 100644
--- a/codbex-partners/gen/codbex-partners/ui/Customers/Customer/controller.js
+++ b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/controller.js
@@ -106,6 +106,9 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
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-partners/gen/codbex-partners/ui/Customers/Customer/dialog-filter/controller.js b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/dialog-filter/controller.js
index 8ac21b6..070c8f3 100644
--- a/codbex-partners/gen/codbex-partners/ui/Customers/Customer/dialog-filter/controller.js
+++ b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/dialog-filter/controller.js
@@ -13,6 +13,12 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale']).controlle
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;
@@ -103,6 +109,22 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale']).controlle
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-partners.Customers.Customer.entitySearch', data: {
entity: entity,
filter: filter
diff --git a/codbex-partners/gen/codbex-partners/ui/Customers/Customer/dialog-filter/index.html b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/dialog-filter/index.html
index 0c05970..0cbf7b7 100644
--- a/codbex-partners/gen/codbex-partners/ui/Customers/Customer/dialog-filter/index.html
+++ b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/dialog-filter/index.html
@@ -294,6 +294,56 @@
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.CUSTOMER_CREATEDBY' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.CUSTOMER_UPDATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.CUSTOMER_UPDATEDBY' | t }}
+
+
+
+
+
+
+
+
diff --git a/codbex-partners/gen/codbex-partners/ui/Customers/Customer/dialog-window/controller.js b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/dialog-window/controller.js
index 10302f3..212ba18 100644
--- a/codbex-partners/gen/codbex-partners/ui/Customers/Customer/dialog-window/controller.js
+++ b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/dialog-window/controller.js
@@ -34,6 +34,9 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
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-partners/gen/codbex-partners/ui/Customers/Customer/dialog-window/index.html b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/dialog-window/index.html
index 60ae915..8fa40b5 100644
--- a/codbex-partners/gen/codbex-partners/ui/Customers/Customer/dialog-window/index.html
+++ b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/dialog-window/index.html
@@ -337,6 +337,68 @@
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.CUSTOMER_CREATEDBY' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.CUSTOMER_UPDATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.CUSTOMER_UPDATEDBY' | t }}
+
+
+
+
+
+
+
+
diff --git a/codbex-partners/gen/codbex-partners/ui/Customers/Customer/index.html b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/index.html
index 5c16745..67a2e55 100644
--- a/codbex-partners/gen/codbex-partners/ui/Customers/Customer/index.html
+++ b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/index.html
@@ -54,7 +54,10 @@
{{next.IBAN}} |
{{optionsResponsiblePersonValue(next.ResponsiblePerson)}} |
{{next.Identifier}} |
- {{next.CreatedAt | date: "dd/MMM/yyyy HH:MM"}}
+ {{next.CreatedAt | date: "dd/MMM/yyyy HH:MM"}} |
+ {{next.CreatedBy}} |
+ {{next.UpdatedAt}} |
+ {{next.UpdatedBy}}
diff --git a/codbex-partners/gen/codbex-partners/ui/Customers/Customer/main-details/controller.js b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/main-details/controller.js
index 8dd76e1..57cc449 100644
--- a/codbex-partners/gen/codbex-partners/ui/Customers/Customer/main-details/controller.js
+++ b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/main-details/controller.js
@@ -61,6 +61,9 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
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.optionsCountry = data.optionsCountry;
$scope.optionsCity = data.optionsCity;
@@ -82,6 +85,9 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
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.optionsCountry = data.optionsCountry;
$scope.optionsCity = data.optionsCity;
diff --git a/codbex-partners/gen/codbex-partners/ui/Customers/Customer/main-details/index.html b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/main-details/index.html
index aaaddc6..631f484 100644
--- a/codbex-partners/gen/codbex-partners/ui/Customers/Customer/main-details/index.html
+++ b/codbex-partners/gen/codbex-partners/ui/Customers/Customer/main-details/index.html
@@ -347,6 +347,68 @@
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.CUSTOMER_CREATEDBY' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.CUSTOMER_UPDATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.CUSTOMER_UPDATEDBY' | t }}
+
+
+
+
+
+
+
+
diff --git a/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/ManufacturerContact/controller.js b/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/ManufacturerContact/controller.js
index d62e177..13b7765 100644
--- a/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/ManufacturerContact/controller.js
+++ b/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/ManufacturerContact/controller.js
@@ -114,6 +114,12 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
filter.$filter.offset = (pageNumber - 1) * $scope.dataLimit;
filter.$filter.limit = $scope.dataLimit;
EntityService.search(filter).then((response) => {
+ response.data.forEach(e => {
+ if (e.CreatedAt) {
+ e.CreatedAt = new Date(e.CreatedAt);
+ }
+ });
+
$scope.data = response.data;
}, (error) => {
const message = error.data ? error.data.message : '';
diff --git a/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/ManufacturerContact/dialog-filter/controller.js b/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/ManufacturerContact/dialog-filter/controller.js
index c04493d..a6e53b5 100644
--- a/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/ManufacturerContact/dialog-filter/controller.js
+++ b/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/ManufacturerContact/dialog-filter/controller.js
@@ -7,6 +7,12 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale']).controlle
let params = ViewParameters.get();
if (Object.keys(params).length) {
+ if (params?.entity?.CreatedAtFrom) {
+ params.entity.CreatedAtFrom = new Date(params.entity.CreatedAtFrom);
+ }
+ if (params?.entity?.CreatedAtTo) {
+ params.entity.CreatedAtTo = new Date(params.entity.CreatedAtTo);
+ }
$scope.entity = params.entity ?? {};
$scope.selectedMainEntityKey = params.selectedMainEntityKey;
$scope.selectedMainEntityId = params.selectedMainEntityId;
@@ -46,6 +52,18 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale']).controlle
const condition = { propertyName: 'Phone', operator: 'LIKE', value: `%${entity.Phone}%` };
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);
+ }
Dialogs.postMessage({ topic: 'codbex-partners.Manufacturers.ManufacturerContact.entitySearch', data: {
entity: entity,
filter: filter
diff --git a/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/ManufacturerContact/dialog-filter/index.html b/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/ManufacturerContact/dialog-filter/index.html
index 3a3fc96..d9b8d18 100644
--- a/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/ManufacturerContact/dialog-filter/index.html
+++ b/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/ManufacturerContact/dialog-filter/index.html
@@ -85,6 +85,39 @@
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.MANUFACTURERCONTACT_CREATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.MANUFACTURERCONTACT_CREATEDBY' | t }}
+
+
+
+
+
+
+
+
diff --git a/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/ManufacturerContact/dialog-window/controller.js b/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/ManufacturerContact/dialog-window/controller.js
index adf16c1..f8da0d9 100644
--- a/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/ManufacturerContact/dialog-window/controller.js
+++ b/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/ManufacturerContact/dialog-window/controller.js
@@ -31,6 +31,10 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
let params = ViewParameters.get();
if (Object.keys(params).length) {
$scope.action = params.action;
+
+ if (params.entity.CreatedAt) {
+ params.entity.CreatedAt = new Date(params.entity.CreatedAt);
+ }
$scope.entity = params.entity;
$scope.selectedMainEntityKey = params.selectedMainEntityKey;
$scope.selectedMainEntityId = params.selectedMainEntityId;
diff --git a/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/ManufacturerContact/dialog-window/index.html b/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/ManufacturerContact/dialog-window/index.html
index 8ab85bb..1d9850d 100644
--- a/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/ManufacturerContact/dialog-window/index.html
+++ b/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/ManufacturerContact/dialog-window/index.html
@@ -105,6 +105,47 @@
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.MANUFACTURERCONTACT_CREATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.MANUFACTURERCONTACT_CREATEDBY' | t }}
+
+
+
+
+
+
+
+
diff --git a/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/ManufacturerContact/index.html b/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/ManufacturerContact/index.html
index 3241a67..15f806a 100644
--- a/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/ManufacturerContact/index.html
+++ b/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/ManufacturerContact/index.html
@@ -32,6 +32,8 @@
{{ 'codbex-partners:codbex-partners-model.t.MANUFACTURERCONTACT_DESIGNATION' | t:'Designation' }} |
{{ 'codbex-partners:codbex-partners-model.t.MANUFACTURERCONTACT_EMAIL' | t:'Email' }} |
{{ 'codbex-partners:codbex-partners-model.t.MANUFACTURERCONTACT_PHONE' | t:'Phone' }} |
+ {{ 'codbex-partners:codbex-partners-model.t.MANUFACTURERCONTACT_CREATEDAT' | t:'CreatedAt' }} |
+ {{ 'codbex-partners:codbex-partners-model.t.MANUFACTURERCONTACT_CREATEDBY' | t:'CreatedBy' }} |
|
|
@@ -48,6 +50,8 @@
{{next.Phone}}
|
+ {{next.CreatedAt}} |
+ {{next.CreatedBy}} |
diff --git a/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/controller.js b/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/controller.js
index 13d18c3..da5c058 100644
--- a/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/controller.js
+++ b/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/controller.js
@@ -106,6 +106,9 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
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-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/dialog-filter/controller.js b/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/dialog-filter/controller.js
index 46e34b9..42a80f1 100644
--- a/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/dialog-filter/controller.js
+++ b/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/dialog-filter/controller.js
@@ -13,6 +13,12 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale']).controlle
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 +82,22 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale']).controlle
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-partners.Manufacturers.Manufacturer.entitySearch', data: {
entity: entity,
filter: filter
diff --git a/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/dialog-filter/index.html b/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/dialog-filter/index.html
index 9942c49..3788cb6 100644
--- a/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/dialog-filter/index.html
+++ b/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/dialog-filter/index.html
@@ -186,6 +186,56 @@
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.MANUFACTURER_CREATEDBY' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.MANUFACTURER_UPDATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.MANUFACTURER_UPDATEDBY' | t }}
+
+
+
+
+
+
+
+
diff --git a/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/dialog-window/controller.js b/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/dialog-window/controller.js
index fc1e7fb..820f5c1 100644
--- a/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/dialog-window/controller.js
+++ b/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/dialog-window/controller.js
@@ -34,6 +34,9 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
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-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/dialog-window/index.html b/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/dialog-window/index.html
index 8bb39ed..f3b096e 100644
--- a/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/dialog-window/index.html
+++ b/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/dialog-window/index.html
@@ -226,6 +226,68 @@
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.MANUFACTURER_CREATEDBY' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.MANUFACTURER_UPDATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.MANUFACTURER_UPDATEDBY' | t }}
+
+
+
+
+
+
+
+
diff --git a/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/index.html b/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/index.html
index 8fa56ec..787b1da 100644
--- a/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/index.html
+++ b/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/index.html
@@ -48,7 +48,10 @@
{{next.Fax}} |
{{next.TIN}} |
{{next.IBAN}} |
- {{next.CreatedAt}}
+ {{next.CreatedAt}} |
+ {{next.CreatedBy}} |
+ {{next.UpdatedAt}} |
+ {{next.UpdatedBy}}
diff --git a/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/main-details/controller.js b/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/main-details/controller.js
index 1bc8e73..507b22c 100644
--- a/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/main-details/controller.js
+++ b/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/main-details/controller.js
@@ -58,6 +58,9 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
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.action = 'select';
});
@@ -73,6 +76,9 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
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.action = 'update';
});
diff --git a/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/main-details/index.html b/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/main-details/index.html
index 1b9f83f..e78b6ce 100644
--- a/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/main-details/index.html
+++ b/codbex-partners/gen/codbex-partners/ui/Manufacturers/Manufacturer/main-details/index.html
@@ -224,6 +224,68 @@
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.MANUFACTURER_CREATEDBY' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.MANUFACTURER_UPDATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.MANUFACTURER_UPDATEDBY' | t }}
+
+
+
+
+
+
+
+
diff --git a/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierContact/controller.js b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierContact/controller.js
index f23616d..a78023a 100644
--- a/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierContact/controller.js
+++ b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierContact/controller.js
@@ -114,6 +114,12 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
filter.$filter.offset = (pageNumber - 1) * $scope.dataLimit;
filter.$filter.limit = $scope.dataLimit;
EntityService.search(filter).then((response) => {
+ response.data.forEach(e => {
+ if (e.CreatedAt) {
+ e.CreatedAt = new Date(e.CreatedAt);
+ }
+ });
+
$scope.data = response.data;
}, (error) => {
const message = error.data ? error.data.message : '';
diff --git a/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierContact/dialog-filter/controller.js b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierContact/dialog-filter/controller.js
index 34ba6e4..4c39214 100644
--- a/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierContact/dialog-filter/controller.js
+++ b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierContact/dialog-filter/controller.js
@@ -7,6 +7,12 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale']).controlle
let params = ViewParameters.get();
if (Object.keys(params).length) {
+ if (params?.entity?.CreatedAtFrom) {
+ params.entity.CreatedAtFrom = new Date(params.entity.CreatedAtFrom);
+ }
+ if (params?.entity?.CreatedAtTo) {
+ params.entity.CreatedAtTo = new Date(params.entity.CreatedAtTo);
+ }
$scope.entity = params.entity ?? {};
$scope.selectedMainEntityKey = params.selectedMainEntityKey;
$scope.selectedMainEntityId = params.selectedMainEntityId;
@@ -46,6 +52,18 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale']).controlle
const condition = { propertyName: 'Phone', operator: 'LIKE', value: `%${entity.Phone}%` };
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);
+ }
Dialogs.postMessage({ topic: 'codbex-partners.Suppliers.SupplierContact.entitySearch', data: {
entity: entity,
filter: filter
diff --git a/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierContact/dialog-filter/index.html b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierContact/dialog-filter/index.html
index af82b50..42081e9 100644
--- a/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierContact/dialog-filter/index.html
+++ b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierContact/dialog-filter/index.html
@@ -85,6 +85,39 @@
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.SUPPLIERCONTACT_CREATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.SUPPLIERCONTACT_CREATEDBY' | t }}
+
+
+
+
+
+
+
+
diff --git a/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierContact/dialog-window/controller.js b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierContact/dialog-window/controller.js
index 0b1d6cc..3da8de8 100644
--- a/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierContact/dialog-window/controller.js
+++ b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierContact/dialog-window/controller.js
@@ -31,6 +31,10 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
let params = ViewParameters.get();
if (Object.keys(params).length) {
$scope.action = params.action;
+
+ if (params.entity.CreatedAt) {
+ params.entity.CreatedAt = new Date(params.entity.CreatedAt);
+ }
$scope.entity = params.entity;
$scope.selectedMainEntityKey = params.selectedMainEntityKey;
$scope.selectedMainEntityId = params.selectedMainEntityId;
diff --git a/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierContact/dialog-window/index.html b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierContact/dialog-window/index.html
index 8f49837..74bbe30 100644
--- a/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierContact/dialog-window/index.html
+++ b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierContact/dialog-window/index.html
@@ -105,6 +105,47 @@
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.SUPPLIERCONTACT_CREATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.SUPPLIERCONTACT_CREATEDBY' | t }}
+
+
+
+
+
+
+
+
diff --git a/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierContact/index.html b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierContact/index.html
index fd90f53..f078484 100644
--- a/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierContact/index.html
+++ b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierContact/index.html
@@ -32,6 +32,8 @@
{{ 'codbex-partners:codbex-partners-model.t.SUPPLIERCONTACT_DESIGNATION' | t:'Designation' }} |
{{ 'codbex-partners:codbex-partners-model.t.SUPPLIERCONTACT_EMAIL' | t:'Email' }} |
{{ 'codbex-partners:codbex-partners-model.t.SUPPLIERCONTACT_PHONE' | t:'Phone' }} |
+ {{ 'codbex-partners:codbex-partners-model.t.SUPPLIERCONTACT_CREATEDAT' | t:'CreatedAt' }} |
+ {{ 'codbex-partners:codbex-partners-model.t.SUPPLIERCONTACT_CREATEDBY' | t:'CreatedBy' }} |
|
@@ -48,6 +50,8 @@
{{next.Phone}}
|
+ {{next.CreatedAt}} |
+ {{next.CreatedBy}} |
diff --git a/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierNote/controller.js b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierNote/controller.js
index 0a12c34..81a244f 100644
--- a/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierNote/controller.js
+++ b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierNote/controller.js
@@ -114,6 +114,15 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
filter.$filter.offset = (pageNumber - 1) * $scope.dataLimit;
filter.$filter.limit = $scope.dataLimit;
EntityService.search(filter).then((response) => {
+ response.data.forEach(e => {
+ if (e.CreatedAt) {
+ e.CreatedAt = new Date(e.CreatedAt);
+ }
+ if (e.UpdatedAt) {
+ e.UpdatedAt = new Date(e.UpdatedAt);
+ }
+ });
+
$scope.data = response.data;
}, (error) => {
const message = error.data ? error.data.message : '';
diff --git a/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierNote/dialog-filter/controller.js b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierNote/dialog-filter/controller.js
index e791062..f0a452f 100644
--- a/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierNote/dialog-filter/controller.js
+++ b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierNote/dialog-filter/controller.js
@@ -7,6 +7,18 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale']).controlle
let params = ViewParameters.get();
if (Object.keys(params).length) {
+ 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;
@@ -34,6 +46,30 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale']).controlle
const condition = { propertyName: 'Note', operator: 'LIKE', value: `%${entity.Note}%` };
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-partners.Suppliers.SupplierNote.entitySearch', data: {
entity: entity,
filter: filter
diff --git a/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierNote/dialog-filter/index.html b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierNote/dialog-filter/index.html
index 290e4f2..609ab08 100644
--- a/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierNote/dialog-filter/index.html
+++ b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierNote/dialog-filter/index.html
@@ -33,6 +33,72 @@
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.SUPPLIERNOTE_CREATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.SUPPLIERNOTE_CREATEDBY' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.SUPPLIERNOTE_UPDATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.SUPPLIERNOTE_UPDATEDBY' | t }}
+
+
+
+
+
+
+
+
diff --git a/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierNote/dialog-window/controller.js b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierNote/dialog-window/controller.js
index b307194..bfcaf1c 100644
--- a/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierNote/dialog-window/controller.js
+++ b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierNote/dialog-window/controller.js
@@ -31,6 +31,13 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
let params = ViewParameters.get();
if (Object.keys(params).length) {
$scope.action = params.action;
+
+ 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-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierNote/dialog-window/index.html b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierNote/dialog-window/index.html
index 797613d..ca132be 100644
--- a/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierNote/dialog-window/index.html
+++ b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierNote/dialog-window/index.html
@@ -36,6 +36,88 @@
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.SUPPLIERNOTE_CREATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.SUPPLIERNOTE_CREATEDBY' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.SUPPLIERNOTE_UPDATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.SUPPLIERNOTE_UPDATEDBY' | t }}
+
+
+
+
+
+
+
+
diff --git a/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierNote/index.html b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierNote/index.html
index 488bf01..a0250b1 100644
--- a/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierNote/index.html
+++ b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/SupplierNote/index.html
@@ -29,6 +29,10 @@
| {{ 'codbex-partners:codbex-partners-model.t.SUPPLIERNOTE_NOTE' | t:'Note' }} |
+ {{ 'codbex-partners:codbex-partners-model.t.SUPPLIERNOTE_CREATEDAT' | t:'CreatedAt' }} |
+ {{ 'codbex-partners:codbex-partners-model.t.SUPPLIERNOTE_CREATEDBY' | t:'CreatedBy' }} |
+ {{ 'codbex-partners:codbex-partners-model.t.SUPPLIERNOTE_UPDATEDAT' | t:'UpdatedAt' }} |
+ {{ 'codbex-partners:codbex-partners-model.t.SUPPLIERNOTE_UPDATEDBY' | t:'UpdatedBy' }} |
|
@@ -38,6 +42,10 @@
| {{next.Note}} |
+ {{next.CreatedAt}} |
+ {{next.CreatedBy}} |
+ {{next.UpdatedAt}} |
+ {{next.UpdatedBy}} |
diff --git a/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/controller.js b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/controller.js
index 26b1bdf..aac1d13 100644
--- a/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/controller.js
+++ b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/controller.js
@@ -106,6 +106,9 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
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-partners/gen/codbex-partners/ui/Suppliers/Supplier/dialog-filter/controller.js b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/dialog-filter/controller.js
index 046ab9d..47ac724 100644
--- a/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/dialog-filter/controller.js
+++ b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/dialog-filter/controller.js
@@ -13,6 +13,12 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale']).controlle
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 +82,22 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale']).controlle
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-partners.Suppliers.Supplier.entitySearch', data: {
entity: entity,
filter: filter
diff --git a/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/dialog-filter/index.html b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/dialog-filter/index.html
index e1a7eb6..6c38157 100644
--- a/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/dialog-filter/index.html
+++ b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/dialog-filter/index.html
@@ -186,6 +186,56 @@
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.SUPPLIER_CREATEDBY' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.SUPPLIER_UPDATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.SUPPLIER_UPDATEDBY' | t }}
+
+
+
+
+
+
+
+
diff --git a/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/dialog-window/controller.js b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/dialog-window/controller.js
index 2ad112d..a900c2a 100644
--- a/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/dialog-window/controller.js
+++ b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/dialog-window/controller.js
@@ -34,6 +34,9 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
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-partners/gen/codbex-partners/ui/Suppliers/Supplier/dialog-window/index.html b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/dialog-window/index.html
index 31d8957..82a58a3 100644
--- a/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/dialog-window/index.html
+++ b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/dialog-window/index.html
@@ -226,6 +226,68 @@
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.SUPPLIER_CREATEDBY' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.SUPPLIER_UPDATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.SUPPLIER_UPDATEDBY' | t }}
+
+
+
+
+
+
+
+
diff --git a/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/index.html b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/index.html
index 8fa56ec..787b1da 100644
--- a/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/index.html
+++ b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/index.html
@@ -48,7 +48,10 @@
{{next.Fax}} |
{{next.TIN}} |
{{next.IBAN}} |
- {{next.CreatedAt}}
+ {{next.CreatedAt}} |
+ {{next.CreatedBy}} |
+ {{next.UpdatedAt}} |
+ {{next.UpdatedBy}}
diff --git a/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/main-details/controller.js b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/main-details/controller.js
index 52cabf3..27d6b5d 100644
--- a/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/main-details/controller.js
+++ b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/main-details/controller.js
@@ -58,6 +58,9 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
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.action = 'select';
});
@@ -73,6 +76,9 @@ angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntitySer
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.action = 'update';
});
diff --git a/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/main-details/index.html b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/main-details/index.html
index 849ffa0..29e5a97 100644
--- a/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/main-details/index.html
+++ b/codbex-partners/gen/codbex-partners/ui/Suppliers/Supplier/main-details/index.html
@@ -224,6 +224,68 @@
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.SUPPLIER_CREATEDBY' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.SUPPLIER_UPDATEDAT' | t }}
+
+
+
+
+
+
+
+
+
+
+ {{ 'codbex-partners:codbex-partners-model.t.SUPPLIER_UPDATEDBY' | t }}
+
+
+
+
+
+
+
+
diff --git a/codbex-partners/translations/en-US/codbex-partners.model.json b/codbex-partners/translations/en-US/codbex-partners.model.json
index 87a2c8a..61cc30d 100644
--- a/codbex-partners/translations/en-US/codbex-partners.model.json
+++ b/codbex-partners/translations/en-US/codbex-partners.model.json
@@ -84,6 +84,9 @@
"CUSTOMER_RESPONSIBLEPERSON": "ResponsiblePerson",
"CUSTOMER_IDENTIFIER": "Identifier",
"CUSTOMER_CREATEDAT": "CreatedAt",
+ "CUSTOMER_CREATEDBY": "CreatedBy",
+ "CUSTOMER_UPDATEDAT": "UpdatedAt",
+ "CUSTOMER_UPDATEDBY": "UpdatedBy",
"SUPPLIER": "Supplier",
"SUPPLIER_ID": "Id",
"SUPPLIER_FIRSTNAME": "FirstName",
@@ -96,18 +99,33 @@
"SUPPLIER_TIN": "TIN",
"SUPPLIER_IBAN": "IBAN",
"SUPPLIER_CREATEDAT": "CreatedAt",
+ "SUPPLIER_CREATEDBY": "CreatedBy",
+ "SUPPLIER_UPDATEDAT": "UpdatedAt",
+ "SUPPLIER_UPDATEDBY": "UpdatedBy",
"CUSTOMERNOTE": "CustomerNote",
"CUSTOMERNOTE_ID": "Id",
"CUSTOMERNOTE_CUSTOMER": "Customer",
"CUSTOMERNOTE_NOTE": "Note",
+ "CUSTOMERNOTE_CREATEDAT": "CreatedAt",
+ "CUSTOMERNOTE_CREATEDBY": "CreatedBy",
+ "CUSTOMERNOTE_UPDATEDAT": "UpdatedAt",
+ "CUSTOMERNOTE_UPDATEDBY": "UpdatedBy",
"SUPPLIERNOTE": "SupplierNote",
"SUPPLIERNOTE_ID": "Id",
"SUPPLIERNOTE_SUPPLIER": "Supplier",
"SUPPLIERNOTE_NOTE": "Note",
+ "SUPPLIERNOTE_CREATEDAT": "CreatedAt",
+ "SUPPLIERNOTE_CREATEDBY": "CreatedBy",
+ "SUPPLIERNOTE_UPDATEDAT": "UpdatedAt",
+ "SUPPLIERNOTE_UPDATEDBY": "UpdatedBy",
"MANUFACTURERNOTE": "ManufacturerNote",
"MANUFACTURERNOTE_ID": "Id",
"MANUFACTURERNOTE_MANUFACTURER": "Manufacturer",
"MANUFACTURERNOTE_NOTE": "Note",
+ "MANUFACTURERNOTE_CREATEDAT": "CreatedAt",
+ "MANUFACTURERNOTE_CREATEDBY": "CreatedBy",
+ "MANUFACTURERNOTE_UPDATEDAT": "UpdatedAt",
+ "MANUFACTURERNOTE_UPDATEDBY": "UpdatedBy",
"CITY": "City",
"CITY_ID": "Id",
"CITY_NAME": "Name",
@@ -130,6 +148,9 @@
"MANUFACTURER_TIN": "TIN",
"MANUFACTURER_IBAN": "IBAN",
"MANUFACTURER_CREATEDAT": "CreatedAt",
+ "MANUFACTURER_CREATEDBY": "CreatedBy",
+ "MANUFACTURER_UPDATEDAT": "UpdatedAt",
+ "MANUFACTURER_UPDATEDBY": "UpdatedBy",
"CUSTOMERCONTACT": "CustomerContact",
"CUSTOMERCONTACT_ID": "Id",
"CUSTOMERCONTACT_CUSTOMER": "Customer",
@@ -137,6 +158,8 @@
"CUSTOMERCONTACT_DESIGNATION": "Designation",
"CUSTOMERCONTACT_EMAIL": "Email",
"CUSTOMERCONTACT_PHONE": "Phone",
+ "CUSTOMERCONTACT_CREATEDAT": "CreatedAt",
+ "CUSTOMERCONTACT_CREATEDBY": "CreatedBy",
"SUPPLIERCONTACT": "SupplierContact",
"SUPPLIERCONTACT_ID": "Id",
"SUPPLIERCONTACT_SUPPLIER": "Supplier",
@@ -144,6 +167,8 @@
"SUPPLIERCONTACT_DESIGNATION": "Designation",
"SUPPLIERCONTACT_EMAIL": "Email",
"SUPPLIERCONTACT_PHONE": "Phone",
+ "SUPPLIERCONTACT_CREATEDAT": "CreatedAt",
+ "SUPPLIERCONTACT_CREATEDBY": "CreatedBy",
"MANUFACTURERCONTACT": "ManufacturerContact",
"MANUFACTURERCONTACT_ID": "Id",
"MANUFACTURERCONTACT_MANUFACTURER": "Manufacturer",
@@ -151,6 +176,8 @@
"MANUFACTURERCONTACT_DESIGNATION": "Designation",
"MANUFACTURERCONTACT_EMAIL": "Email",
"MANUFACTURERCONTACT_PHONE": "Phone",
+ "MANUFACTURERCONTACT_CREATEDAT": "CreatedAt",
+ "MANUFACTURERCONTACT_CREATEDBY": "CreatedBy",
"EMPLOYEE": "Employee",
"EMPLOYEE_ID": "Id",
"EMPLOYEE_FIRSTNAME": "First Name",
| | | |