liujiandao
2024-03-11 318c49da20ec30c4f85ef35e479499e82a841b25
models/material.go
@@ -12,19 +12,19 @@
   // Material 物料
   Material struct {
      BaseModelString
      Name string `gorm:"unique;type:varchar(191);not null;comment:物料名称" json:"name"` //物料名称
      Name string `gorm:"type:varchar(191);not null;comment:物料名称" json:"name"` //物料名称
      //MaterialType constvar.ProductType  `gorm:"index;type:int(11);comment:物料类型(数字)" json:"materialType"`
      Model constvar.MaterialMode `gorm:"type:varchar(191);not null;comment:物料类型(字符串)" json:"model"` //物料类型(字符串)
      //Explain           string                  `gorm:"type:varchar(512);comment:编号说明" json:"explain"`
      //CodeStandardID    string                  `gorm:"type:varchar(191);comment:编码规范ID" json:"codeStandardID"`
      //Specs             string                  `gorm:"type:varchar(191);comment:物料规格" json:"specs"`
      //Type              string                  `gorm:"type:varchar(191);comment:物料型号" json:"type"`
      MinInventory decimal.Decimal `gorm:"type:decimal(35,18);comment:最小库存" json:"minInventory"` //最小库存
      MaxInventory decimal.Decimal `gorm:"type:decimal(35,18);comment:最大库存" json:"maxInventory"` //最大库存
      Amount       decimal.Decimal `gorm:"type:decimal(35,18);comment:数量" json:"amount"`         //数量
      CodeStandardID string          `gorm:"type:varchar(191);comment:编码规范ID" json:"codeStandardID"`
      Specs          string          `gorm:"type:varchar(191);comment:物料规格" json:"specs"`
      Type           string          `gorm:"type:varchar(191);comment:物料型号" json:"type"`
      MinInventory   decimal.Decimal `gorm:"type:decimal(35,18);comment:最小库存" json:"minInventory"` //最小库存
      MaxInventory   decimal.Decimal `gorm:"type:decimal(35,18);comment:最大库存" json:"maxInventory"` //最大库存
      Amount         decimal.Decimal `gorm:"type:decimal(35,18);comment:数量" json:"amount"`         //数量
      //LockAmount        decimal.Decimal         `gorm:"type:decimal(35,18);default:0;comment:锁定数量" json:"lockAmount"`
      Unit string `gorm:"type:varchar(100);comment:单位" json:"unit"` //单位
      //Note              string                  `gorm:"type:varchar(1024);comment:备注" json:"note"`
      Unit       string `gorm:"type:varchar(100);comment:单位" json:"unit"` //单位
      Note       string `gorm:"type:varchar(1024);comment:备注" json:"note"`
      TemplateID string `gorm:"type:varchar(191);comment:模板ID" json:"templateID"` //模板ID
      //FSource           string                  `gorm:"type:varchar(191);comment:生产车间" json:"-"`
      //Status            constvar.MaterialStatus `gorm:"type:int(11);comment:状态" json:"status"`
@@ -32,11 +32,11 @@
      PurchasePrice decimal.Decimal `gorm:"type:decimal(35,18);comment:采购价格" json:"purchasePrice"` //采购价格
      //PurchaseAheadDay  int                     `gorm:"type:int(11);comment:采购提前期(天)" json:"purchaseAheadDay"`
      //ProduceAheadDay   int                     `gorm:"type:int(11);comment:制造提前期(天)" json:"produceAheadDay"`
      MinPurchaseAmount decimal.Decimal `gorm:"type:decimal(35,18);comment:最小采购量" json:"minPurchaseAmount"` //最小采购量
      //PurchaseType      constvar.PurchaseType `gorm:"type:int(11);comment:采购类型" json:"purchaseType"`
      IsSale    bool            `gorm:"type:tinyint(1);comment:是否销售" json:"isSale"`        //是否销售
      SalePrice decimal.Decimal `gorm:"type:decimal(35,18);comment:销售单价" json:"salePrice"` //销售单价
      AutoIncr  uint            `gorm:"type:int(11);comment:自增ID;default:0;" json:"-"`
      MinPurchaseAmount decimal.Decimal       `gorm:"type:decimal(35,18);comment:最小采购量" json:"minPurchaseAmount"` //最小采购量
      PurchaseType      constvar.PurchaseType `gorm:"type:int(11);comment:采购类型" json:"purchaseType"`
      IsSale            bool                  `gorm:"type:tinyint(1);comment:是否销售" json:"isSale"`        //是否销售
      SalePrice         decimal.Decimal       `gorm:"type:decimal(35,18);comment:销售单价" json:"salePrice"` //销售单价
      AutoIncr          uint                  `gorm:"type:int(11);comment:自增ID;default:0;" json:"autoIncr"`
      //wms添加字段
      ProductType         constvar.ProductType       `gorm:"type:int(11);comment:产品类型" json:"productType"`                 //产品类型
      InvoicingStrategy   constvar.InvoicingStrategy `gorm:"type:int(11);comment:开票策略" json:"invoicingStrategy"`           //开票策略
@@ -59,7 +59,7 @@
      ControlStrategy     constvar.InvoicingStrategy `gorm:"type:int(11);comment:控制策略" json:"controlStrategy"`             //控制策略
      BuyExplain          string                     `gorm:"type:varchar(512);comment:采购说明" json:"buyExplain"`             //采购说明
      Principal           string                     `gorm:"type:varchar(255);comment:负责人" json:"principal"`               //负责人
      Weight              decimal.Decimal            `gorm:"type:decimal(20,2);comment:重量" json:"weight"`                  //重量
      Weight              decimal.Decimal            `gorm:"type:decimal(20,3);comment:重量" json:"weight"`                  //重量
      Volume              decimal.Decimal            `gorm:"type:decimal(20,2);comment:体积" json:"volume"`                  //体积
      MakeAdvanceTime     decimal.Decimal            `gorm:"type:decimal(20,2);comment:制造前置时间" json:"makeAdvanceTime"`     //制造前置时间(天)
      OrderAdvanceTime    decimal.Decimal            `gorm:"type:decimal(20,2);comment:订单准备天数" json:"orderAdvanceTime"`    //订单准备天数(天)
@@ -67,9 +67,22 @@
      //HSCode                  string                     `gorm:"type:varchar(255);comment:HS编码" json:"HSCode"`                    //HS编码
      //OriginCountryId         int                        `gorm:"type:int(11);comment:原产地id" json:"originCountryId"`               //原产地id
      //OriginCountryName       string                     `gorm:"type:varchar(255);comment:原产地名称" json:"originCountryName"`        //原产地名称
      InStorageExplain        string `gorm:"type:varchar(512);comment:入库说明" json:"inStorageExplain"`          //入库说明
      OutStorageExplain       string `gorm:"type:varchar(512);comment:出库说明" json:"outStorageExplain"`         //出库说明
      InternalTransferExplain string `gorm:"type:varchar(512);comment:内部调拨说明" json:"internalTransferExplain"` //内部调拨说明
      InStorageExplain        string        `gorm:"type:varchar(512);comment:入库说明" json:"inStorageExplain"`          //入库说明
      OutStorageExplain       string        `gorm:"type:varchar(512);comment:出库说明" json:"outStorageExplain"`         //出库说明
      InternalTransferExplain string        `gorm:"type:varchar(512);comment:内部调拨说明" json:"internalTransferExplain"` //内部调拨说明
      AttachmentList          []*Attachment `json:"attachmentList" gorm:"many2many:material_attachment"`
      IsStorage               int           `gorm:"type:tinyint(1);default:1;comment:是否存库(1是2否)" json:"isStorage"`   //无库存的在wms以及srm中需要过滤掉
      IsVirtual               int           `json:"isVirtual" gorm:"type:tinyint(1);default:2;comment:是否虚拟物料(1是2否)"` //虚拟物料在MRP计算时跳过该层级直接领用下级物料,虚拟物料不生成工单
      ReorderRuleNum          int64         `json:"reorderRuleNum"`
      //以下为不存库的字段
      AttachmentIDs    []uint          `json:"attachmentIDs" gorm:"-"`
      PredictionAmount decimal.Decimal `json:"predictionAmount" gorm:"-"`
      InputAmount      decimal.Decimal `json:"inputAmount" gorm:"-"`
      OutputAmount     decimal.Decimal `json:"outputAmount" gorm:"-"`
      MinInventoryRule decimal.Decimal `json:"minInventoryRule" gorm:"-"` //最小库存
      MaxInventoryRule decimal.Decimal `json:"maxInventoryRule" gorm:"-"` //最大库存
   }
   MaterialSearch struct {
@@ -77,11 +90,13 @@
      //MaterialTypes   []constvar.MaterialType
      Keyword string
      //SetTemplateType constvar.SetTemplateType
      Order    string
      PageNum  int
      PageSize int
      Ids      []string
      Orm      *gorm.DB
      Order       string
      PageNum     int
      PageSize    int
      Ids         []string
      Orm         *gorm.DB
      CategoryIds []int
      Preload     bool
   }
   IdAndName struct {
@@ -95,7 +110,7 @@
}
func NewMaterialSearch() *MaterialSearch {
   return &MaterialSearch{Orm: mysqlx.GetDB()}
   return &MaterialSearch{Orm: mysqlx.GetDB().Where("is_storage = ?", 1)} //只查询有库存的
}
func (slf *MaterialSearch) SetOrm(tx *gorm.DB) *MaterialSearch {
@@ -152,6 +167,15 @@
   slf.TemplateID = id
   return slf
}
func (slf *MaterialSearch) SetCategoryId(id int) *MaterialSearch {
   slf.CategoryId = id
   return slf
}
func (slf *MaterialSearch) SetCategoryIds(ids []int) *MaterialSearch {
   slf.CategoryIds = ids
   return slf
}
//
//func (slf *MaterialSearch) SetSetTemplateType(setType constvar.SetTemplateType) *MaterialSearch {
@@ -163,6 +187,11 @@
//   slf.Status = status
//   return slf
//}
func (slf *MaterialSearch) SetPreload(preload bool) *MaterialSearch {
   slf.Preload = preload
   return slf
}
func (slf *MaterialSearch) build() *gorm.DB {
   var db = slf.Orm.Table(slf.TableName())
@@ -207,7 +236,7 @@
   //}
   if slf.Keyword != "" {
      db = db.Where("name LIKE ? or id LIKE ? ", "%"+slf.Keyword+"%", "%"+slf.Keyword+"%")
      db = db.Where("name LIKE ? ", "%"+slf.Keyword+"%")
   }
   if slf.Order != "" {
@@ -222,6 +251,16 @@
   }
   if slf.IsSale {
      db = db.Where("is_sale = ?", 1)
   }
   if slf.CategoryId > 0 {
      db = db.Where("category_id = ?", slf.CategoryId)
   }
   if len(slf.CategoryIds) > 0 {
      db = db.Where("category_id in ?", slf.CategoryIds)
   }
   if slf.Preload {
      db = db.Preload("AttachmentList")
   }
   return db
@@ -313,7 +352,7 @@
      db      = slf.build()
   )
   if err := db.Count(&total).Error; err != nil {
   if err := db.Model(&Material{}).Count(&total).Error; err != nil {
      return records, total, fmt.Errorf("find count err: %v", err)
   }
   if slf.PageNum*slf.PageSize > 0 {
@@ -459,9 +498,9 @@
//   return fileName, nil
//}
func (slf *MaterialSearch) MaxAutoIncr() (int64, error) {
func (slf *MaterialSearch) MaxAutoIncr() (int, error) {
   type Result struct {
      Max int64
      Max int
   }
   var (
@@ -477,22 +516,33 @@
}
type ResponseDisuseList struct {
   Id             int                      `json:"id" gorm:"column:id;primary_key;AUTO_INCREMENT"`
   Number         string                   `json:"number" gorm:"type:varchar(255)"`                                 //单号
   SourceNumber   string                   `json:"sourceNumber" gorm:"type:varchar(255)"`                           //源单号
   Status         constvar.OperationStatus `json:"status" gorm:"type:int(11);not null;comment:状态"`                  //状态
   FromLocationID int                      `json:"fromLocationId"   gorm:"type:int;not null;comment:源位置id"`         //源位置id
   FromLocation   Location                 `json:"fromLocation"     gorm:"foreignKey:FromLocationID;references:Id"` //源位置
   ToLocation     Location                 `json:"toLocation"      gorm:"foreignKey:ToLocationID;references:Id"`    //目标位置
   ToLocationID   int                      `json:"toLocationId"    gorm:"type:int;not null;comment:目标位置id"`         //目标位置id
   OperationDate  string                   `json:"operationDate" gorm:"type:varchar(31);comment:安排日期"`
   ContacterID    int                      `json:"contacterID" gorm:"type:int;comment:联系人ID"`
   ContacterName  string                   `json:"contacterName" gorm:"type:varchar(63);comment:联系人姓名"`
   CompanyID      int                      `json:"companyID" gorm:"type:int;comment:公司ID-客户"`
   CompanyName    string                   `json:"companyName" gorm:"type:varchar(127);comment:公司名称-客户"`
   Comment        string                   `json:"comment" gorm:"type:text;comment:备注"`
   ProductId      string                   `json:"productId" gorm:"type:varchar(191);not null;comment:产品id"`   //产品id
   ProductName    string                   `json:"productName" gorm:"type:varchar(255);not null;comment:产品名称"` //产品名称
   Amount         decimal.Decimal          `json:"amount" gorm:"type:decimal(20,2);not null;comment:数量"`       //数量
   Unit           string                   `json:"unit" gorm:"type:varchar(31);comment:单位"`
   Id                int                        `json:"id" gorm:"column:id;primary_key;AUTO_INCREMENT"`
   Number            string                     `json:"number" gorm:"type:varchar(255)"`                                 //单号
   SourceNumber      string                     `json:"sourceNumber" gorm:"type:varchar(255)"`                           //源单号
   Status            constvar.OperationStatus   `json:"status" gorm:"type:int(11);not null;comment:状态"`                  //状态
   FromLocationID    int                        `json:"fromLocationId"   gorm:"type:int;not null;comment:源位置id"`         //源位置id
   FromLocation      Location                   `json:"fromLocation"     gorm:"foreignKey:FromLocationID;references:Id"` //源位置
   ToLocation        Location                   `json:"toLocation"      gorm:"foreignKey:ToLocationID;references:Id"`    //目标位置
   ToLocationID      int                        `json:"toLocationId"    gorm:"type:int;not null;comment:目标位置id"`         //目标位置id
   OperationDate     string                     `json:"operationDate" gorm:"type:varchar(31);comment:安排日期"`
   ContacterID       int                        `json:"contacterID" gorm:"type:int;comment:联系人ID"`
   ContacterName     string                     `json:"contacterName" gorm:"type:varchar(63);comment:联系人姓名"`
   CompanyID         int                        `json:"companyID" gorm:"type:int;comment:公司ID-客户"`
   CompanyName       string                     `json:"companyName" gorm:"type:varchar(127);comment:公司名称-客户"`
   Comment           string                     `json:"comment" gorm:"type:text;comment:备注"`
   ProductId         string                     `json:"productId" gorm:"type:varchar(191);not null;comment:产品id"`   //产品id
   ProductName       string                     `json:"productName" gorm:"type:varchar(255);not null;comment:产品名称"` //产品名称
   Amount            decimal.Decimal            `json:"amount" gorm:"type:decimal(20,2);not null;comment:数量"`       //数量
   Unit              string                     `json:"unit" gorm:"type:varchar(31);comment:单位"`
   BaseOperationType constvar.BaseOperationType `json:"baseOperationType" gorm:"type:tinyint;not null;comment:基础作业类型"` //基础作业类型
}
func (slf *MaterialSearch) Update(record *Material) error {
   var db = slf.build()
   if err := db.Omit("CreatedAt").Updates(record).Error; err != nil {
      return fmt.Errorf("save err: %v, record: %+v", err, record)
   }
   return nil
}