更新
This commit is contained in:
@@ -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 })
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user