浏览代码

bug修复

hu 5 月之前
父节点
当前提交
2c7aacafc2
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/custom/restcontroller/webmanage/sale/stockbill/stockbillitems.java

+ 1 - 1
src/custom/restcontroller/webmanage/sale/stockbill/stockbillitems.java

@@ -240,7 +240,7 @@ public class stockbillitems extends Controller {
                 if(StringUtils.isBlank(rowscount.get(0).getString("name"))
                         || StringUtils.isBlank(rowscount.get(0).getString("phonenumber"))
                         ||  StringUtils.isBlank(rowscount.get(0).getString("address"))){
-                    Rows orderRows =dbConnect.runSqlQuery("select * from sa_order where sa+sa_orderid="+iteminfo.getLongValue("sa_orderid"));
+                    Rows orderRows =dbConnect.runSqlQuery("select * from sa_order where sa_orderid="+iteminfo.getLongValue("sa_orderid"));
                     if(orderRows.isNotEmpty()){
                         sqlList.add("update st_stockbill set name='"+orderRows.get(0).getString("contact")+"',phonenumber='"+orderRows.get(0).getString("phonenumber")+"',address='"+orderRows.get(0).getString("address")+"' where st_stockbillid="+st_stockbillid);
                     }