salary pay

This commit is contained in:
jiangyong 2025-04-04 09:31:50 +08:00
parent 68e58ce194
commit 716e33aeb9
5 changed files with 15 additions and 13 deletions

View File

@ -3,7 +3,6 @@ package main
import ( import (
"enterprise/common/config" "enterprise/common/config"
"enterprise/common/global" "enterprise/common/global"
"enterprise/common/model"
_ "enterprise/service/salary_calculator" _ "enterprise/service/salary_calculator"
"enterprise/worker" "enterprise/worker"
) )
@ -16,10 +15,5 @@ func main() {
worker.InitCorp() worker.InitCorp()
approve := worker.NewApproval(1002)
approve.Sync("202503", model.ApprovalTypeCheckin)
approve.Sync("202503", model.ApprovalTypeVacation)
approve.Sync("202503", model.ApprovalTypeRefund)
approve.Sync("202503", model.ApprovalTypePayment)
select {} select {}
} }

View File

@ -83,6 +83,9 @@ func initDB() error {
db.Logger = &DBLogger{threshold: int64(2000)} db.Logger = &DBLogger{threshold: int64(2000)}
dao.SetDB(db) dao.SetDB(db)
if !config.IsProdEnv() {
return nil
}
//unify //unify
unifyDsn := fmt.Sprintf("%s:%s@tcp(%s:%d)/%s", cfg.UnifyMysql.User, unifyDsn := fmt.Sprintf("%s:%s@tcp(%s:%d)/%s", cfg.UnifyMysql.User,
cfg.UnifyMysql.Pass, cfg.UnifyMysql.Host, cfg.UnifyMysql.Port, cfg.UnifyMysql.Db) cfg.UnifyMysql.Pass, cfg.UnifyMysql.Host, cfg.UnifyMysql.Port, cfg.UnifyMysql.Db)
@ -104,6 +107,7 @@ func initDB() error {
} }
db.Logger = &DBLogger{threshold: int64(2000)} db.Logger = &DBLogger{threshold: int64(2000)}
dao.SetCorpDB(db) dao.SetCorpDB(db)
return nil return nil
} }

View File

@ -20,6 +20,10 @@ var (
corpEnterpriseMutex sync.Mutex corpEnterpriseMutex sync.Mutex
) )
func init() {
corpEnterprise = make(map[int64]*work.Work)
}
func initWxWork() (*work.Work, error) { func initWxWork() (*work.Work, error) {
cfg := config.GetConfig() cfg := config.GetConfig()
client, err := work.NewWork(&work.UserConfig{ client, err := work.NewWork(&work.UserConfig{
@ -55,8 +59,8 @@ func getWxWork(corpId int64) (*work.Work, error) {
cfg := corp.GetConfig() cfg := corp.GetConfig()
client, err := work.NewWork(&work.UserConfig{ client, err := work.NewWork(&work.UserConfig{
CorpID: cfg.CorpId, CorpID: cfg.CorpId,
AgentID: cast.ToInt(cfg.PayAgent), AgentID: cast.ToInt(cfg.EnterpriseAgent),
Secret: cfg.PaySecret, Secret: cfg.EnterpriseSecret,
OAuth: work.OAuth{ OAuth: work.OAuth{
Callback: "https://wecom.artisan-cloud.com/callback", Callback: "https://wecom.artisan-cloud.com/callback",
Scopes: nil, Scopes: nil,
@ -107,7 +111,7 @@ func SendCorpMessage(corpId int64, user []string, content string) error {
message := &request.RequestMessageSendText{} message := &request.RequestMessageSendText{}
message.ToUser = strings.Join(receivers, "|") message.ToUser = strings.Join(receivers, "|")
message.MsgType = "text" message.MsgType = "text"
message.AgentID = cast.ToInt(corp.GetConfig().PayAgent) message.AgentID = cast.ToInt(corp.GetConfig().EnterpriseAgent)
message.Text = &request.RequestText{Content: content} message.Text = &request.RequestText{Content: content}
if _, err := client.Message.SendText(context.Background(), message); err != nil { if _, err := client.Message.SendText(context.Background(), message); err != nil {

View File

@ -11,7 +11,7 @@ pass = "fffasda#@2error"
db = "enterprise" db = "enterprise"
[unify_mysql] [unify_mysql]
host = "192.168.2.50" host = ""
port = 23307 port = 23307
user = "unify" user = "unify"
pass = "MDE2LCJIYXNoSWQiOjY" pass = "MDE2LCJIYXNoSWQiOjY"
@ -19,7 +19,7 @@ db = "unify"
threshold = 5000 threshold = 5000
[corp_mysql] [corp_mysql]
host = "192.168.2.50" host = ""
port = 13307 port = 13307
user = "corp" user = "corp"
pass = "UvFwai9N_Nx2zgny" pass = "UvFwai9N_Nx2zgny"

View File

@ -52,7 +52,7 @@ func InitCorp1002(cron *gocron.Scheduler) {
}) })
//10号晚上8点发送工资单 //10号晚上8点发送工资单
cron.Every(1).Month(4).At("00:50").Do(func() { cron.Every(1).Month(4).At("09:40").Do(func() {
go staff.SendStaffSalaryBill(corpId, time.Now().AddDate(0, -1, 0).Format("200601")) go staff.SendStaffSalaryBill(corpId, time.Now().AddDate(0, -1, 0).Format("200601"))
go staff.PayStaffSalary(corpId, time.Now().AddDate(0, -1, 0).Format("200601")) go staff.PayStaffSalary(corpId, time.Now().AddDate(0, -1, 0).Format("200601"))
}) })
@ -93,7 +93,7 @@ func InitCorp1000(cron *gocron.Scheduler) {
}) })
//10号晚上8点发送工资单 //10号晚上8点发送工资单
cron.Every(1).Month(4).At("00:55").Do(func() { cron.Every(1).Month(4).At("09:40").Do(func() {
go NewStaff().SendStaffSalaryBill(corpId, time.Now().AddDate(0, -1, 0).Format("200601")) go NewStaff().SendStaffSalaryBill(corpId, time.Now().AddDate(0, -1, 0).Format("200601"))
go NewStaff().PayStaffSalary(corpId, time.Now().AddDate(0, -1, 0).Format("200601")) go NewStaff().PayStaffSalary(corpId, time.Now().AddDate(0, -1, 0).Format("200601"))
}) })