|
|
@@ -308,6 +308,17 @@ public class ProductController {
|
|
|
return productService.deleteBatch(ProductConstant.NSTANDARD, isPerson);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 批量删除所有的非标的产品
|
|
|
+ * @param isPerson 是否是个人
|
|
|
+ * @return ResultMap
|
|
|
+ */
|
|
|
+ @RequestMapping(value = "/all", method = RequestMethod.DELETE)
|
|
|
+ public ResultMap deleteUnstandardByBatch(Integer isPerson, String type) {
|
|
|
+ logger.info("删除非标物料信息:操作人:" + SystemSession.getUser().getUserName());
|
|
|
+ return productService.deleteBatch(type, isPerson);
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* 批量删除所有的标准的产品
|