package handlers import ( "net/http" "easydo-echo_win7/models" "easydo-echo_win7/services" "easydo-echo_win7/utils" "easydo-echo_win7/middleware" "github.com/jmoiron/sqlx" "github.com/labstack/echo-contrib/session" "github.com/labstack/echo/v4" ) func Add_purchase_plan_to_routes(e *echo.Echo) { group := e.Group("/purchasePlan") group.Use(middleware.AuthMiddleware) group.POST("/getPage", purchasePlanGetPage) group.POST("/getList", purchasePlanGetList) group.POST("/save", purchasePlanSave) group.POST("/update", purchasePlanUpdate) group.POST("/remove", purchasePlanRemove) } func purchasePlanGetPage(c echo.Context) error { var paramMap map[string]interface{} if err := c.Bind(¶mMap); err != nil { return c.JSON(http.StatusInternalServerError, utils.ErrorResponse("参数解析失败", err.Error())) } result, err := services.JdbcClient.GetJdbcPage(paramMap, models.PurchasePlan{}) if err != nil { utils.PrintSqlErr(err) return c.JSON(http.StatusInternalServerError, utils.ErrorResponse("系统错误", err.Error())) } list := utils.ConvertInterface[[]models.PurchasePlan](result.Records) if len(list) == 0 { list = []models.PurchasePlan{} } for i := range list { model := list[i] minioList, err := services.JdbcClient.GetMinioFile(model) if err != nil { utils.PrintSearchFileErr(err) } model.FileList = &minioList sale_order := new(models.SaleOrder) sale_order.ID = model.SaleOrderId err = services.JdbcClient.GetJdbcModelById(sale_order) if err != nil { utils.PrintSqlErr(err) return c.JSON(http.StatusInternalServerError, utils.ErrorResponse("系统错误", err.Error())) } model.SaleOrder = sale_order purchaseUser := new(models.SysUser) purchaseUser.ID = model.PurchaseUserId err = services.JdbcClient.GetJdbcModelById(purchaseUser) if err != nil { utils.PrintSqlErr(err) return c.JSON(http.StatusInternalServerError, utils.ErrorResponse("系统错误", err.Error())) } model.PurchaseUserName = purchaseUser.NickName detailParam := new(models.PurchasePlanDetail) detailParam.PlanId = model.ID result, err := services.JdbcClient.GetJdbcListByObject(detailParam) if err != nil { utils.PrintSqlErr(err) return c.JSON(http.StatusInternalServerError, utils.ErrorResponse("系统错误", err.Error())) } detail_list := utils.ConvertInterface[[]models.PurchasePlanDetail](result) for j := range detail_list { detail := detail_list[j] material := new(models.ProductMaterial) material.Code = detail.MaterialCode err = services.JdbcClient.GetJdbcModel(material) if err != nil { utils.PrintSqlErr(err) return c.JSON(http.StatusInternalServerError, utils.ErrorResponse("系统错误", err.Error())) } detail.ProductMaterial = material detail_list[j] = detail } model.ChildrenList = &detail_list list[i] = model } result.Records = list return c.JSON(http.StatusOK, result) } func purchasePlanGetList(c echo.Context) error { var paramMap map[string]interface{} if err := c.Bind(¶mMap); err != nil { return c.JSON(http.StatusInternalServerError, utils.ErrorResponse("参数解析失败", err.Error())) } result, err := services.JdbcClient.GetJdbcList(paramMap, models.PurchasePlan{}) if err != nil { utils.PrintSqlErr(err) return c.JSON(http.StatusInternalServerError, utils.ErrorResponse("系统错误", err.Error())) } list := utils.ConvertInterface[[]models.PurchasePlan](result) if len(list) == 0 { return c.JSON(http.StatusOK, []string{}) } return c.JSON(http.StatusOK, list) } func purchasePlanSave(c echo.Context) error { tx, _ := services.MYSQL_DB.Beginx() sess, _ := session.Get("auth_session", c) user_id, ok := sess.Values["user_id"].(int64) if !ok { return c.JSON(http.StatusInternalServerError, utils.ErrorResponse("用户请先登录", "")) } plan := new(models.PurchasePlan) if err := c.Bind(plan); err != nil { return c.JSON(http.StatusInternalServerError, utils.ErrorResponse("参数解析失败", err.Error())) } err_msg := purchasePlan_generateCode(plan, tx) if err_msg != "" { tx.Rollback() return c.JSON(http.StatusBadRequest, utils.ErrorResponse(err_msg, "")) } status := models.Purchase_Plan_Status_Pending plan.Status = &status plan.CreateId = &user_id services.JdbcClient.JdbcInsert(plan, tx) detail_list := *plan.ChildrenList for _, detail := range detail_list { detail.PlanId = plan.ID err := services.JdbcClient.JdbcInsert(&detail, tx) if err != nil { utils.PrintSqlErr(err) tx.Rollback() return c.JSON(http.StatusInternalServerError, utils.ErrorResponse("系统错误", "")) } } if plan.FileList == nil { tx.Commit() return c.JSON(http.StatusOK, plan) } fileList := *plan.FileList for _, file := range fileList { file.RefId = plan.ID refType := models.File_Ref_Type_Purchase_Plan file.RefType = &refType err := services.JdbcClient.JdbcInsert(&file, tx) if err != nil { utils.PrintSqlErr(err) tx.Rollback() return c.JSON(http.StatusInternalServerError, utils.ErrorResponse("系统错误", "")) } } tx.Commit() return c.JSON(http.StatusOK, plan) } func purchasePlanUpdate(c echo.Context) error { tx, _ := services.MYSQL_DB.Beginx() plan := new(models.PurchasePlan) if err := c.Bind(plan); err != nil { return c.JSON(http.StatusInternalServerError, utils.ErrorResponse("参数解析失败", err.Error())) } sess, _ := session.Get("auth_session", c) user_id, ok := sess.Values["user_id"].(int64) if !ok { return c.JSON(http.StatusInternalServerError, utils.ErrorResponse("用户请先登录", "")) } plan.UpdateId = &user_id err := services.JdbcClient.JdbcUpdateById(plan, tx) if err != nil { utils.PrintSqlErr(err) tx.Rollback() return c.JSON(http.StatusInternalServerError, utils.ErrorResponse("系统错误", "")) } detail := new(models.PurchasePlanDetail) detail.PlanId = plan.ID err = services.JdbcClient.JdbcRemove(detail, tx) if err != nil { utils.PrintSqlErr(err) tx.Rollback() return c.JSON(http.StatusInternalServerError, utils.ErrorResponse("系统错误", "")) } detail_list := *plan.ChildrenList for _, detail := range detail_list { detail.PlanId = plan.ID err := services.JdbcClient.JdbcInsert(&detail, tx) if err != nil { utils.PrintSqlErr(err) tx.Rollback() return c.JSON(http.StatusInternalServerError, utils.ErrorResponse("系统错误", "")) } } if plan.FileList == nil { tx.Commit() return c.JSON(http.StatusOK, plan) } fileList := *plan.FileList for _, file := range fileList { file.RefId = plan.ID refType := models.File_Ref_Type_Purchase_Plan file.RefType = &refType err := services.JdbcClient.JdbcInsert(&file, tx) if err != nil { utils.PrintSqlErr(err) tx.Rollback() return c.JSON(http.StatusInternalServerError, utils.ErrorResponse("系统错误", "")) } } tx.Commit() return c.JSON(http.StatusOK, plan) } func purchasePlanRemove(c echo.Context) error { tx, _ := services.MYSQL_DB.Beginx() plan := new(models.PurchasePlan) if err := c.Bind(plan); err != nil { return c.JSON(http.StatusInternalServerError, utils.ErrorResponse("参数解析失败", err.Error())) } err := services.JdbcClient.JdbcRemoveById(plan, tx) if err != nil { utils.PrintSqlErr(err) tx.Rollback() return c.JSON(http.StatusInternalServerError, utils.ErrorResponse("系统错误", "")) } minio_file := new(models.MinioFile) minio_file.RefId = plan.ID refType := models.File_Ref_Type_Purchase_Plan minio_file.RefType = &refType err = services.JdbcClient.JdbcRemove(minio_file, tx) if err != nil { utils.PrintSqlErr(err) tx.Rollback() return c.JSON(http.StatusInternalServerError, utils.ErrorResponse("系统错误", "")) } detail := new(models.PurchasePlanDetail) detail.PlanId = plan.ID err = services.JdbcClient.JdbcRemove(detail, tx) if err != nil { utils.PrintSqlErr(err) tx.Rollback() return c.JSON(http.StatusInternalServerError, utils.ErrorResponse("系统错误", "")) } tx.Commit() return c.JSON(http.StatusOK, plan) } func purchasePlan_generateCode(model *models.PurchasePlan, tx *sqlx.Tx) string { sync := new(models.Synchronized) sync.Sync.Lock() defer sync.Sync.Unlock() if model.Code != nil && len(*model.Code) > 0 { modelParam := new(models.PurchasePlan) modelParam.Code = model.Code modelParam.TenantId = model.TenantId count, err := services.JdbcClient.GetJdbcCount(modelParam, tx) if err != nil { utils.PrintSqlErr(err) return "SQL执行失败" } if count > 0 { return "编号已存在,请重新填写" } } else { for { code, err := services.GetFlowNo(models.Flow_No_Type_Purchase_Plan, *model.TenantId, tx) if err != nil { return "自动生成编码失败" } modelParam := new(models.PurchasePlan) modelParam.Code = &code modelParam.TenantId = model.TenantId count, err := services.JdbcClient.GetJdbcCount(modelParam, tx) if err != nil { utils.PrintSqlErr(err) return "SQL执行失败" } if count == 0 { model.Code = &code break } } } return "" }