|
|
@@ -281,6 +281,7 @@ public class ProductController {
|
|
|
*/
|
|
|
@RequestMapping(value = "/unstandard", method = RequestMethod.DELETE)
|
|
|
private ResultMap deleteUnstandardByBatch(Integer isPerson) {
|
|
|
+ logger.info("删除非标物料信息:操作人:" + SystemSession.getUser().getUserName());
|
|
|
return productService.deleteBatch(ProductConstant.NSTANDARD, isPerson);
|
|
|
}
|
|
|
|
|
|
@@ -289,6 +290,7 @@ public class ProductController {
|
|
|
*/
|
|
|
@RequestMapping(value = "/standard", method = RequestMethod.DELETE)
|
|
|
private ResultMap deleteStandardByBatch(Integer isPerson) {
|
|
|
+ logger.info("删除标准物料信息:操作人:" + SystemSession.getUser().getUserName());
|
|
|
return productService.deleteBatch(ProductConstant.STANDARD, isPerson);
|
|
|
}
|
|
|
|