Commit 1dd7c6ef authored by Quxl's avatar Quxl

x

parent 6dcc3bfd
...@@ -507,6 +507,9 @@ public class GoodsServiceImpl implements GoodsService { ...@@ -507,6 +507,9 @@ public class GoodsServiceImpl implements GoodsService {
public Map<String, Map<String, Object>> queryStockPrice(String orgNo, String shopNo, String[] uidAry) { public Map<String, Map<String, Object>> queryStockPrice(String orgNo, String shopNo, String[] uidAry) {
List<String> args = new ArrayList<String>(); List<String> args = new ArrayList<String>();
for(String uid : uidAry) { for(String uid : uidAry) {
if(StringUtil.isBlank(uid)) {
continue;
}
String[] kv = uid.split(":", 2); String[] kv = uid.split(":", 2);
args.add("(sAgentContractNO = '" + kv[0] + "' and nGoodsID = " + kv[1] + ")"); args.add("(sAgentContractNO = '" + kv[0] + "' and nGoodsID = " + kv[1] + ")");
......
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