This commit is contained in:
Your Name
2026-04-30 09:27:42 +08:00
parent dc899e4af4
commit eb782305e6
460 changed files with 10785 additions and 928 deletions
+13
View File
@@ -64,3 +64,16 @@ export function accountCostDetail(params?: any) {
export function accountCostDelete(params?: any) {
return request.post({ url: '/finance.account_cost/delete', params })
}
/** 制定业绩:按月查看各部门目标 */
export function deptPerformanceTargetMonthMatrix(params: { year_month: string }) {
return request.get({ url: '/finance.dept_performance_target/monthMatrix', params })
}
/** 制定业绩:批量保存当月目标(target_amount≤0 则清除该部门当月目标) */
export function deptPerformanceTargetBatchSave(params: {
year_month: string
items: Array<{ dept_id: number; target_amount: number; remark?: string }>
}) {
return request.post({ url: '/finance.dept_performance_target/batchSave', params })
}