|
@@ -11,6 +11,8 @@ import org.jeecg.common.dto.payment.ProjectArchiveReqDTO;
|
|
|
import org.jeecg.common.dto.payment.ProjectArchiveRespDTO;
|
|
|
import org.jeecg.common.dto.payment.SlieReqDTO;
|
|
|
import org.jeecg.common.dto.payment.SlipAddReqDTO;
|
|
|
+import org.jeecg.common.dto.payment.SlipPriceReqDTO;
|
|
|
+import org.jeecg.common.dto.payment.SlipPriceRespDTO;
|
|
|
import org.jeecg.common.dto.payment.SlipRespDTO;
|
|
|
import org.jeecg.common.exception.JeecgBootException;
|
|
|
import org.jeecg.common.system.query.QueryGenerator;
|
|
@@ -190,4 +192,15 @@ public class ManagerPaymentAndReceiptSlipController {
|
|
|
result.setSuccess(true);
|
|
|
return result;
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+ @ApiOperation(value = "收付款单金额", notes = "收付款单金额")
|
|
|
+ @GetMapping(value = "/getSlipPrice")
|
|
|
+ public Result<List<SlipPriceRespDTO>> getSlipPrice(SlipPriceReqDTO reqDTO){
|
|
|
+ Result<List<SlipPriceRespDTO>> result = new Result<List<SlipPriceRespDTO>>();
|
|
|
+ List<SlipPriceRespDTO> list = managerPaymentAndReceiptSlipService.getSlipPrice(reqDTO);
|
|
|
+ result.setResult(list);
|
|
|
+ result.setSuccess(true);
|
|
|
+ return result;
|
|
|
+ }
|
|
|
}
|