feat(cost): 新增生产月报复制功能,修复考勤校验参数问题,优化表格列操作

This commit is contained in:
2026-05-27 13:19:55 +08:00
parent 454d8de6a2
commit e95e9adfcd
6 changed files with 188 additions and 43 deletions

View File

@@ -42,3 +42,12 @@ export function delProdReport(reportId) {
method: 'delete'
})
}
// 复制生产月报
export function copyProdReport(sourceId, data) {
return request({
url: '/cost/prodReport/copy/' + sourceId,
method: 'post',
data: data
})
}