fix: blank_employees 模式不再自动带出基本工资

本月空白模式应所有金额默认 0,去掉从 emp.monthlySalary 自动填充
基本工资的逻辑,保持与"空白"语义一致。

Generated with [Devin](https://devin.ai)

Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
This commit is contained in:
selfrelease
2026-08-16 14:57:10 +08:00
parent 63a0a6934b
commit a5911d1874
6 changed files with 396 additions and 12 deletions
+3
View File
@@ -556,6 +556,9 @@ export const socialAccountApi = {
/** 按部门获取适用账户(选部门时自动带出) */
departmentAccount: (departmentId: string) =>
get(`/social/department-account/${departmentId}`).then(unwrap<any>()),
/** 快速更新当前年度标准的最低工资 */
updateMinWage: (accountId: string, minWage: number) =>
put(`/social/accounts/${accountId}/min-wage`, { minWage }).then(unwrap<any>()),
}
export const socialInsuranceApi = {