|
|
@@ -397,6 +397,19 @@ public class ExpenseAccountController extends CertifyApiController {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
+ * 修改报销详情类型说明
|
|
|
+ */
|
|
|
+ @RequestMapping(value = "/updateDetailsTypeOther",method = RequestMethod.POST)
|
|
|
+ public Result updateDetailsTypeOther(Integer id , String typeOther){
|
|
|
+ Result res =new Result();
|
|
|
+ if (id==null){
|
|
|
+ res.getError().add(buildError(ErrorConstants.PARAM_EMPTY_ERROR,"编号"));
|
|
|
+ return res;
|
|
|
+ }
|
|
|
+ return res.data(expenseAccountService.updateDetailsTypeOther( id, typeOther));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
* 主类分类说明
|
|
|
*/
|
|
|
@RequestMapping(value = "/pushAll",method = RequestMethod.GET)
|