|
|
@@ -431,13 +431,13 @@ public class ExpenseAccountController extends CertifyApiController {
|
|
|
* @return
|
|
|
*/
|
|
|
@RequestMapping(value = "/updateTypeOther",method = RequestMethod.POST)
|
|
|
- public Result updateTypeOther(Integer id ,String typeOther,String remarks){
|
|
|
+ public Result updateTypeOther(Integer id ,String typeOther,String remarks,String orderNo){
|
|
|
Result res =new Result();
|
|
|
if (id==null){
|
|
|
res.getError().add(buildError(ErrorConstants.PARAM_EMPTY_ERROR,"编号"));
|
|
|
return res;
|
|
|
}
|
|
|
- return res.data(expenseAccountService.updateTypeOther( id, typeOther,remarks));
|
|
|
+ return res.data(expenseAccountService.updateTypeOther( id, typeOther,remarks,orderNo));
|
|
|
}
|
|
|
|
|
|
/**
|