Skip to content
Snippets Groups Projects
Commit 921a2116 authored by Sebastian Listl's avatar Sebastian Listl :speech_balloon:
Browse files

Merge branch '1061849_FixOfferItemDisregardingType' into '2020.1'

[Projekt: Entwicklung - Neon][TicketNr.: 1061849][Anlage von Angebotsposition...

See merge request xrm/basic!312
parents aa8d7cab 57f78472
No related branches found
No related tags found
No related merge requests found
......@@ -283,8 +283,21 @@ ProductUtils.getProductDetails = function(pid, priceListFilter, additionalProduc
return priceLists[list];
}
//customer deposited price list (defined by Attribute)
if (priceListFilter.priceList != "" && priceListFilter.priceList == priceLists[list].priceList) {
return priceLists[list];
if (priceListFilter.priceList != "") {
var res;
var escape;
// runs trough the possible pricelists to find the one with the correct pricelist ("-type").
// e.g: PRICELISTSERVICE, PRICELISTSPECIAL, PRICELISTKEY, PRICELISTDEFAULT
for(var index in priceLists)
{
if (priceLists[index]["priceList"] == priceListFilter.priceList)
{
res = priceLists[index]; //The first time the condition is true the correct pricelist is found.
break; // The object is ordered by fromQuantity descending so we have to stop after the condition is true
}
}
return res;
}
//default price list
if (priceLists[list].priceList == $KeywordRegistry.productPricelist$standardList()) {
......
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