BF: 2841057 - Pricelist updated for different Client

https://sourceforge.net/tracker/?func=detail&aid=2841057&group_id=176962&atid=879332
This commit is contained in:
trifonnt 2009-08-20 12:42:31 +00:00
parent 88679e608a
commit 02bb6c46db
1 changed files with 1 additions and 1 deletions

View File

@ -285,7 +285,7 @@ public class ImportPriceList extends SvrProcess
int M_PriceList_ID = imp.getM_PriceList_ID();
if (M_PriceList_ID == 0) {
// try to obtain the ID directly from DB
M_PriceList_ID = DB.getSQLValue(get_TrxName(), "SELECT M_PriceList_ID FROM M_PriceList WHERE Name=?", imp.getName());
M_PriceList_ID = DB.getSQLValue(get_TrxName(), "SELECT M_PriceList_ID FROM M_PriceList WHERE AD_Client_ID=? AND Name=?", m_AD_Client_ID, imp.getName());
if (M_PriceList_ID < 0)
M_PriceList_ID = 0;
}