excel.go 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. package el
  2. import (
  3. "box-cost/model"
  4. "context"
  5. "fmt"
  6. "log"
  7. "regexp"
  8. "strings"
  9. "time"
  10. "github.com/xuri/excelize/v2"
  11. "go.mongodb.org/mongo-driver/bson"
  12. "go.mongodb.org/mongo-driver/bson/primitive"
  13. "go.mongodb.org/mongo-driver/mongo"
  14. )
  15. const (
  16. EXCEL_TMPLATE_FILE = "tmplate/tmplate.xlsx"
  17. PURCHASE_COLLECTION = "bill-purchase"
  18. PRODUCE_COLLECTION = "bill-produce"
  19. PRODUCT_COLLECTION = "bill-product"
  20. )
  21. var needChangeCol = map[string]string{
  22. "部件": "E",
  23. "下单": "F",
  24. "纸张": "G",
  25. "印刷": "H",
  26. "覆膜": "I",
  27. "烫金": "J",
  28. "丝印": "K",
  29. "对裱": "L",
  30. "压纹": "M",
  31. "裱瓦": "N",
  32. "模切": "O",
  33. "粘盒": "P",
  34. "组装": "Q",
  35. }
  36. func MatchString(targetStr string, regexPattern string) bool {
  37. // 编译正则表达式
  38. re := regexp.MustCompile(regexPattern)
  39. // 检查目标字符串是否包含匹配的子串
  40. return re.MatchString(targetStr)
  41. }
  42. func UpdateExcel(client *mongo.Client, plans []*model.ProductPlan) {
  43. row := 5
  44. planCompStatus := []map[string]string{}
  45. for _, plan := range plans {
  46. for _, comp := range plan.Pack.Components {
  47. // ""代表该部件没有该工艺 "〇"代表正在进行的工艺
  48. // "8080"背景颜色代表部件所含未进行工艺 √代表已完成工序
  49. compStatus := map[string]string{
  50. "部件": " ",
  51. "行数": "5",
  52. // 部件中只要有一个订单就说明下单了
  53. "下单": " ",
  54. // 采购单中type为纸张 订单对应状态为完成
  55. "纸张": " ",
  56. // 遍历工艺单,工序中包含印刷
  57. "印刷": " ",
  58. // 遍历工艺单,工序中包含覆膜
  59. "覆膜": " ",
  60. // 遍历工艺单,工序中包含烫金
  61. "烫金": " ",
  62. // 遍历工艺单,工序中包含丝印
  63. "丝印": " ",
  64. // 遍历工艺单,工序中包含对裱
  65. "对裱": " ",
  66. // 遍历工艺单,工序中包含压纹
  67. "压纹": " ",
  68. // 遍历工艺单,工序中包含裱瓦
  69. "裱瓦": " ",
  70. // 遍历工艺单,工序中包含模切
  71. "模切": " ",
  72. // 遍历工艺单,工序中包含粘盒
  73. "粘盒": " ",
  74. // 遍历工艺单,工序中包含组装
  75. "组装": " ",
  76. }
  77. compStatus["部件"] = comp.Name
  78. compStatus["行数"] = fmt.Sprintf("%d", row)
  79. row++
  80. // 去重获取所有订单
  81. seen := make(map[string]bool)
  82. tbills := make([]string, 0, len(comp.Stages)) // 结果数组,容量初始化为原数组的长度
  83. for _, stage := range comp.Stages {
  84. if len(stage.BillId) > 0 {
  85. value := fmt.Sprintf("%d_%s", stage.BillType, stage.BillId)
  86. if _, ok := seen[value]; !ok {
  87. // 标记为已出现
  88. seen[value] = true
  89. // 添加到结果数组
  90. tbills = append(tbills, value)
  91. }
  92. }
  93. }
  94. // 如果tbills为空,说明该部件没有订单
  95. if len(tbills) == 0 {
  96. // 该部件没有订单,跳过
  97. continue
  98. }
  99. // 查询数据库获取bill详细信息
  100. for _, billType := range tbills {
  101. compStatus["下单"] = "√"
  102. bt := strings.Split(billType, "_")[0]
  103. billId, _ := primitive.ObjectIDFromHex(strings.Split(billType, "_")[1])
  104. if bt == "1" {
  105. // 查询采购单
  106. bill := &model.PurchaseBill{}
  107. err := client.Database("box-cost").Collection(PURCHASE_COLLECTION).FindOne(context.Background(), bson.M{"_id": billId}).Decode(bill)
  108. if err != nil {
  109. log.Fatal(err)
  110. }
  111. if bill.Type == "纸张" {
  112. compStatus["纸张"] = "〇"
  113. if bill.Status == "complete" {
  114. compStatus["纸张"] = "√"
  115. }
  116. }
  117. }
  118. if bt == "2" {
  119. // 查询工艺单
  120. bill := &model.ProduceBill{}
  121. err := client.Database("box-cost").Collection(PRODUCE_COLLECTION).FindOne(context.Background(), bson.M{"_id": billId}).Decode(bill)
  122. if err != nil {
  123. log.Fatal(err)
  124. }
  125. for _, produce := range bill.Produces {
  126. for k, _ := range compStatus {
  127. if k == "下单" || k == "纸张" {
  128. continue
  129. }
  130. if MatchString(produce.Name, k) {
  131. compStatus[k] = "〇"
  132. if bill.Status == "complete" {
  133. compStatus[k] = "√"
  134. }
  135. }
  136. }
  137. }
  138. }
  139. // 暂时没有状态标定
  140. if bt == "3" {
  141. // 查询成品单
  142. bill := &model.ProductBill{}
  143. err := client.Database("box-cost").Collection(PRODUCT_COLLECTION).FindOne(context.Background(), bson.M{"_id": billId}).Decode(bill)
  144. if err != nil {
  145. log.Fatal(err)
  146. }
  147. // fmt.Println(bill)
  148. }
  149. }
  150. planCompStatus = append(planCompStatus, compStatus)
  151. }
  152. }
  153. // fmt.Printf("%#v\n", planCompStatus)
  154. UpdateCell(planCompStatus)
  155. }
  156. func UpdateCell(planCompStatus []map[string]string) {
  157. tmpfile, err := excelize.OpenFile(EXCEL_TMPLATE_FILE)
  158. if err != nil {
  159. log.Fatal(err)
  160. }
  161. excelIndex := tmpfile.GetActiveSheetIndex()
  162. sheetName := tmpfile.GetSheetName(excelIndex)
  163. for _, compStatus := range planCompStatus {
  164. fmt.Println("-----------------------------------------------")
  165. fmt.Println(compStatus)
  166. row := compStatus["行数"]
  167. for colk, col := range needChangeCol {
  168. for csk, csv := range compStatus {
  169. if colk == csk {
  170. cell := fmt.Sprintf("%s%s", col, row)
  171. // fmt.Println(cell)
  172. // 设置背景
  173. if csv == "8080" {
  174. // 设置单元格的值
  175. styleId, err := tmpfile.NewStyle(&excelize.Style{
  176. Fill: excelize.Fill{
  177. Color: []string{"8080"},
  178. },
  179. })
  180. if err != nil {
  181. log.Fatal(err)
  182. }
  183. err = tmpfile.SetCellStyle(sheetName, cell, cell, styleId)
  184. if err != nil {
  185. log.Fatal(err)
  186. }
  187. } else {
  188. // 设置字符
  189. err = tmpfile.SetCellValue(sheetName, cell, csv)
  190. if err != nil {
  191. log.Fatal(err)
  192. }
  193. }
  194. }
  195. }
  196. }
  197. }
  198. // 获取当前日期
  199. date := time.Now().Format("2006年01月02日_150405")
  200. fileName := fmt.Sprintf("礼盒加工追踪表_%s.xlsx", date)
  201. // 以新的文件名保存文件
  202. err = tmpfile.SaveAs(fileName)
  203. if err != nil {
  204. log.Fatal(err)
  205. }
  206. }