|
|
@@ -10,6 +10,7 @@ import com.goafanti.common.utils.excel.NewExcelUtil;
|
|
|
import com.goafanti.core.shiro.token.TokenManager;
|
|
|
import com.goafanti.expenseAccount.bo.*;
|
|
|
import com.goafanti.expenseAccount.service.ExpenseAccountService;
|
|
|
+import com.goafanti.organization.bo.OrganizationListOut;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.validation.BindingResult;
|
|
|
@@ -431,4 +432,15 @@ public class ExpenseAccountController extends CertifyApiController {
|
|
|
return null;
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 获取报销部门设置
|
|
|
+ * @param id
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @RequestMapping(value = "/getDepDetails",method = RequestMethod.GET)
|
|
|
+ public Result<OrganizationListOut> getDepDetails(Integer id){
|
|
|
+ Result res= new Result();
|
|
|
+ return res.data(expenseAccountService.getDepDetails(id));
|
|
|
+ }
|
|
|
+
|
|
|
}
|