invoiceManager.go 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. package service
  2. import (
  3. "ElectronicInvoice/internal/consts"
  4. "context"
  5. "github.com/gogf/gf/v2/database/gdb"
  6. "github.com/gogf/gf/v2/errors/gerror"
  7. "github.com/gogf/gf/v2/frame/g"
  8. "github.com/gogf/gf/v2/util/gconv"
  9. "strconv"
  10. "time"
  11. )
  12. var (
  13. JyInvoiceManager *InvoiceManager
  14. )
  15. type InvoiceManager struct {
  16. Auth *TripartiteAuth
  17. jobRunning bool //开票是否运行中
  18. StopRunning bool //财务占用账号,需要暂停任务
  19. Login bool //登录状态
  20. OCRPass bool //活体检测状态是否通过
  21. runPool chan bool //任务(每次只能进行一个开票任务)
  22. phoneCode chan string //短信验证码池
  23. ScanLogin chan bool //扫码登录
  24. }
  25. func init() {
  26. JyInvoiceManager = createInvoiceManager()
  27. //_, err := gcron.Add(context.Background(), "", JyInvoiceManager.RunJob, "invoiceJob")
  28. //if err != nil {
  29. // panic(err)
  30. //}
  31. //go JyInvoiceManager.RunOneJob(context.Background())//流程
  32. //go JyInvoiceManager.Demo(context.Background()) //开票
  33. //go JyInvoiceManager.RedDemo(context.Background())//红冲
  34. }
  35. func createInvoiceManager() *InvoiceManager {
  36. return &InvoiceManager{
  37. Auth: createTripartite(),
  38. Login: true, //默认已经登录
  39. OCRPass: true,
  40. runPool: make(chan bool, 1), //开票只能单线程跑
  41. phoneCode: make(chan string, 1), //手机验证码
  42. ScanLogin: make(chan bool, 1), //扫码登录通知
  43. }
  44. }
  45. func (im *InvoiceManager) ReleasePool() {
  46. <-im.runPool
  47. }
  48. func (im *InvoiceManager) MobileVerificationCode(code string) error {
  49. if code == "" {
  50. return gerror.New("验证码为空")
  51. }
  52. select {
  53. case <-time.After(time.Minute):
  54. return gerror.New("验证码接收超时")
  55. case im.phoneCode <- code:
  56. return nil
  57. }
  58. }
  59. func (im *InvoiceManager) MobileVerificationClear() error {
  60. select {
  61. case <-time.After(time.Minute):
  62. return gerror.New("清除验证码超时")
  63. case <-im.phoneCode:
  64. return nil
  65. }
  66. }
  67. // RunJob 开票定时任务
  68. func (im *InvoiceManager) RunJob(ctx context.Context) {
  69. if im.jobRunning || im.StopRunning {
  70. g.Log().Infof(ctx, "RunJob-程序本次任务中断 jobRunning:%v StopRunning:%v", im.jobRunning, im.StopRunning)
  71. return
  72. }
  73. im.jobRunning = true
  74. defer func() {
  75. im.jobRunning = false
  76. g.Log().Infof(ctx, "RunJob-开票任务完成")
  77. }()
  78. if g.Cfg().MustGet(ctx, "invoiceJob.stop", false).Bool() {
  79. g.Log().Infof(ctx, "RunJob-开票程序任务已暂停,开启请删除 config.json > invoiceJob.stop")
  80. return
  81. }
  82. if im.Login {
  83. if err := im.Auth.Login(); err != nil {
  84. g.Log().Errorf(ctx, "模拟登录异常 %v", err)
  85. return
  86. } else {
  87. g.Log().Infof(ctx, "登录成功")
  88. }
  89. }
  90. //TODO 普通蓝票任务
  91. total, okNum, err := im.simpleMakeInvoice(ctx)
  92. if err != nil {
  93. if gerror.Is(err, consts.LoginOutErr) {
  94. g.Log().Infof(ctx, "RunJob-任务中止-身份过期,需要重新登录")
  95. return
  96. }
  97. g.Log().Errorf(ctx, "RunJob-开蓝票任务异常 %v", err)
  98. } else {
  99. g.Log().Infof(ctx, "RunJob-开蓝票任务完成 共%d个 完成%d个", total, okNum)
  100. }
  101. //TODO 红票任务
  102. }
  103. // simpleMakeInvoice 简单开票
  104. func (im *InvoiceManager) simpleMakeInvoice(ctx context.Context) (total, okNum int, err error) {
  105. var (
  106. res gdb.Result
  107. )
  108. //查询需要开票的数据
  109. res, err = g.DB().Query(ctx, "SELECT * FROM invoice WHERE invoice_status=0 AND invoice_changed=0 AND invoice_variety='普通发票(电子发票)' AND invoice_order_code is NULL ")
  110. if err != nil {
  111. g.Log().Errorf(ctx, "RunJob-simpleMakeInvoice-查询待开票异常 %s", err)
  112. return -1, -1, gerror.Wrap(err, "simpleMakeInvoice-查询待开票异常")
  113. }
  114. g.Log().Infof(ctx, "RunJob-simpleMakeInvoice-本次共加载%d条开票记录", res.Len())
  115. total, okNum = res.Len(), 0
  116. for _, m := range res.List() {
  117. select {
  118. case im.runPool <- true:
  119. case <-time.After(time.Minute * 5):
  120. g.Log().Errorf(ctx, "RunJob-simpleMakeInvoice-开票等待超时,结束此次任务")
  121. return
  122. }
  123. var (
  124. orderCode = gconv.String(m["order_code"])
  125. phone = gconv.String(m["phone_num"])
  126. iType = gconv.String(m["invoice_type"])
  127. prices float64
  128. )
  129. //公对公转账 账单金额可以修改 开发票应取实付金额 pay_money
  130. //微信支付宝支付 pay_money为订单金额减去微信or支付包红包
  131. if gconv.String(m["pay_way"]) == "transferAccounts" {
  132. prices = gconv.Float64(m["pay_money"]) / float64(100)
  133. } else {
  134. prices = gconv.Float64(m["order_money"]) / float64(100)
  135. }
  136. c := MakeInvoiceData{
  137. Type: "2",
  138. Id: orderCode,
  139. Lxdh: phone,
  140. Fhr: g.Cfg().MustGet(ctx, "company.hfr", "贺鹏飞").String(),
  141. InvoiceArr: []MakeInvoiceItems{{
  142. Xmmc: g.Cfg().MustGet(ctx, "company.taxCode").String(), //开票项
  143. WhStatus: 1, //开票项是否维护
  144. Je: strconv.FormatFloat(prices, 'f', -1, 64), //金额
  145. Sl: "1", //数量
  146. }},
  147. }
  148. if iType == "单位" {
  149. c.Gmfmc = gconv.String(m["company_name"])
  150. c.Gmfnsrsbh = gconv.String(m["taxpayer_identnum"])
  151. } else {
  152. c.Gmfmc = iType
  153. }
  154. err = im.Auth.MakeSingleInvoice(c)
  155. if err != nil {
  156. im.ReleasePool()
  157. if gerror.Is(err, consts.LoginOutErr) {
  158. g.Log().Infof(ctx, "RunJob-simpleMakeInvoice-身份过期,需要重新登录")
  159. return
  160. }
  161. g.Log().Errorf(ctx, "RunJob-simpleMakeInvoice-开票接口调用异常 %v", err)
  162. continue
  163. }
  164. okNum++
  165. }
  166. return
  167. }