Skip to content
Snippets Groups Projects
Commit 72cd2ff6 authored by Sebastian Pongratz's avatar Sebastian Pongratz :ping_pong:
Browse files

Merge branch '2021.0_1052034_warning' into '2021.0'

[Projekt: xRM-Sales][TicketNr.: 1052034][Angebotsposten, Benutzer warnen, wenn...

See merge request xrm/basic!739
parents 1377d3f5 0c135076
No related branches found
No related tags found
No related merge requests found
......@@ -74,6 +74,7 @@
<outputFormat>#,##0.00</outputFormat>
<inputFormat>#,##0.00</inputFormat>
<displayValueProcess>%aditoprj%/entity/Offeritem_entity/entityfields/price/displayValueProcess.js</displayValueProcess>
<onValidation>%aditoprj%/entity/Offeritem_entity/entityfields/price/onValidation.js</onValidation>
</entityField>
<entityField>
<name>PRODUCT_ID</name>
......
import("system.translate");
import("system.result");
import("system.vars");
var localValue = vars.get("$local.value");
if(!localValue || parseFloat(localValue) <= 0)
{
result.string(translate.text("Price could not be determined"));
}
......@@ -8100,6 +8100,9 @@
<entry>
<key>Traits have already been defined for this salesproject phase.</key>
</entry>
<entry>
<key>Price could not be determined</key>
</entry>
</keyValueMap>
<font name="Dialog" style="0" size="11" />
<sqlModels>
......
......@@ -10715,6 +10715,10 @@ Bitte Datumseingabe prüfen</value>
<key>Vacation</key>
<value>Urlaub</value>
</entry>
<entry>
<key>Price could not be determined</key>
<value>Preis konnte nicht ermittelt werden</value>
</entry>
<entry>
<key>Buying center and internal project team</key>
<value>Buyingcenter und internes Projektteam</value>
......
......@@ -8202,6 +8202,9 @@
<entry>
<key>Traits have already been defined for this salesproject phase.</key>
</entry>
<entry>
<key>Price could not be determined</key>
</entry>
</keyValueMap>
<font name="Dialog" style="0" size="11" />
</language>
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