From 5f7f65f00d4d1c280f8b09b73ef7dcfa2af0fd54 Mon Sep 17 00:00:00 2001
From: dsmzx <dsmzx@123.com>
Date: 星期三, 26 六月 2024 09:14:21 +0800
Subject: [PATCH] 出库/入库 打印

---
 controllers/operation.go |  208 ++++++++++++++++++++++++++++++++++++++++------------
 1 files changed, 160 insertions(+), 48 deletions(-)

diff --git a/controllers/operation.go b/controllers/operation.go
index cc7030d..2cc1671 100644
--- a/controllers/operation.go
+++ b/controllers/operation.go
@@ -9,6 +9,7 @@
 	"github.com/shopspring/decimal"
 	"github.com/xuri/excelize/v2"
 	"gorm.io/gorm"
+	"io/ioutil"
 	"sort"
 	"strconv"
 	"strings"
@@ -742,33 +743,32 @@
 				util.ResponseFormat(c, code.RequestParamError, err.Error())
 				return
 			}
-			fileTemplateAttachments, err := models.NewFileTemplateAttachmentSearch().SetWarehouseId(oT.WarehouseId).Find()
+			warehouse, err := models.NewWarehouseSearch().SetID(oT.WarehouseId).First()
 			if err != nil {
 				util.ResponseFormat(c, code.RequestParamError, err.Error())
 				return
 			}
-			for _, fileTemplateAttachment := range fileTemplateAttachments {
-				if fileTemplateAttachment.Category == constvar.FileTemplateCategory_JialianInput1 {
-					//fileUrl, err = JialianOperation(constvar.FileTemplateCategory_JialianInput1, operation)
-					fileUrl, err = JialianOperation(fileTemplateAttachment.Category, operation)
-					// 鍑哄簱
-					//fileUrl, err = JialianOperation(constvar.FileTemplateCategory_JialianOutput1, operation)
-					if err != nil {
-						util.ResponseFormat(c, code.RequestParamError, err.Error())
-						return
-					}
-					break
-				} else if fileTemplateAttachment.Category == constvar.FileWarehouseCategory_JialianInput2 {
-					fileUrl, err = JialianOperation(fileTemplateAttachment.Category, operation)
-					// 鍑哄簱
-					//fileUrl, err = JialianOperation(constvar.FileTemplateCategory_JialianOutput1, operation)
-					if err != nil {
-						util.ResponseFormat(c, code.RequestParamError, err.Error())
-						return
-					}
-					break
-				}
+			if err != nil {
+				util.ResponseFormat(c, code.RequestParamError, err.Error())
+				return
 			}
+
+			if warehouse.FileTemplateCategoryIn == constvar.FileTemplateCategory_JialianInput1 {
+				fileUrl, err = JialianOperation2(warehouse.FileTemplateCategoryIn, operation)
+				if err != nil {
+					util.ResponseFormat(c, code.RequestParamError, err.Error())
+					return
+				}
+
+			} else if warehouse.FileTemplateCategoryIn == constvar.FileWarehouseCategory_JialianInput2 {
+				fileUrl, err = JialianOperation1(warehouse.FileTemplateCategoryIn, operation)
+				if err != nil {
+					util.ResponseFormat(c, code.RequestParamError, err.Error())
+					return
+				}
+
+			}
+
 		} else if companyName == "geruimi" {
 			fileUrl, err = ExportInputSelfmade(constvar.FileTemplateCategory_Selfmade, operation)
 			if err != nil {
@@ -783,34 +783,31 @@
 				util.ResponseFormat(c, code.RequestParamError, err.Error())
 				return
 			}
-			fileTemplateAttachments, err := models.NewFileTemplateAttachmentSearch().SetWarehouseId(oT.WarehouseId).Find()
+			warehouse, err := models.NewWarehouseSearch().SetID(oT.WarehouseId).First()
 			if err != nil {
 				util.ResponseFormat(c, code.RequestParamError, err.Error())
 				return
 			}
-			for _, fileTemplateAttachment := range fileTemplateAttachments {
-				if fileTemplateAttachment.Category == constvar.FileTemplateCategory_JialianOutput1 {
-					//fileUrl, err = JialianOperation(constvar.FileTemplateCategory_JialianInput1, operation)
-					fileUrl, err = JialianOperation(fileTemplateAttachment.Category, operation)
-					// 鍑哄簱
-					//fileUrl, err = JialianOperation(constvar.FileTemplateCategory_JialianOutput1, operation)
-					if err != nil {
-						util.ResponseFormat(c, code.RequestParamError, err.Error())
-						return
-					}
-					break
-				} else if fileTemplateAttachment.Category == constvar.FileWarehouseCategory_JialianOutput2 {
-					fileUrl, err = JialianOperation(fileTemplateAttachment.Category, operation)
-					// 鍑哄簱
-					//fileUrl, err = JialianOperation(constvar.FileTemplateCategory_JialianOutput1, operation)
-					if err != nil {
-						util.ResponseFormat(c, code.RequestParamError, err.Error())
-						return
-					}
-					break
-				}
+			if err != nil {
+				util.ResponseFormat(c, code.RequestParamError, err.Error())
+				return
 			}
 
+			if warehouse.FileTemplateCategoryOut == constvar.FileTemplateCategory_JialianOutput1 {
+				fileUrl, err = JialianOperation2(warehouse.FileTemplateCategoryOut, operation)
+				if err != nil {
+					util.ResponseFormat(c, code.RequestParamError, err.Error())
+					return
+				}
+
+			} else if warehouse.FileTemplateCategoryOut == constvar.FileWarehouseCategory_JialianOutput2 {
+				fileUrl, err = JialianOperation1(warehouse.FileTemplateCategoryOut, operation)
+				if err != nil {
+					util.ResponseFormat(c, code.RequestParamError, err.Error())
+					return
+				}
+
+			}
 		} else if companyName == "geruimi" {
 			fileUrl, err = ExportInputSelfmade(constvar.FileTemplateCategory_Output, operation)
 			if err != nil {
@@ -829,7 +826,7 @@
 	util.ResponseFormat(c, code.Success, m)
 }
 
-func JialianOperation(category constvar.FileTemplateCategory, operation *models.Operation) (string, error) {
+func JialianOperation1(category constvar.FileTemplateCategory, operation *models.Operation) (string, error) {
 	// 鑾峰彇妯℃澘璁板綍
 	template, err := models.NewFileTemplateAttachmentSearch().SetCategory(category).First()
 	if err != nil {
@@ -854,9 +851,9 @@
 	defer f.Close()
 
 	sheet := "Sheet1"
-	if category == constvar.FileTemplateCategory_JialianInput1 {
+	if category == constvar.FileWarehouseCategory_JialianInput2 {
 		sheet = "鍏ュ簱鍗�"
-	} else if category == constvar.FileTemplateCategory_JialianOutput1 {
+	} else if category == constvar.FileWarehouseCategory_JialianOutput2 {
 		sheet = "鍑哄簱鍗�"
 	}
 
@@ -903,7 +900,7 @@
 			break
 		}
 		f.SetCellValue(sheet, "B"+strconv.Itoa(rowIndex), v.Product.Name)                                                          // 浜у搧鍚嶇О
-		f.SetCellValue(sheet, "C"+strconv.Itoa(rowIndex), v.Product.Unit)                                                          //瑙勬牸
+		f.SetCellValue(sheet, "C"+strconv.Itoa(rowIndex), v.Product.Specs)                                                         //瑙勬牸
 		f.SetCellValue(sheet, "D"+strconv.Itoa(rowIndex), attributeValueMap[fmt.Sprintf("%d%s", attributeMap["棰滆壊"], v.ProductId)]) //棰滆壊
 		f.SetCellValue(sheet, "E"+strconv.Itoa(rowIndex), attributeValueMap[fmt.Sprintf("%d%s", attributeMap["闈㈡枡"], v.ProductId)]) //闈㈡枡
 		f.SetCellValue(sheet, "F"+strconv.Itoa(rowIndex), v.TotalGrossWeight.String())                                             //閲嶉噺
@@ -972,6 +969,7 @@
 	}
 
 	fileUrl, err := upload.UploadFileToSeaWeed(string(constvar.FileType_File), uuid.NewV4().String()+".xlsx", buf.Bytes())
+	ioutil.WriteFile("E:\\"+uuid.NewV4().String()+".xlsx", buf.Bytes(), 0644)
 	if err != nil {
 		//ioutil.WriteFile("E:\\"+uuid.NewV4().String()+".xlsx", buf.Bytes(), 0644)
 		logx.Errorf("file upload err: %v", err)
@@ -980,6 +978,120 @@
 	return fileUrl, nil
 }
 
+func JialianOperation2(category constvar.FileTemplateCategory, operation *models.Operation) (string, error) {
+	// 鑾峰彇妯℃澘璁板綍
+	template, err := models.NewFileTemplateAttachmentSearch().SetCategory(category).First()
+	if err != nil {
+		return "", errors.New("鑾峰彇妯$増璁板綍澶辫触:" + err.Error())
+	}
+	fmt.Println(template)
+	// 鏍规嵁妯℃澘璺緞鑾峰彇妯℃澘娑堟伅
+	readerCloser, err := http.HttpGetWithReadCloser(template.FileUrl)
+	if err != nil {
+		return "", errors.New("鑾峰彇妯$増澶辫触:" + err.Error())
+	}
+
+	// 璇诲彇妯℃澘鍐呭
+	f, err := excelize.OpenReader(readerCloser)
+	if err != nil {
+		return "", errors.New("璇诲彇excel妯$増澶辫触锛�" + err.Error())
+	}
+	readerCloser.Close()
+
+	defer f.Close()
+
+	sheet := "Sheet1"
+	f.SetCellValue(sheet, "A2", "鍗曚綅(閮ㄩ棬):"+operation.CompanyName) // 鍗曚綅閮ㄩ棬
+	f.SetCellValue(sheet, "H2", operation.OperationDate)         // 鏃堕棿
+	f.SetCellValue(sheet, "O2", operation.Number)                // 缂栧彿
+
+	totalAmount := decimal.NewFromInt(0) // 鎬婚噾棰�
+	totalPrice := decimal.NewFromInt(0)  // 鎬讳环
+	rowIndex := 5
+	for i, v := range operation.Details {
+		//璁剧疆琛ㄥ崟鏈�澶�9鏉℃暟鎹�
+		if i > 9 {
+			break
+		}
+		f.SetCellValue(sheet, "A"+strconv.Itoa(rowIndex), v.Product.Name)               // 浜у搧鍚嶇О
+		f.SetCellValue(sheet, "B"+strconv.Itoa(rowIndex), v.Product.Specs)              //瑙勬牸
+		f.SetCellValue(sheet, "C"+strconv.Itoa(rowIndex), v.TotalGrossWeight.String())  //閲嶉噺
+		f.SetCellValue(sheet, "D"+strconv.Itoa(rowIndex), v.Amount.String())            //鏁伴噺
+		f.SetCellValue(sheet, "E"+strconv.Itoa(rowIndex), v.AuxiliaryAmount.String())   //杈呭姪鏁伴噺
+		f.SetCellValue(sheet, "F"+strconv.Itoa(rowIndex), v.AuxiliaryUnit)              //杈呭姪鍗曚綅
+		f.SetCellValue(sheet, "G"+strconv.Itoa(rowIndex), v.Product.SalePrice.String()) // 鍗曚环
+
+		// 閲戦
+		if !v.Product.SalePrice.IsZero() {
+			ap := v.Amount.Mul(v.Product.SalePrice)
+			totalPrice = totalPrice.Add(ap)
+			price := ap.String()
+			split := strings.Split(price, ".")
+			if len(split) == 2 {
+				for n, a := range split[1] {
+					f.SetCellValue(sheet, string('O'+n)+strconv.Itoa(rowIndex), string(a))
+				}
+			}
+			s := split[0]
+			n := 0
+			for j := len(s) - 1; j >= 0; j-- {
+				if n == 6 {
+					f.SetCellValue(sheet, string('N'-n)+strconv.Itoa(rowIndex), s[:j])
+					break
+				}
+				f.SetCellValue(sheet, string('N'-n)+strconv.Itoa(rowIndex), string(s[j]))
+				n++
+			}
+		}
+		rowIndex++
+		totalAmount = totalAmount.Add(v.Amount)
+	}
+
+	//鍚堣
+	if !totalPrice.IsZero() {
+		price := totalPrice.String()
+		split := strings.Split(price, ".")
+		if len(split) == 2 {
+			for n, a := range split[1] {
+				f.SetCellValue(sheet, string('N'+n)+"14", string(a))
+			}
+		} else {
+			f.SetCellValue(sheet, "O14", "0")
+			f.SetCellValue(sheet, "P14", "0")
+		}
+		s := split[0]
+		n := 0
+		for j := len(s) - 1; j >= 0; j-- {
+			if n == 6 {
+				f.SetCellValue(sheet, string('N'-n)+"14", s[:j])
+				break
+			}
+			f.SetCellValue(sheet, string('N'-n)+"14", string(s[j]))
+			n++
+		}
+	}
+
+	f.SetCellValue(sheet, "Q5", operation.Remark) // 澶囨敞
+
+	// 绗�14琛�
+	f.SetCellValue(sheet, "B15", operation.Manager)    // 涓荤
+	f.SetCellValue(sheet, "D15", operation.Accountant) // 浼氳
+	f.SetCellValue(sheet, "H15", operation.Custodian)  //淇濈鍛�
+	f.SetCellValue(sheet, "Q15", operation.Custodian)  //缁忔墜
+	buf, err := f.WriteToBuffer()
+	if err != nil {
+		return "", err
+	}
+
+	fileUrl, err := upload.UploadFileToSeaWeed(string(constvar.FileType_File), uuid.NewV4().String()+".xlsx", buf.Bytes())
+	ioutil.WriteFile("E:\\"+uuid.NewV4().String()+".xlsx", buf.Bytes(), 0644)
+	if err != nil {
+		logx.Errorf("file upload err: %v", err)
+		return "", err
+	}
+	return fileUrl, nil
+}
+
 func ExportInputSelfmade(category constvar.FileTemplateCategory, operation *models.Operation) (string, error) {
 	template, err := models.NewFileTemplateAttachmentSearch().SetCategory(category).First()
 	if err != nil {

--
Gitblit v1.8.0