From e39b14a4df5043b8ec1398bde44d7e4550d00c49 Mon Sep 17 00:00:00 2001 From: jiangyong27 Date: Thu, 3 Apr 2025 11:50:22 +0800 Subject: [PATCH] paychannel --- common/model/staff_salary.go | 8 +++++--- common/model/staff_user.go | 1 + server/service/staff_salary.go | 6 ++++++ 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/common/model/staff_salary.go b/common/model/staff_salary.go index a10a4eb..d02fc86 100644 --- a/common/model/staff_salary.go +++ b/common/model/staff_salary.go @@ -9,9 +9,11 @@ import ( ) var ( - StaffSalaryStatusWait = 1 - StaffSalaryStatusPayed = 2 - StaffSalaryStatusPause = 3 + StaffSalaryStatusWait = 1 + StaffSalaryStatusPayed = 2 + StaffSalaryStatusPause = 3 + StaffSalaryPaymentBank = "bank" + StaffSalaryPaymentAlipay = "alipay" ) type SalaryBillLine struct { diff --git a/common/model/staff_user.go b/common/model/staff_user.go index ed408a2..4df3076 100644 --- a/common/model/staff_user.go +++ b/common/model/staff_user.go @@ -33,6 +33,7 @@ type UserConfig struct { SalaryCalcutor string `json:"salary_calcutor"` //工资计算器 PerftTarget string `json:"perft_target"` //绩效目标 UserRole string `json:"user_role"` //员工角色 + PayChannel string `json:"pay_channel"` //支付渠道 } type StaffUser struct { diff --git a/server/service/staff_salary.go b/server/service/staff_salary.go index 3eed4d0..eac4f4a 100644 --- a/server/service/staff_salary.go +++ b/server/service/staff_salary.go @@ -182,6 +182,9 @@ func (s *StaffSalary) Agent(cid int64, month string, ctx *gin.Context) { if userInfo == nil { continue } + if userInfo.GetConfig().PayChannel != model.StaffSalaryPaymentBank { + continue + } userSalary := userInfo.GetSalary() if userSalary.Base == "" { continue @@ -245,6 +248,9 @@ func (s *StaffSalary) Bank(cid int64, month string, ctx *gin.Context) { if userInfo == nil { continue } + if userInfo.GetConfig().PayChannel != model.StaffSalaryPaymentBank { + continue + } userSalary := userInfo.GetSalary() userPayee := userInfo.GetPayee() if userSalary.Base == "" {