Browse Source

商品列表增加返回数据

hu 2 months ago
parent
commit
3a4afddfeb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/custom/restcontroller/webmanage/sale/item/Item.java

+ 1 - 1
src/custom/restcontroller/webmanage/sale/item/Item.java

@@ -599,7 +599,7 @@ public class Item extends Controller {
     }
 
     public QuerySQL queryList(String where) throws YosException {
-        QuerySQL querySQL = SQLFactory.createQuerySQL(this, "plm_item","itemid");
+        QuerySQL querySQL = SQLFactory.createQuerySQL(this, "plm_item","*");
         querySQL.setTableAlias("t1");
         querySQL.addJoinTable(JOINTYPE.left, "plm_unit", "t2", "t2.unitid = t1.unitid AND t2.siteid = t1.siteid",
                 "unitname");