diff --git a/entity/Contract_entity/onValidation.js b/entity/Contract_entity/onValidation.js index e072305a2ea462bef8b4a9ab0ff9d4c9e6bf7ab0..77648d016858294bd4ed08ac0ffe845efddd9bac 100644 --- a/entity/Contract_entity/onValidation.js +++ b/entity/Contract_entity/onValidation.js @@ -9,7 +9,7 @@ var endDate = vars.get("$field.CONTRACTEND"); var errorMessage = ""; -if (DateUtils.validateBeginnBeforeEnd(startDate, endDate) === false) +if (!DateUtils.validateBeginnBeforeEnd(startDate, endDate)) errorMessage = DateUtils.getValidationFailString(); // check Duedate diff --git a/entity/Productprice_entity/Productprice_entity.aod b/entity/Productprice_entity/Productprice_entity.aod index cd09e9a74c44d926fa6d255288b8e07f2b415841..bb04523c577204fd0eb02d694e5667c37a2e450f 100644 --- a/entity/Productprice_entity/Productprice_entity.aod +++ b/entity/Productprice_entity/Productprice_entity.aod @@ -4,6 +4,7 @@ <majorModelMode>DISTRIBUTED</majorModelMode> <documentation>%aditoprj%/entity/Productprice_entity/documentation.adoc</documentation> <title>Prices</title> + <onValidation>%aditoprj%/entity/Productprice_entity/onValidation.js</onValidation> <afterOperatingState>%aditoprj%/entity/Productprice_entity/afterOperatingState.js</afterOperatingState> <recordContainer>db</recordContainer> <entityFields> @@ -70,7 +71,6 @@ <inputFormat>dd.MM.yyyy</inputFormat> <mandatory v="true" /> <valueProcess>%aditoprj%/entity/Productprice_entity/entityfields/valid_from/valueProcess.js</valueProcess> - <onValidation>%aditoprj%/entity/Productprice_entity/entityfields/valid_from/onValidation.js</onValidation> </entityField> <entityField> <name>VALID_TO</name> @@ -79,7 +79,6 @@ <resolution>DAY</resolution> <outputFormat>dd.MM.yyyy</outputFormat> <inputFormat>dd.MM.yyyy</inputFormat> - <onValidation>%aditoprj%/entity/Productprice_entity/entityfields/valid_to/onValidation.js</onValidation> </entityField> <entityField> <name>VAT</name> diff --git a/entity/Productprice_entity/entityfields/valid_from/onValidation.js b/entity/Productprice_entity/entityfields/valid_from/onValidation.js deleted file mode 100644 index 5ce849d2e8bcbeebffe0f55d327e380f6d74b257..0000000000000000000000000000000000000000 --- a/entity/Productprice_entity/entityfields/valid_from/onValidation.js +++ /dev/null @@ -1,9 +0,0 @@ -import("system.result"); -import("system.vars"); -import("Date_lib"); -import("Entity_lib"); - -var cStart = ProcessHandlingUtils.getOnValidationValue(vars.get("$field.VALID_FROM")); - -if (DateUtils.validateBeginnBeforeEnd(cStart, vars.get("$field.VALID_TO")) === false) - result.string(DateUtils.getValidationFailString()); \ No newline at end of file diff --git a/entity/Productprice_entity/entityfields/valid_from/valueProcess.js b/entity/Productprice_entity/entityfields/valid_from/valueProcess.js index e2eb1642a6585c84aed1018bc17273b0b2b2f048..fde00cab2ad74643d42064d1ae353c92972deeca 100644 --- a/entity/Productprice_entity/entityfields/valid_from/valueProcess.js +++ b/entity/Productprice_entity/entityfields/valid_from/valueProcess.js @@ -1,11 +1,9 @@ -import("system.result"); -import("system.vars"); -import("system.neon"); -import("Date_lib"); - -if(vars.get("$sys.recordstate") == neon.OPERATINGSTATE_NEW && !vars.get("$this.value")) -{ - result.string(DateUtils.getTodayUTC()); -} -else - result.string(vars.get("$this.value")); \ No newline at end of file +import("system.result"); +import("system.vars"); +import("system.neon"); +import("Date_lib"); + +if(vars.get("$sys.recordstate") == neon.OPERATINGSTATE_NEW && !vars.get("$this.value")) +{ + result.string(DateUtils.getTodayUTC()); +} \ No newline at end of file diff --git a/entity/Productprice_entity/entityfields/valid_to/onValidation.js b/entity/Productprice_entity/entityfields/valid_to/onValidation.js deleted file mode 100644 index a25d6a1147f17bff05f894c55618532bd96a0807..0000000000000000000000000000000000000000 --- a/entity/Productprice_entity/entityfields/valid_to/onValidation.js +++ /dev/null @@ -1,9 +0,0 @@ -import("system.result"); -import("system.vars"); -import("Date_lib"); -import("Entity_lib"); - -var cEnd = ProcessHandlingUtils.getOnValidationValue(vars.get("$field.VALID_TO")); - -if (DateUtils.validateBeginnBeforeEnd(vars.get("$field.VALID_FROM"), cEnd) === false) - result.string(DateUtils.getValidationFailString()); \ No newline at end of file diff --git a/entity/Productprice_entity/onValidation.js b/entity/Productprice_entity/onValidation.js new file mode 100644 index 0000000000000000000000000000000000000000..6e3b8b5612c52a2218472d4336494029991dd648 --- /dev/null +++ b/entity/Productprice_entity/onValidation.js @@ -0,0 +1,9 @@ +import("system.result"); +import("Date_lib"); +import("system.vars"); + +var startDate = vars.get("$field.VALID_FROM"); +var endDate = vars.get("$field.VALID_TO"); + +if (!DateUtils.validateBeginnBeforeEnd(startDate, endDate)) + result.string(DateUtils.getValidationFailString()); \ No newline at end of file diff --git a/entity/Salesproject_entity/onValidation.js b/entity/Salesproject_entity/onValidation.js index de8d3eaf90926cec053f92d16e35d4b8d5fd9fab..e0b1e589a7543108c938f3dbb1d9c75b58908753 100644 --- a/entity/Salesproject_entity/onValidation.js +++ b/entity/Salesproject_entity/onValidation.js @@ -5,5 +5,5 @@ import("system.vars"); var startDate = vars.get("$field.STARTDATE"); var endDate = vars.get("$field.ENDDATE"); -if (DateUtils.validateBeginnBeforeEnd(startDate, endDate) === false) +if (!DateUtils.validateBeginnBeforeEnd(startDate, endDate)) result.string(DateUtils.getValidationFailString()); \ No newline at end of file diff --git a/process/Date_lib/process.js b/process/Date_lib/process.js index f4121551b8f86159b971b9e69247f8749f2c2df6..7173ddf8767235aa0032cbb9b20418ac7f66671d 100644 --- a/process/Date_lib/process.js +++ b/process/Date_lib/process.js @@ -18,7 +18,9 @@ function DateUtils() {} * @result {Boolean|null} Boolean if it was able to check smth or null if the input values were not valid */ DateUtils.validateBeginnBeforeEnd = function(pStart, pEnd) { - if (pStart == "" || pStart == null || pEnd == "" || pEnd == null) return null; + if (!pStart || !pEnd) + return null; + return pStart <= pEnd; }