|
@@ -164,6 +164,9 @@ public class EarmarkController {
|
|
|
@RequestParam(value = "printState",required = false) Integer printState,
|
|
|
@RequestParam(value = "quantity",required = true) Integer quantity,
|
|
|
HttpServletResponse response) throws IOException {
|
|
|
+ log.info("applyId="+applyId);
|
|
|
+ log.info("printState="+printState);
|
|
|
+ log.info("quantity="+quantity);
|
|
|
//
|
|
|
earmarkService.exportEarmarkByApply(applyId,printState,quantity,response);
|
|
|
}
|
|
@@ -174,7 +177,7 @@ public class EarmarkController {
|
|
|
* @Params : [ids, printState, quantity, response]
|
|
|
* @Return : void
|
|
|
*
|
|
|
- * @Author : ZhuoNing
|
|
|
+ * @Author : ZhuoNingc
|
|
|
* @Date : 2021/11/9
|
|
|
* @Time : 19:05
|
|
|
*/
|
|
@@ -183,6 +186,9 @@ public class EarmarkController {
|
|
|
@RequestParam(value = "printState",required = false) Integer printState,
|
|
|
@RequestParam(value = "quantity",required = true) Integer quantity,
|
|
|
HttpServletResponse response) throws IOException {
|
|
|
+ log.info("ids="+ids);
|
|
|
+ log.info("printState="+printState);
|
|
|
+ log.info("quantity="+quantity);
|
|
|
//
|
|
|
earmarkService.exportEarmarkByEarmark(ids,printState,quantity,response);
|
|
|
}
|