Commit fdcca244 authored by 季圣华's avatar 季圣华
Browse files

增加供应商的导入功能(完善)

parent 74fc3875
......@@ -408,8 +408,8 @@ public class SupplierController {
s.setAccountnumber(ExcelUtils.getContent(src, i, 14));
s.setTaxrate(parseDoubleEx(ExcelUtils.getContent(src, i, 15)));
String enabled = ExcelUtils.getContent(src, i, 16);
s.setIsystem(Byte.parseByte("1"));
s.setEnabled(enabled.equals("启用")? true: false);
s.setIsystem(Byte.parseByte("1"));
sList.add(s);
}
info = supplierService.importExcel(sList);
......
Supports Markdown
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