|
@@ -1,24 +1,11 @@
|
|
|
package api
|
|
|
|
|
|
import (
|
|
|
- "box-cost/db/model"
|
|
|
"fmt"
|
|
|
|
|
|
"github.com/xuri/excelize/v2"
|
|
|
- "go.mongodb.org/mongo-driver/bson/primitive"
|
|
|
)
|
|
|
|
|
|
-type SupplierPlanSummay struct {
|
|
|
- Plans []*PlanSummay
|
|
|
- SupplierId primitive.ObjectID
|
|
|
-}
|
|
|
-type PlanSummay struct {
|
|
|
- *model.ProductPlan
|
|
|
- IsSend, IsAck bool
|
|
|
- Reviewed int32
|
|
|
- State string
|
|
|
-}
|
|
|
-
|
|
|
// 生产成本表
|
|
|
type PlanSummaryExcel struct {
|
|
|
Row int
|
|
@@ -26,19 +13,19 @@ type PlanSummaryExcel struct {
|
|
|
Excel *excelize.File
|
|
|
SheetName string
|
|
|
AlignCenterStyle int
|
|
|
- Content *SupplierPlanCost
|
|
|
+ Content *SupplierPlanSummary
|
|
|
}
|
|
|
|
|
|
func (b *PlanSummaryExcel) drawTitle() error {
|
|
|
b.Row++
|
|
|
startCell := fmt.Sprintf("A%d", b.Row)
|
|
|
- err := b.Excel.MergeCell(b.SheetName, startCell, fmt.Sprintf("N%d", b.Row))
|
|
|
+ err := b.Excel.MergeCell(b.SheetName, startCell, fmt.Sprintf("P%d", b.Row))
|
|
|
if err != nil {
|
|
|
return err
|
|
|
}
|
|
|
|
|
|
style, err := b.Excel.NewStyle(&excelize.Style{
|
|
|
- Alignment: &excelize.Alignment{Horizontal: "center", Vertical: "center"},
|
|
|
+ Alignment: &excelize.Alignment{Horizontal: "center", Vertical: "center", WrapText: true},
|
|
|
Font: &excelize.Font{Bold: true, Size: 18}})
|
|
|
if err != nil {
|
|
|
return err
|
|
@@ -48,16 +35,12 @@ func (b *PlanSummaryExcel) drawTitle() error {
|
|
|
return err
|
|
|
}
|
|
|
b.Excel.SetRowHeight(b.SheetName, b.Row, 23)
|
|
|
- b.Excel.SetCellValue(b.SheetName, startCell, b.Title)
|
|
|
+ b.Excel.SetCellValue(b.SheetName, startCell, "汇总表")
|
|
|
return nil
|
|
|
}
|
|
|
|
|
|
func (b *PlanSummaryExcel) drawTableTitle() error {
|
|
|
- // row := b.Offset + 2
|
|
|
b.Row++
|
|
|
-
|
|
|
- //A采购项目 B规格(克) 尺寸C-D 数量E 单价F-G 交货时间H 备注I
|
|
|
- // A产品名称
|
|
|
var drawCol = func(prefix string, value string) error {
|
|
|
left1Cell := fmt.Sprintf("%s%d", prefix, b.Row)
|
|
|
left2Cell := fmt.Sprintf("%s%d", prefix, b.Row+1)
|
|
@@ -102,7 +85,6 @@ func (b *PlanSummaryExcel) drawTableTitle() error {
|
|
|
}
|
|
|
var drawCol3 = func(prefix1 string, prefix2 string, prefix3 string, value1 string, value2 string, value3 string, value4 string) error {
|
|
|
left1Cell := fmt.Sprintf("%s%d", prefix1, b.Row)
|
|
|
- // left2Cell := fmt.Sprintf("%s%d", prefix2, row)
|
|
|
left3Cell := fmt.Sprintf("%s%d", prefix3, b.Row)
|
|
|
err := b.Excel.MergeCell(b.SheetName, left1Cell, left3Cell)
|
|
|
if err != nil {
|
|
@@ -132,284 +114,425 @@ func (b *PlanSummaryExcel) drawTableTitle() error {
|
|
|
return nil
|
|
|
}
|
|
|
|
|
|
- drawCol("A", "产品部件名称")
|
|
|
- drawCol2("B", "C", "类型/项目", "类型", "项目")
|
|
|
- drawCol("D", "供应商名称")
|
|
|
- drawCol("E", "单价1")
|
|
|
- drawCol3("F", "G", "H", "规格", "厚度(纸克)", "长", "宽")
|
|
|
- drawCol("I", "单位")
|
|
|
- drawCol("J", "下单数量")
|
|
|
- drawCol("K", "实际数量")
|
|
|
- drawCol("L", "单价") // ??? 下单单价
|
|
|
- drawCol("M", "预算金额")
|
|
|
- drawCol("N", "实际金额")
|
|
|
+ drawCol("A", "产品名称")
|
|
|
+ drawCol("B", "产品部件名称")
|
|
|
+ drawCol2("C", "D", "类型/项目", "类型", "项目")
|
|
|
+ drawCol("E", "下单数量")
|
|
|
+ drawCol("F", "实际数量")
|
|
|
+ drawCol("G", "状态") // 生成订单状态 审核状态 发送状态 完成状态
|
|
|
+ drawCol("H", "供应商名称")
|
|
|
+ drawCol("I", "单价")
|
|
|
+ drawCol3("J", "K", "L", "规格", "厚度(纸克)", "长", "宽")
|
|
|
+ drawCol("M", "单位")
|
|
|
+ drawCol("N", "下单单价")
|
|
|
+ drawCol("O", "预算金额")
|
|
|
+ drawCol("P", "实际金额")
|
|
|
return nil
|
|
|
}
|
|
|
|
|
|
func (b *PlanSummaryExcel) drawRow(rowIndex int, values ...string) {
|
|
|
- charas := []string{"A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N"}
|
|
|
+ charas := []string{"A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P"}
|
|
|
for i, c := range charas {
|
|
|
v := ""
|
|
|
if i < len(values) {
|
|
|
v = values[i]
|
|
|
}
|
|
|
b.Excel.SetCellValue(b.SheetName, fmt.Sprintf("%s%d", c, rowIndex), v)
|
|
|
-
|
|
|
val2Cel := fmt.Sprintf("%s%d", c, rowIndex)
|
|
|
b.Excel.SetCellStyle(b.SheetName, val2Cel, val2Cel, b.AlignCenterStyle)
|
|
|
-
|
|
|
- b.Excel.SetRowHeight(b.SheetName, rowIndex, 21)
|
|
|
+ b.Excel.SetRowHeight(b.SheetName, rowIndex, 32)
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
-func (b *PlanSummaryExcel) drawSupplierContent() error {
|
|
|
+func (b *PlanSummaryExcel) drawAllContent() error {
|
|
|
b.Row += 2
|
|
|
- supplierId, err := primitive.ObjectIDFromHex(b.Content.SupplierId)
|
|
|
- if err != nil {
|
|
|
- return err
|
|
|
- }
|
|
|
- supplier := ""
|
|
|
- comps := b.Content.Pack.Components
|
|
|
+
|
|
|
+ // summaryPlans
|
|
|
// 预算金额汇总
|
|
|
var totalBudgetPrice float64 = 0.00
|
|
|
// 实际金额汇总
|
|
|
var totalRealPrice float64 = 0.00
|
|
|
- if len(comps) > 0 {
|
|
|
- for _, comp := range comps {
|
|
|
- var perBudgetPrice float64 = 0.00
|
|
|
- var perRealPrice float64 = 0.00
|
|
|
-
|
|
|
- if len(comp.Stages) > 0 {
|
|
|
- startRow := 0
|
|
|
- cates := map[string][]int{}
|
|
|
- for _, stage := range comp.Stages {
|
|
|
- if stage.SupplierInfo != nil {
|
|
|
- if supplierId == stage.SupplierInfo.Id {
|
|
|
- supplier = stage.SupplierInfo.Name
|
|
|
- // 材料
|
|
|
- if startRow == 0 {
|
|
|
- startRow = b.Row
|
|
|
|
|
|
- }
|
|
|
+ for _, splan := range b.Content.Plans {
|
|
|
+ planStartRow := b.Row
|
|
|
+ plan := splan.Plan
|
|
|
+ comps := plan.Pack.Components
|
|
|
+ // 预算金额汇总
|
|
|
+ var planBudgetPrice float64 = 0.00
|
|
|
+ // 实际金额汇总
|
|
|
+ var planRealPrice float64 = 0.00
|
|
|
+ if len(comps) > 0 {
|
|
|
+ for _, comp := range comps {
|
|
|
+ var perBudgetPrice float64 = 0.00
|
|
|
+ var perRealPrice float64 = 0.00
|
|
|
+ if len(comp.Stages) > 0 {
|
|
|
+ startRow := b.Row
|
|
|
+ cates := map[string][]int{}
|
|
|
+ for _, stage := range comp.Stages {
|
|
|
+ matHeigth := fmt.Sprintf("%d", stage.BatchSizeHeight)
|
|
|
+ b.FormatToEmpty(&matHeigth)
|
|
|
+ matWidth := fmt.Sprintf("%d", stage.BatchSizeWidth)
|
|
|
+ b.FormatToEmpty(&matWidth)
|
|
|
+ orderCount := fmt.Sprintf("%d", int(stage.OrderCount))
|
|
|
+ b.FormatToEmpty(&orderCount)
|
|
|
+
|
|
|
+ // 实际数量
|
|
|
+ realCount := fmt.Sprintf("%d", stage.ConfirmCount)
|
|
|
+ b.FormatToEmpty(&realCount)
|
|
|
+ // 单价
|
|
|
+ price := fmt.Sprintf("%.3f", stage.OrderPrice)
|
|
|
+ b.FormatToEmpty(&price)
|
|
|
+ // 预算金额
|
|
|
+ budgetPrice := fmt.Sprintf("%.3f", stage.OrderPrice*float64(stage.OrderCount))
|
|
|
+ perBudgetPrice += stage.OrderPrice * float64(stage.OrderCount)
|
|
|
+ b.FormatToEmpty(&budgetPrice)
|
|
|
+ // 实际金额
|
|
|
+ perRealPrice += stage.OrderPrice * float64(stage.ConfirmCount)
|
|
|
+ realPrice := fmt.Sprintf("%.3f", stage.OrderPrice*float64(stage.ConfirmCount))
|
|
|
+ b.FormatToEmpty(&realPrice)
|
|
|
+ unit := stage.Unit
|
|
|
+ if stage.Unit == "吨" || stage.Unit == "平方米" {
|
|
|
+ unit = "张"
|
|
|
+ }
|
|
|
|
|
|
- matHeigth := fmt.Sprintf("%d", stage.BatchSizeHeight)
|
|
|
- b.FormatToEmpty(&matHeigth)
|
|
|
- matWidth := fmt.Sprintf("%d", stage.BatchSizeWidth)
|
|
|
- b.FormatToEmpty(&matWidth)
|
|
|
- orderCount := fmt.Sprintf("%d", int(stage.OrderCount))
|
|
|
- b.FormatToEmpty(&orderCount)
|
|
|
-
|
|
|
- // 实际数量
|
|
|
- realCount := fmt.Sprintf("%d", stage.ConfirmCount)
|
|
|
- b.FormatToEmpty(&realCount)
|
|
|
- // 单价
|
|
|
- price := fmt.Sprintf("%.3f", stage.OrderPrice)
|
|
|
- b.FormatToEmpty(&price)
|
|
|
- // 预算金额
|
|
|
- budgetPrice := fmt.Sprintf("%.3f", stage.OrderPrice*float64(stage.OrderCount))
|
|
|
- perBudgetPrice += stage.OrderPrice * float64(stage.OrderCount)
|
|
|
- b.FormatToEmpty(&budgetPrice)
|
|
|
- // 实际金额
|
|
|
- perRealPrice += stage.OrderPrice * float64(stage.ConfirmCount)
|
|
|
- realPrice := fmt.Sprintf("%.3f", stage.OrderPrice*float64(stage.ConfirmCount))
|
|
|
- b.FormatToEmpty(&realPrice)
|
|
|
- unit := stage.Unit
|
|
|
- if stage.Unit == "吨" || stage.Unit == "平方米" {
|
|
|
- unit = "张"
|
|
|
- }
|
|
|
+ supplierName := ""
|
|
|
+ if stage.SupplierInfo != nil {
|
|
|
+ supplierName = stage.SupplierInfo.Name
|
|
|
+ }
|
|
|
+ stageType := ""
|
|
|
+ if stage.BillType > 0 {
|
|
|
+ stage.Type = stage.BillType
|
|
|
+ }
|
|
|
+ if stage.Type == 1 {
|
|
|
+ stageType = "材料采购"
|
|
|
+ }
|
|
|
+ if stage.Type == 2 {
|
|
|
+ stageType = "工艺"
|
|
|
+ }
|
|
|
+ if stage.Type == 3 {
|
|
|
+ stageType = "成品采购"
|
|
|
+ }
|
|
|
|
|
|
- // 生成单据时已billType为准
|
|
|
- stageType := ""
|
|
|
- if stage.BillType > 0 {
|
|
|
- stage.Type = stage.BillType
|
|
|
- }
|
|
|
- if stage.Type == 1 {
|
|
|
- stageType = "材料采购"
|
|
|
- }
|
|
|
- if stage.Type == 2 {
|
|
|
- stageType = "工艺"
|
|
|
+ // 状态
|
|
|
+ stop := false
|
|
|
+ stageStatus := ""
|
|
|
+ if len(stage.BillId) < 1 {
|
|
|
+ stageStatus = "未生成订单"
|
|
|
+ stop = true
|
|
|
+ }
|
|
|
+ // 审核状态
|
|
|
+ if !stop {
|
|
|
+ if splan.Reviewed[stage.BillId] == 1 {
|
|
|
+ stageStatus = "已审核"
|
|
|
+ } else {
|
|
|
+ stageStatus = "未审核"
|
|
|
+ stop = true
|
|
|
}
|
|
|
- if stage.Type == 3 {
|
|
|
- stageType = "成品采购"
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ // 接单状态
|
|
|
+ if !stop {
|
|
|
+ if splan.IsAck[stage.BillId] {
|
|
|
+ stageStatus = "已接单"
|
|
|
+ } else {
|
|
|
+ stageStatus = "未接单"
|
|
|
+ stop = true
|
|
|
}
|
|
|
- b.drawRow(b.Row, "", stageType, stage.Name, "", fmt.Sprintf("%.3f元/%s", stage.Price, stage.Unit), stage.Norm, matHeigth, matWidth, unit, orderCount, realCount, price, budgetPrice, realPrice)
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ // 完成状态
|
|
|
+ if splan.State[stage.BillId] == "complete" {
|
|
|
+ stageStatus = "已完成"
|
|
|
+ } else if splan.State[stage.BillId] == "created" {
|
|
|
+ stageStatus = "进行中"
|
|
|
+ }
|
|
|
+
|
|
|
+ b.drawRow(b.Row, "", "", stageType, stage.Name, orderCount, realCount, stageStatus, supplierName, fmt.Sprintf("%.3f元/%s", stage.Price, stage.Unit), stage.Norm, matHeigth, matWidth, unit, price, budgetPrice, realPrice)
|
|
|
+ if stage.SupplierInfo != nil {
|
|
|
cates[stage.SupplierInfo.Name] = append(cates[stage.SupplierInfo.Name], b.Row)
|
|
|
- b.Row++
|
|
|
+
|
|
|
}
|
|
|
+ b.Row++
|
|
|
+ }
|
|
|
|
|
|
+ for supplierName, cate := range cates {
|
|
|
+ mergeStartRow := cate[0]
|
|
|
+ mergeEndRow := cate[len(cate)-1]
|
|
|
+ b.Excel.MergeCell(b.SheetName, fmt.Sprintf("H%d", mergeStartRow), fmt.Sprintf("H%d", mergeEndRow))
|
|
|
+ b.Excel.SetCellValue(b.SheetName, fmt.Sprintf("H%d", mergeEndRow), supplierName)
|
|
|
}
|
|
|
- }
|
|
|
|
|
|
- // 合并同一供应商名
|
|
|
- for supplierName, cate := range cates {
|
|
|
- mergeStartRow := cate[0]
|
|
|
- mergeEndRow := cate[len(cate)-1]
|
|
|
- b.Excel.MergeCell(b.SheetName, fmt.Sprintf("D%d", mergeStartRow), fmt.Sprintf("D%d", mergeEndRow))
|
|
|
- b.Excel.SetCellValue(b.SheetName, fmt.Sprintf("D%d", mergeEndRow), supplierName)
|
|
|
- }
|
|
|
- if startRow != 0 {
|
|
|
endRow := b.Row - 1
|
|
|
// 组件名字
|
|
|
- startACell := fmt.Sprintf("%s%d", "A", startRow)
|
|
|
- endACell := fmt.Sprintf("%s%d", "A", endRow)
|
|
|
+ startACell := fmt.Sprintf("%s%d", "B", startRow)
|
|
|
+ endACell := fmt.Sprintf("%s%d", "B", endRow)
|
|
|
b.Excel.MergeCell(b.SheetName, startACell, endACell)
|
|
|
-
|
|
|
err := b.Excel.SetCellStyle(b.SheetName, startACell, endACell, b.AlignCenterStyle)
|
|
|
if err != nil {
|
|
|
return err
|
|
|
}
|
|
|
b.Excel.SetCellValue(b.SheetName, startACell, comp.Name)
|
|
|
-
|
|
|
}
|
|
|
|
|
|
+ // 预算
|
|
|
+ planBudgetPrice += perBudgetPrice
|
|
|
+ // 实际金额
|
|
|
+ planRealPrice += perRealPrice
|
|
|
}
|
|
|
- // 预算
|
|
|
- totalBudgetPrice += perBudgetPrice
|
|
|
- // 预算
|
|
|
- totalRealPrice += perRealPrice
|
|
|
}
|
|
|
+ totalBudgetPrice += planBudgetPrice
|
|
|
+ totalRealPrice += planRealPrice
|
|
|
+
|
|
|
+ // plan
|
|
|
+ // b.row +2 分割每个计划
|
|
|
+ planEndRow := b.Row
|
|
|
+ planStartACell := fmt.Sprintf("%s%d", "A", planStartRow)
|
|
|
+ planEndACell := fmt.Sprintf("%s%d", "A", planEndRow-1)
|
|
|
+ b.Excel.MergeCell(b.SheetName, planStartACell, planEndACell)
|
|
|
+ err := b.Excel.SetCellStyle(b.SheetName, planStartACell, planEndACell, b.AlignCenterStyle)
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ b.Excel.SetCellValue(b.SheetName, planStartACell, plan.Name)
|
|
|
+ // b.Row += 2
|
|
|
|
|
|
}
|
|
|
|
|
|
- // 生产汇总金额
|
|
|
- startACell := fmt.Sprintf("%s%d", "A", b.Row)
|
|
|
- endLCell := fmt.Sprintf("%s%d", "L", b.Row)
|
|
|
- MCell := fmt.Sprintf("%s%d", "M", b.Row)
|
|
|
- NCell := fmt.Sprintf("%s%d", "N", b.Row)
|
|
|
- b.Excel.MergeCell(b.SheetName, startACell, endLCell)
|
|
|
- b.Excel.SetCellStyle(b.SheetName, startACell, endLCell, b.AlignCenterStyle)
|
|
|
- b.Excel.SetCellValue(b.SheetName, startACell, fmt.Sprintf("【%s】生产计划汇总金额", supplier))
|
|
|
+ summaryEndRow := b.Row
|
|
|
+ startACell := fmt.Sprintf("%s%d", "A", summaryEndRow)
|
|
|
+ endNell := fmt.Sprintf("%s%d", "N", summaryEndRow)
|
|
|
+ OCell := fmt.Sprintf("%s%d", "O", summaryEndRow)
|
|
|
+ PCell := fmt.Sprintf("%s%d", "P", summaryEndRow)
|
|
|
+ b.Excel.MergeCell(b.SheetName, startACell, endNell)
|
|
|
+ b.Excel.SetCellStyle(b.SheetName, startACell, endNell, b.AlignCenterStyle)
|
|
|
+ b.Excel.SetCellValue(b.SheetName, startACell, "生产计划汇总金额")
|
|
|
|
|
|
// 生产预算汇总
|
|
|
- b.Excel.SetCellStyle(b.SheetName, MCell, MCell, b.AlignCenterStyle)
|
|
|
- planOrderRealPrice := fmt.Sprintf("%.3f", totalBudgetPrice)
|
|
|
- b.FormatToEmpty(&planOrderRealPrice)
|
|
|
- b.Excel.SetCellValue(b.SheetName, MCell, planOrderRealPrice)
|
|
|
+
|
|
|
+ b.Excel.SetCellStyle(b.SheetName, OCell, OCell, b.AlignCenterStyle)
|
|
|
+ totalOrderRealPrice := fmt.Sprintf("%.3f", totalBudgetPrice)
|
|
|
+ b.FormatToEmpty(&totalOrderRealPrice)
|
|
|
+ b.Excel.SetCellValue(b.SheetName, OCell, totalOrderRealPrice)
|
|
|
|
|
|
// 生产实际汇总
|
|
|
- b.Excel.SetCellStyle(b.SheetName, NCell, NCell, b.AlignCenterStyle)
|
|
|
- planRealPrice := fmt.Sprintf("%.3f", totalRealPrice)
|
|
|
- b.FormatToEmpty(&planRealPrice)
|
|
|
- b.Excel.SetCellValue(b.SheetName, NCell, planRealPrice)
|
|
|
+ b.Excel.SetCellStyle(b.SheetName, PCell, PCell, b.AlignCenterStyle)
|
|
|
+ totalRealPricef := fmt.Sprintf("%.3f", totalRealPrice)
|
|
|
+ b.FormatToEmpty(&totalRealPricef)
|
|
|
+ b.Excel.SetCellValue(b.SheetName, PCell, totalRealPricef)
|
|
|
|
|
|
return nil
|
|
|
}
|
|
|
|
|
|
-// type merge
|
|
|
-
|
|
|
-func (b *PlanSummaryExcel) drawAllContent() error {
|
|
|
+func (b *PlanSummaryExcel) drawSupplierContent() error {
|
|
|
b.Row += 2
|
|
|
- comps := b.Content.Pack.Components
|
|
|
+ supplier := ""
|
|
|
+ // summaryPlans
|
|
|
// 预算金额汇总
|
|
|
var totalBudgetPrice float64 = 0.00
|
|
|
// 实际金额汇总
|
|
|
var totalRealPrice float64 = 0.00
|
|
|
- if len(comps) > 0 {
|
|
|
- for _, comp := range comps {
|
|
|
- var perBudgetPrice float64 = 0.00
|
|
|
- var perRealPrice float64 = 0.00
|
|
|
- if len(comp.Stages) > 0 {
|
|
|
- startRow := b.Row
|
|
|
- cates := map[string][]int{}
|
|
|
- for _, stage := range comp.Stages {
|
|
|
- matHeigth := fmt.Sprintf("%d", stage.BatchSizeHeight)
|
|
|
- b.FormatToEmpty(&matHeigth)
|
|
|
- matWidth := fmt.Sprintf("%d", stage.BatchSizeWidth)
|
|
|
- b.FormatToEmpty(&matWidth)
|
|
|
- orderCount := fmt.Sprintf("%d", int(stage.OrderCount))
|
|
|
- b.FormatToEmpty(&orderCount)
|
|
|
-
|
|
|
- // 实际数量
|
|
|
- realCount := fmt.Sprintf("%d", stage.ConfirmCount)
|
|
|
- b.FormatToEmpty(&realCount)
|
|
|
- // 单价
|
|
|
- price := fmt.Sprintf("%.3f", stage.OrderPrice)
|
|
|
- b.FormatToEmpty(&price)
|
|
|
- // 预算金额
|
|
|
- budgetPrice := fmt.Sprintf("%.3f", stage.OrderPrice*float64(stage.OrderCount))
|
|
|
- perBudgetPrice += stage.OrderPrice * float64(stage.OrderCount)
|
|
|
- b.FormatToEmpty(&budgetPrice)
|
|
|
- // 实际金额
|
|
|
- perRealPrice += stage.OrderPrice * float64(stage.ConfirmCount)
|
|
|
- realPrice := fmt.Sprintf("%.3f", stage.OrderPrice*float64(stage.ConfirmCount))
|
|
|
- b.FormatToEmpty(&realPrice)
|
|
|
- unit := stage.Unit
|
|
|
- if stage.Unit == "吨" || stage.Unit == "平方米" {
|
|
|
- unit = "张"
|
|
|
- }
|
|
|
|
|
|
- supplierName := ""
|
|
|
- if stage.SupplierInfo != nil {
|
|
|
- supplierName = stage.SupplierInfo.Name
|
|
|
- }
|
|
|
- stageType := ""
|
|
|
- if stage.BillType > 0 {
|
|
|
- stage.Type = stage.BillType
|
|
|
- }
|
|
|
- if stage.Type == 1 {
|
|
|
- stageType = "材料采购"
|
|
|
- }
|
|
|
- if stage.Type == 2 {
|
|
|
- stageType = "工艺"
|
|
|
- }
|
|
|
- if stage.Type == 3 {
|
|
|
- stageType = "成品采购"
|
|
|
+ for _, splan := range b.Content.Plans {
|
|
|
+ planStartRow := b.Row
|
|
|
+ plan := splan.Plan
|
|
|
+ comps := plan.Pack.Components
|
|
|
+ // 预算金额汇总
|
|
|
+ var planBudgetPrice float64 = 0.00
|
|
|
+ // 实际金额汇总
|
|
|
+ var planRealPrice float64 = 0.00
|
|
|
+ if len(comps) > 0 {
|
|
|
+ for _, comp := range comps {
|
|
|
+ var perBudgetPrice float64 = 0.00
|
|
|
+ var perRealPrice float64 = 0.00
|
|
|
+ if len(comp.Stages) > 0 {
|
|
|
+ startRow := 0
|
|
|
+ cates := map[string][]int{}
|
|
|
+ for _, stage := range comp.Stages {
|
|
|
+ if stage.SupplierInfo != nil {
|
|
|
+ if b.Content.SupplierId == stage.SupplierInfo.Id {
|
|
|
+ supplier = stage.SupplierInfo.Name
|
|
|
+ // 材料
|
|
|
+ if startRow == 0 {
|
|
|
+ startRow = b.Row
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ matHeigth := fmt.Sprintf("%d", stage.BatchSizeHeight)
|
|
|
+ b.FormatToEmpty(&matHeigth)
|
|
|
+ matWidth := fmt.Sprintf("%d", stage.BatchSizeWidth)
|
|
|
+ b.FormatToEmpty(&matWidth)
|
|
|
+ orderCount := fmt.Sprintf("%d", int(stage.OrderCount))
|
|
|
+ b.FormatToEmpty(&orderCount)
|
|
|
+
|
|
|
+ // 实际数量
|
|
|
+ realCount := fmt.Sprintf("%d", stage.ConfirmCount)
|
|
|
+ b.FormatToEmpty(&realCount)
|
|
|
+ // 单价
|
|
|
+ price := fmt.Sprintf("%.3f", stage.OrderPrice)
|
|
|
+ b.FormatToEmpty(&price)
|
|
|
+ // 预算金额
|
|
|
+ budgetPrice := fmt.Sprintf("%.3f", stage.OrderPrice*float64(stage.OrderCount))
|
|
|
+ perBudgetPrice += stage.OrderPrice * float64(stage.OrderCount)
|
|
|
+ b.FormatToEmpty(&budgetPrice)
|
|
|
+ // 实际金额
|
|
|
+ perRealPrice += stage.OrderPrice * float64(stage.ConfirmCount)
|
|
|
+ realPrice := fmt.Sprintf("%.3f", stage.OrderPrice*float64(stage.ConfirmCount))
|
|
|
+ b.FormatToEmpty(&realPrice)
|
|
|
+ unit := stage.Unit
|
|
|
+ if stage.Unit == "吨" || stage.Unit == "平方米" {
|
|
|
+ unit = "张"
|
|
|
+ }
|
|
|
+
|
|
|
+ supplierName := ""
|
|
|
+ if stage.SupplierInfo != nil {
|
|
|
+ supplierName = stage.SupplierInfo.Name
|
|
|
+ }
|
|
|
+ stageType := ""
|
|
|
+ if stage.BillType > 0 {
|
|
|
+ stage.Type = stage.BillType
|
|
|
+ }
|
|
|
+ if stage.Type == 1 {
|
|
|
+ stageType = "材料采购"
|
|
|
+ }
|
|
|
+ if stage.Type == 2 {
|
|
|
+ stageType = "工艺"
|
|
|
+ }
|
|
|
+ if stage.Type == 3 {
|
|
|
+ stageType = "成品采购"
|
|
|
+ }
|
|
|
+
|
|
|
+ // 状态
|
|
|
+ stop := false
|
|
|
+ stageStatus := ""
|
|
|
+ if len(stage.BillId) < 1 {
|
|
|
+ stageStatus = "未生成订单"
|
|
|
+ stop = true
|
|
|
+ }
|
|
|
+ // 审核状态
|
|
|
+ if !stop {
|
|
|
+ if splan.Reviewed[stage.BillId] == 1 {
|
|
|
+ stageStatus = "已审核"
|
|
|
+ } else {
|
|
|
+ stageStatus = "未审核"
|
|
|
+ stop = true
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ // 接单状态
|
|
|
+ if !stop {
|
|
|
+ if splan.IsAck[stage.BillId] {
|
|
|
+ stageStatus = "已接单"
|
|
|
+ } else {
|
|
|
+ stageStatus = "未接单"
|
|
|
+ stop = true
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ // 完成状态
|
|
|
+ if splan.State[stage.BillId] == "complete" {
|
|
|
+ stageStatus = "已完成"
|
|
|
+ } else if splan.State[stage.BillId] == "created" {
|
|
|
+ stageStatus = "进行中"
|
|
|
+ }
|
|
|
+
|
|
|
+ b.drawRow(b.Row, "", "", stageType, stage.Name, orderCount, realCount, stageStatus, supplierName, fmt.Sprintf("%.3f元/%s", stage.Price, stage.Unit), stage.Norm, matHeigth, matWidth, unit, price, budgetPrice, realPrice)
|
|
|
+ if stage.SupplierInfo != nil {
|
|
|
+ cates[stage.SupplierInfo.Name] = append(cates[stage.SupplierInfo.Name], b.Row)
|
|
|
+
|
|
|
+ }
|
|
|
+ b.Row++
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
}
|
|
|
- b.drawRow(b.Row, "", stageType, stage.Name, supplierName, fmt.Sprintf("%.3f元/%s", stage.Price, stage.Unit), stage.Norm, matHeigth, matWidth, unit, orderCount, realCount, price, budgetPrice, realPrice)
|
|
|
- if stage.SupplierInfo != nil {
|
|
|
- cates[stage.SupplierInfo.Name] = append(cates[stage.SupplierInfo.Name], b.Row)
|
|
|
|
|
|
+ // 合并同一供应商名
|
|
|
+ for supplierName, cate := range cates {
|
|
|
+ mergeStartRow := cate[0]
|
|
|
+ mergeEndRow := cate[len(cate)-1]
|
|
|
+ b.Excel.MergeCell(b.SheetName, fmt.Sprintf("H%d", mergeStartRow), fmt.Sprintf("H%d", mergeEndRow))
|
|
|
+ b.Excel.SetCellValue(b.SheetName, fmt.Sprintf("H%d", mergeEndRow), supplierName)
|
|
|
}
|
|
|
+ if startRow != 0 {
|
|
|
+ endRow := b.Row - 1
|
|
|
+ // 组件名字
|
|
|
+ startACell := fmt.Sprintf("%s%d", "B", startRow)
|
|
|
+ endACell := fmt.Sprintf("%s%d", "B", endRow)
|
|
|
+ b.Excel.MergeCell(b.SheetName, startACell, endACell)
|
|
|
+
|
|
|
+ err := b.Excel.SetCellStyle(b.SheetName, startACell, endACell, b.AlignCenterStyle)
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ b.Excel.SetCellValue(b.SheetName, startACell, comp.Name)
|
|
|
|
|
|
- b.Row++
|
|
|
+ }
|
|
|
|
|
|
}
|
|
|
+ // 预算
|
|
|
+ totalBudgetPrice += perBudgetPrice
|
|
|
+ // 预算
|
|
|
+ totalRealPrice += perRealPrice
|
|
|
+ }
|
|
|
|
|
|
- for supplierName, cate := range cates {
|
|
|
- mergeStartRow := cate[0]
|
|
|
- mergeEndRow := cate[len(cate)-1]
|
|
|
- b.Excel.MergeCell(b.SheetName, fmt.Sprintf("D%d", mergeStartRow), fmt.Sprintf("D%d", mergeEndRow))
|
|
|
- b.Excel.SetCellValue(b.SheetName, fmt.Sprintf("D%d", mergeEndRow), supplierName)
|
|
|
- }
|
|
|
+ }
|
|
|
|
|
|
- endRow := b.Row - 1
|
|
|
- // 组件名字
|
|
|
- startACell := fmt.Sprintf("%s%d", "A", startRow)
|
|
|
- endACell := fmt.Sprintf("%s%d", "A", endRow)
|
|
|
- b.Excel.MergeCell(b.SheetName, startACell, endACell)
|
|
|
- err := b.Excel.SetCellStyle(b.SheetName, startACell, endACell, b.AlignCenterStyle)
|
|
|
- if err != nil {
|
|
|
- return err
|
|
|
- }
|
|
|
- b.Excel.SetCellValue(b.SheetName, startACell, comp.Name)
|
|
|
- }
|
|
|
+ totalBudgetPrice += planBudgetPrice
|
|
|
+ totalRealPrice += planRealPrice
|
|
|
|
|
|
- // 预算
|
|
|
- totalBudgetPrice += perBudgetPrice
|
|
|
- // 实际金额
|
|
|
- totalRealPrice += perRealPrice
|
|
|
+ // plan
|
|
|
+ // b.row +2 分割每个计划
|
|
|
+ planEndRow := b.Row
|
|
|
+ planStartACell := fmt.Sprintf("%s%d", "A", planStartRow)
|
|
|
+ planEndACell := fmt.Sprintf("%s%d", "A", planEndRow-1)
|
|
|
+ b.Excel.MergeCell(b.SheetName, planStartACell, planEndACell)
|
|
|
+ err := b.Excel.SetCellStyle(b.SheetName, planStartACell, planEndACell, b.AlignCenterStyle)
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
}
|
|
|
+ b.Excel.SetCellValue(b.SheetName, planStartACell, plan.Name)
|
|
|
}
|
|
|
- startACell := fmt.Sprintf("%s%d", "A", b.Row)
|
|
|
- endLCell := fmt.Sprintf("%s%d", "L", b.Row)
|
|
|
- MCell := fmt.Sprintf("%s%d", "M", b.Row)
|
|
|
- NCell := fmt.Sprintf("%s%d", "N", b.Row)
|
|
|
- b.Excel.MergeCell(b.SheetName, startACell, endLCell)
|
|
|
- b.Excel.SetCellStyle(b.SheetName, startACell, endLCell, b.AlignCenterStyle)
|
|
|
- b.Excel.SetCellValue(b.SheetName, startACell, "生产计划汇总金额")
|
|
|
+
|
|
|
+ summaryEndRow := b.Row
|
|
|
+ startACell := fmt.Sprintf("%s%d", "A", summaryEndRow)
|
|
|
+ endNell := fmt.Sprintf("%s%d", "N", summaryEndRow)
|
|
|
+ OCell := fmt.Sprintf("%s%d", "O", summaryEndRow)
|
|
|
+ PCell := fmt.Sprintf("%s%d", "P", summaryEndRow)
|
|
|
+ b.Excel.MergeCell(b.SheetName, startACell, endNell)
|
|
|
+ b.Excel.SetCellStyle(b.SheetName, startACell, endNell, b.AlignCenterStyle)
|
|
|
+ b.Excel.SetCellValue(b.SheetName, startACell, fmt.Sprintf("【%s】生产计划汇总金额", supplier))
|
|
|
|
|
|
// 生产预算汇总
|
|
|
- b.Excel.SetCellStyle(b.SheetName, MCell, MCell, b.AlignCenterStyle)
|
|
|
- planOrderRealPrice := fmt.Sprintf("%.3f", totalBudgetPrice)
|
|
|
- b.FormatToEmpty(&planOrderRealPrice)
|
|
|
- b.Excel.SetCellValue(b.SheetName, MCell, planOrderRealPrice)
|
|
|
+
|
|
|
+ b.Excel.SetCellStyle(b.SheetName, OCell, OCell, b.AlignCenterStyle)
|
|
|
+ totalOrderRealPrice := fmt.Sprintf("%.3f", totalBudgetPrice)
|
|
|
+ b.FormatToEmpty(&totalOrderRealPrice)
|
|
|
+ b.Excel.SetCellValue(b.SheetName, OCell, totalOrderRealPrice)
|
|
|
|
|
|
// 生产实际汇总
|
|
|
- b.Excel.SetCellStyle(b.SheetName, NCell, NCell, b.AlignCenterStyle)
|
|
|
- planRealPrice := fmt.Sprintf("%.3f", totalRealPrice)
|
|
|
- b.FormatToEmpty(&planRealPrice)
|
|
|
- b.Excel.SetCellValue(b.SheetName, NCell, planRealPrice)
|
|
|
+ b.Excel.SetCellStyle(b.SheetName, PCell, PCell, b.AlignCenterStyle)
|
|
|
+ totalRealPricef := fmt.Sprintf("%.3f", totalRealPrice)
|
|
|
+ b.FormatToEmpty(&totalRealPricef)
|
|
|
+ b.Excel.SetCellValue(b.SheetName, PCell, totalRealPricef)
|
|
|
+
|
|
|
+ // 供应商名字标题
|
|
|
+ style, err := b.Excel.NewStyle(&excelize.Style{
|
|
|
+ Alignment: &excelize.Alignment{Horizontal: "center", Vertical: "center", WrapText: true},
|
|
|
+ })
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ err = b.Excel.SetCellStyle(b.SheetName, "A1", "G1", style)
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ b.Excel.SetRowHeight(b.SheetName, 1, 32)
|
|
|
+ b.Excel.SetCellValue(b.SheetName, "A1", fmt.Sprintf("【%s】-汇总表", supplier))
|
|
|
|
|
|
return nil
|
|
|
}
|
|
@@ -417,7 +540,7 @@ func (b *PlanSummaryExcel) drawAllContent() error {
|
|
|
func (b *PlanSummaryExcel) Draws() {
|
|
|
b.drawTitle()
|
|
|
b.drawTableTitle()
|
|
|
- if b.Content.SupplierId != "" {
|
|
|
+ if !b.Content.SupplierId.IsZero() {
|
|
|
b.drawSupplierContent()
|
|
|
} else {
|
|
|
b.drawAllContent()
|
|
@@ -435,7 +558,7 @@ func NewPlanSummaryExcel(f *excelize.File) *PlanSummaryExcel {
|
|
|
}
|
|
|
|
|
|
styleLeft, _ := f.NewStyle(&excelize.Style{
|
|
|
- Alignment: &excelize.Alignment{Horizontal: "center", Vertical: "center"},
|
|
|
+ Alignment: &excelize.Alignment{Horizontal: "center", Vertical: "center", WrapText: true},
|
|
|
Border: border,
|
|
|
Font: &excelize.Font{Size: 10},
|
|
|
})
|
|
@@ -447,12 +570,12 @@ func NewPlanSummaryExcel(f *excelize.File) *PlanSummaryExcel {
|
|
|
AlignCenterStyle: styleLeft,
|
|
|
}
|
|
|
|
|
|
- f.SetColWidth(b.SheetName, "A", "B", 12)
|
|
|
- f.SetColWidth(b.SheetName, "C", "C", 16)
|
|
|
- f.SetColWidth(b.SheetName, "D", "D", 25)
|
|
|
- f.SetColWidth(b.SheetName, "E", "E", 15)
|
|
|
- f.SetColWidth(b.SheetName, "F", "F", 16)
|
|
|
- f.SetColWidth(b.SheetName, "F", "N", 12)
|
|
|
+ f.SetColWidth(b.SheetName, "A", "D", 16)
|
|
|
+ f.SetColWidth(b.SheetName, "E", "G", 12)
|
|
|
+ f.SetColWidth(b.SheetName, "H", "H", 25)
|
|
|
+ f.SetColWidth(b.SheetName, "I", "L", 16)
|
|
|
+ f.SetColWidth(b.SheetName, "M", "M", 10)
|
|
|
+ f.SetColWidth(b.SheetName, "N", "P", 16)
|
|
|
f.SetPageMargins(b.SheetName, excelize.PageMarginTop(0), excelize.PageMarginLeft(0), excelize.PageMarginRight(0))
|
|
|
return b
|
|
|
}
|