修改款号为型号、颜色去掉必填限制

This commit is contained in:
季圣华
2017-07-05 00:32:42 +08:00
parent bfb1fe531f
commit fd015b28cf
6 changed files with 10 additions and 10 deletions

View File

@@ -90,7 +90,7 @@ public class DepotItemService extends BaseService<DepotItem> implements DepotIte
WritableSheet sheet = workbook.createSheet("进销存报表", 0);
//增加列头
int[] colunmWidth = {10,10,10,10,10,15,15,15,15,15};
String[] colunmName = {"名称","","颜色","单位","单价","上月结存数量","入库数量","出库数量","本月结存数量","结存金额"};
String[] colunmName = {"名称","","颜色","单位","单价","上月结存数量","入库数量","出库数量","本月结存数量","结存金额"};
for(int i = 0 ;i < colunmWidth.length;i ++)
{
sheet.setColumnView(i,colunmWidth[i]);