Commit 2b482194 authored by 张永's avatar 张永

1

parent 2b387142
......@@ -982,9 +982,15 @@ public class CartQueryServiceImpl implements CartQueryService {
//+ "DELETE tCart WHERE sShopNO = '" + shopNo + "' AND nTag = 1 AND sPromoPaperNO IN (" + sqlClearPromoNo + ")" + Util.LINE_SEPARATOR
//+ "UPDATE tCart SET sPromoGroupNO = NULL, sPromoPaperNO = NULL WHERE sShopNO = '" + shopNo + "' AND sPromoPaperNO IN (" + sqlClearPromoNo + ")" + Util.LINE_SEPARATOR
//+ "UPDATE tCart SET sPromoGroupNO = NULL, sPromoPaperNO = NULL WHERE sShopNO = '" + shopNo + "' AND sPromoPaperNO NOT IN (" + sqlCustBwList + ")";
String sqlACart = "select t.*, ap.nRealSalePrice nApSalePrice from V_Cart t left join tAgentCustTypePrice ap on ap.sCustTypeID = '" + sCustTypeID + "'"
+ " and ap.sAgentContractNO = t.sAgentContractNO and ap.nGoodsID = t.nGoodsID where t.sOrgNO = '" + orgNo + "' and t.sShopNO = '" + shopNo + "' and ap.sShopTypeID = '" + sShopTypeID + "' and ap.sUnitTypeID = '' order by t.nIdx";
String sqlACart = "select t.*, ap.nRealSalePrice nApSalePrice " +
" from V_Cart t left join tAgentCustTypePrice ap on ap.sCustTypeID = '" + sCustTypeID + "'" +
" and ap.sShopTypeID = '" + sShopTypeID + "' " +
" and ap.sUnitTypeID = ''" +
" and ap.sAgentContractNO = t.sAgentContractNO " +
" and ap.nGoodsID = t.nGoodsID " +
" where t.sOrgNO = '" + orgNo + "' " +
" and t.sShopNO = '" + shopNo + "' " +
" order by t.nIdx";
String sqlp = ""
+ " SELECT "
+ " tt.sPromoPaperNO, "
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment