Skip to content
Snippets Groups Projects
Commit 19c317c2 authored by Johannes Hörmann's avatar Johannes Hörmann
Browse files

presets in offer

parent 6cf95eee
No related branches found
No related tags found
No related merge requests found
......@@ -60,6 +60,7 @@
<title>Probability</title>
<consumer>KeywordProbabilities</consumer>
<contentType>NUMBER</contentType>
<valueProcess>%aditoprj%/entity/Offer_entity/entityfields/probability/valueProcess.js</valueProcess>
<displayValueProcess>%aditoprj%/entity/Offer_entity/entityfields/probability/displayValueProcess.js</displayValueProcess>
</entityField>
<entityField>
......
import("Keyword_lib");
import("KeywordRegistry_basic");
import("AttributeRegistry_basic");
import("system.neon");
import("system.result");
......@@ -11,13 +13,19 @@ if (vars.exists("$param.OfferDeliveryTerm_param") && vars.get("$param.OfferDeliv
}
else if (vars.get("$sys.recordstate") == neon.OPERATINGSTATE_NEW)
{
var presetValue = "";
var contactIds = ContactUtils.getPersOrgIds(vars.getString("$field.CONTACT_ID"))
if (contactIds.length >= 3 && contactIds[2])
{
var orgContactId = ContactUtils.getOrgContactId(contactIds[2]);
if (orgContactId)
{
result.string(AttributeRelationUtils.getAttribute($AttributeRegistry.deliveryTerm(), orgContactId));
presetValue = AttributeRelationUtils.getAttribute($AttributeRegistry.deliveryTerm(), orgContactId);
}
}
if (presetValue)
result.string(presetValue);
else
result.string(KeywordUtils.getFirst($KeywordRegistry.deliveryTerm()));
}
\ No newline at end of file
import("Keyword_lib");
import("Contact_lib");
import("AttributeRegistry_basic");
import("KeywordRegistry_basic");
import("system.neon");
import("system.result");
import("system.vars");
......@@ -11,13 +13,19 @@ if (vars.exists("$param.OfferPaymentTerm_param") && vars.get("$param.OfferPaymen
}
else if (vars.get("$sys.recordstate") == neon.OPERATINGSTATE_NEW)
{
var presetValue = "";
var contactIds = ContactUtils.getPersOrgIds(vars.getString("$field.CONTACT_ID"))
if (contactIds.length >= 3 && contactIds[2])
{
var orgContactId = ContactUtils.getOrgContactId(contactIds[2]);
if (orgContactId)
{
result.string(AttributeRelationUtils.getAttribute($AttributeRegistry.paymentTerm(), orgContactId));
presetValue = AttributeRelationUtils.getAttribute($AttributeRegistry.paymentTerm(), orgContactId);
}
}
if (presetValue)
result.string(presetValue);
else
result.string(KeywordUtils.getFirst($KeywordRegistry.paymentTerm()));
}
\ No newline at end of file
import("Keyword_lib");
import("KeywordRegistry_basic");
import("AttributeRegistry_basic");
import("system.neon");
import("system.result");
import("system.vars");
import("Attribute_lib");
import("Contact_lib");
if (vars.get("$sys.recordstate") == neon.OPERATINGSTATE_NEW)
{
result.string(KeywordUtils.getFirst($KeywordRegistry.offerProbability()));
}
\ No newline at end of file
......@@ -173,6 +173,21 @@ KeywordUtils.exists = function(pKeyId, pContainerName)
return parseInt(db.cell(sql)) > 0;
};
/**
* Get the first keyword Keyid from a container
*
* @param {String} pContainerName name of the keyword container that shall be resolved
* @param {String} [pLocale=current client language] specifies the locale for translating the title; can be false if nothing shalle be translated
*
* @return {String} the keyid or ""
*/
KeywordUtils.getFirst = function(pContainerName, pLocale)
{
var keywordData = KeywordData.getSimpleData(pContainerName, pLocale);
return (keywordData && keywordData.length > 0 ? keywordData[0][0] : "");
};
/**
* get the translated container name.
*
......
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