Commit 3b7599b1 by huluobin

update

parent a9613a15
......@@ -133,7 +133,7 @@ public class CostController {
@RequestParam String filePath) {
costService = CostServiceFactory.getCostService(costNo);
CostDomain costDomain = new CostDomain();
CostDomain costDomain = costService.getCostByCostNo(costNo);
costDomain.setCostNo(costNo);
costDomain.setHasInvoice(1);
costDomain.setFilePath(filePath);
......@@ -432,7 +432,7 @@ public class CostController {
@RequestParam Integer hasInvoice,
@RequestParam Integer updateuserid) {
costService= CostServiceFactory.getCostService();
costService = CostServiceFactory.getCostService();
CostDomain costDomain = costService.getCostByCostNo(costNo);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment