|
|
@@ -189,7 +189,7 @@ public class ProductController {
|
|
|
logger.log("物料资料", "导出Excel列表", "导出全部Excel列表");
|
|
|
return modelAndView;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
/**
|
|
|
* 批量修改物料数据
|
|
|
*
|
|
|
@@ -265,7 +265,7 @@ public class ProductController {
|
|
|
private List<Component> matchByCode(String code) {
|
|
|
return productService.matchByCode(code);
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
/**
|
|
|
* 查看匹配的物料信息(全部)
|
|
|
*/
|
|
|
@@ -337,18 +337,19 @@ public class ProductController {
|
|
|
List<Long> idStrings = JSONObject.parseArray(ids, Long.class);
|
|
|
return productService.updateall(idStrings);
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
/**
|
|
|
* 全部更新
|
|
|
*
|
|
|
* @return
|
|
|
*/
|
|
|
- @RequestMapping(value = "/updateByEn", method = RequestMethod.POST)
|
|
|
- @ResponseBody
|
|
|
- public ModelMap updateByEn() {
|
|
|
- return productService.updateByEn();
|
|
|
- }
|
|
|
-
|
|
|
+ /*
|
|
|
+ * @RequestMapping(value = "/updateByEn", method = RequestMethod.POST)
|
|
|
+ *
|
|
|
+ * @ResponseBody public ModelMap updateByEn() { return
|
|
|
+ * productService.updateByEn(); }
|
|
|
+ */
|
|
|
+
|
|
|
/**
|
|
|
* 单个匹配
|
|
|
*
|