Skip to content
Snippets Groups Projects
Commit c97d5fe7 authored by Pascal Neub's avatar Pascal Neub
Browse files

[Projekt: xRM-Sales][TicketNr.: 2003545][Preisvorschlag im Produktpreis...

[Projekt: xRM-Sales][TicketNr.: 2003545][Preisvorschlag im Produktpreis funktioniert in der 2021.2 nicht mehr]
parent d6f174d6
No related branches found
No related tags found
No related merge requests found
......@@ -69,6 +69,7 @@
<mandatory v="true" />
<stateProcess>%aditoprj%/entity/Productprice_entity/entityfields/product_id/stateProcess.js</stateProcess>
<valueProcess>%aditoprj%/entity/Productprice_entity/entityfields/product_id/valueProcess.js</valueProcess>
<displayValueProcess>%aditoprj%/entity/Productprice_entity/entityfields/product_id/displayValueProcess.js</displayValueProcess>
</entityField>
<entityField>
<name>CONTACT_ID</name>
......@@ -117,10 +118,6 @@
<valueProcess>%aditoprj%/entity/Productprice_entity/entityfields/pricelist/valueProcess.js</valueProcess>
<displayValueProcess>%aditoprj%/entity/Productprice_entity/entityfields/pricelist/displayValueProcess.js</displayValueProcess>
<onValueChange>%aditoprj%/entity/Productprice_entity/entityfields/pricelist/onValueChange.js</onValueChange>
<onValueChangeTypes>
<element>MASK</element>
<element>PROCESS_SETVALUE</element>
</onValueChangeTypes>
</entityField>
<entityParameter>
<name>ProductId_param</name>
......
import("system.result");
import("system.neon");
import("system.vars");
import("Sql_lib");
if(vars.get("$sys.operatingstate") === neon.OPERATINGSTATE_NEW)
{
result.string(
newSelect("PRODUCT.PRODUCTNAME")
.from("PRODUCT")
.where("PRODUCT.PRODUCTID", vars.get("$field.PRODUCT_ID"))
.cell()
);
}
import("Offer_lib");
import("Contact_lib");
import("OfferOrder_lib");
import("system.neon");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment