From 6e0caef2f367527a8774ed2fc145cbf3f84d08b3 Mon Sep 17 00:00:00 2001
From: Pascal Neub <p.neub@adito.de>
Date: Wed, 22 Dec 2021 15:23:53 +0100
Subject: [PATCH] [Projekt: xRM-Sales][TicketNr.: 2002148][Angebot/Beleg:
 Fehlerhafte Berechnung...

---
 entity/Prod2prod_entity/Prod2prod_entity.aod   |  1 +
 entity/Prod2prod_entity/afterSave.js           | 16 ++++++++++++++++
 language/_____LANGUAGE_de/_____LANGUAGE_de.aod |  4 ++++
 3 files changed, 21 insertions(+)
 create mode 100644 entity/Prod2prod_entity/afterSave.js

diff --git a/entity/Prod2prod_entity/Prod2prod_entity.aod b/entity/Prod2prod_entity/Prod2prod_entity.aod
index ead47cfc2b..d15a212061 100644
--- a/entity/Prod2prod_entity/Prod2prod_entity.aod
+++ b/entity/Prod2prod_entity/Prod2prod_entity.aod
@@ -4,6 +4,7 @@
   <title>Parts list</title>
   <majorModelMode>DISTRIBUTED</majorModelMode>
   <documentation>%aditoprj%/entity/Prod2prod_entity/documentation.adoc</documentation>
+  <afterSave>%aditoprj%/entity/Prod2prod_entity/afterSave.js</afterSave>
   <titlePlural>Parts list</titlePlural>
   <recordContainer>jDito</recordContainer>
   <entityFields>
diff --git a/entity/Prod2prod_entity/afterSave.js b/entity/Prod2prod_entity/afterSave.js
new file mode 100644
index 0000000000..63e2dbbb08
--- /dev/null
+++ b/entity/Prod2prod_entity/afterSave.js
@@ -0,0 +1,16 @@
+import("system.neon");
+import("system.vars");
+import("system.question");
+import("system.translate");
+import("Sql_lib");
+
+if(vars.get("$local.recordstate") == neon.OPERATINGSTATE_NEW)
+{
+    var sql = new SqlBuilder().selectCount().from("PRODUCTPRICE")
+        .where("PRODUCTPRICE.PRODUCT_ID", vars.get("$field.DEST_ID"));
+    if(sql.cell() == 0)
+    {
+        var message = translate.text("Please add the price of the product");
+        question.showMessage(message, question.WARNING, translate.text("Warning"));
+    }
+}
diff --git a/language/_____LANGUAGE_de/_____LANGUAGE_de.aod b/language/_____LANGUAGE_de/_____LANGUAGE_de.aod
index 68792eaf93..b22cf1ca90 100644
--- a/language/_____LANGUAGE_de/_____LANGUAGE_de.aod
+++ b/language/_____LANGUAGE_de/_____LANGUAGE_de.aod
@@ -11945,6 +11945,10 @@
       <key>Adito dark blue</key>
       <value>Adito dunkelblau</value>
     </entry>
+    <entry>
+      <key>Please add the price of the product</key>
+      <value>Bitte Preis am Produkt pflegen</value>
+    </entry>
   </keyValueMap>
   <font name="Dialog" style="0" size="11" />
 </language>
-- 
GitLab