zhangqian
2023-10-09 81cda4f09d4c0fff6edd087d1c49d05cb6eaab38
model/procedures.go
@@ -7,19 +7,24 @@
   "encoding/json"
   "fmt"
   "gorm.io/gorm"
   "gorm.io/gorm/clause"
)
type (
   Procedures struct {
      gorm.Model     `json:"-"`
      ID             int    `gorm:"primarykey"`
      WorkOrderID    string `gorm:"index;type:varchar(191);not null;comment:工单ID" json:"-"`
      OrderID        string `gorm:"index;type:varchar(191);not null;comment:订单ID" json:"-"`
      StartTime      int64  `gorm:"comment:计划开始时间" json:"startTime"`
      EndTime        int64  `gorm:"comment:计划结束时间" json:"endTime"`
      Status         ProcedureStatus
      ProcedureData  string                  `json:"-"`                  //common.ProductProcedure  json串
      ProceduresInfo common.ProductProcedure `json:"procedure" gorm:"-"` //common.ProductProcedure  对象
      gorm.Model         `json:"-"`
      ID                 int    `gorm:"primarykey"`
      WorkOrderID        string `gorm:"index;type:varchar(191);not null;comment:工单ID" json:"-"`
      OrderID            string `gorm:"index;type:varchar(191);not null;comment:订单ID" json:"-"`
      DeviceID           string `gorm:"index;type:varchar(191);comment:设备ID" json:"deviceId"`
      ProcedureID        string `gorm:"index;type:varchar(191);comment:工序ID" json:"procedureId"`
      Channel            int32  `gorm:"index;comment:通道" json:"channel"`                //通道
      ProcessModelNumber string `gorm:"index;comment:工艺模型编号" json:"processModelNumber"` //工艺模型编号
      StartTime          int64  `gorm:"comment:计划开始时间" json:"startTime"`
      EndTime            int64  `gorm:"comment:计划结束时间" json:"endTime"`
      Status             ProcedureStatus
      ProcedureData      string                  `json:"-"`                  //common.ProductProcedure  json串
      ProceduresInfo     common.ProductProcedure `json:"procedure" gorm:"-"` //common.ProductProcedure  对象
   }
   ProceduresSearch struct {
@@ -30,7 +35,10 @@
      Orm          *gorm.DB
      Preload      bool
      StartTimeMax int64
      EndTimeMin   int64
      StatusNot    ProcedureStatus
      ProcedureIds []string
      Channels     []int32
   }
)
@@ -82,13 +90,34 @@
   slf.WorkOrderID = orderId
   return slf
}
func (slf *ProceduresSearch) SetProcedureId(id string) *ProceduresSearch {
   slf.ProcedureID = id
   return slf
}
func (slf *ProceduresSearch) SetStartTimeMax(ts int64) *ProceduresSearch {
   slf.StartTimeMax = ts
   return slf
}
func (slf *ProceduresSearch) SetEndTimeMin(ts int64) *ProceduresSearch {
   slf.EndTimeMin = ts
   return slf
}
func (slf *ProceduresSearch) SetId(id int) *ProceduresSearch {
   slf.ID = id
   return slf
}
func (slf *ProceduresSearch) SetProcedureIds(procedureIds []string) *ProceduresSearch {
   slf.ProcedureIds = procedureIds
   return slf
}
func (slf *ProceduresSearch) SetDeviceId(id string) *ProceduresSearch {
   slf.DeviceID = id
   return slf
}
@@ -107,6 +136,11 @@
   return slf
}
func (slf *ProceduresSearch) SetChannels(channels []int32) *ProceduresSearch {
   slf.Channels = channels
   return slf
}
func (slf *ProceduresSearch) build() *gorm.DB {
   var db = slf.Orm.Model(&Procedures{})
@@ -122,6 +156,10 @@
      db = db.Where("work_order_id = ?", slf.WorkOrderID)
   }
   if slf.DeviceID != "" {
      db = db.Where("device_id = ?", slf.DeviceID)
   }
   if slf.Preload {
      db = db.Preload("InputMaterials").Preload("OutputMaterials")
   }
@@ -130,12 +168,28 @@
      db = db.Where("start_time <= ?", slf.StartTimeMax)
   }
   if slf.EndTimeMin != 0 {
      db = db.Where("end_time > ?", slf.EndTimeMin)
   }
   if slf.Status != 0 {
      db = db.Where("status = ?", slf.Status)
   }
   if slf.StatusNot != 0 {
      db = db.Where("status != ?", slf.StatusNot)
      db = db.Where("status <> ?", slf.StatusNot)
   }
   if len(slf.ProcedureIds) > 0 {
      db = db.Where("procedure_id in ?", slf.ProcedureIds)
   }
   if slf.ProcedureID != "" {
      db = db.Where("procedure_id = ?", slf.ProcedureID)
   }
   if len(slf.Channels) > 0 {
      db = db.Where("channel in ?", slf.Channels)
   }
   return db
@@ -163,10 +217,25 @@
   return nil
}
func (slf *ProceduresSearch) Save(record *Procedures) error {
func (slf *ProceduresSearch) Upsert(record *Procedures) error {
   var db = slf.build()
   old, err := slf.First()
   if err != gorm.ErrRecordNotFound && old.ID != 0 {
      record.ID = old.ID
   }
   if err := db.Clauses(clause.OnConflict{
      UpdateAll: true,
   }).Create(&record).Error; err != nil {
      return fmt.Errorf("save err: %v, record: %+v", err, record)
   }
   return nil
}
func (slf *ProceduresSearch) Updates(record *Procedures) error {
   var db = slf.build()
   if err := db.Save(record).Error; err != nil {
   if err := db.Updates(record).Error; err != nil {
      return fmt.Errorf("save err: %v, record: %+v", err, record)
   }
@@ -240,6 +309,17 @@
   return records, total, nil
}
func (slf *ProceduresSearch) Count() (int64, error) {
   var (
      total int64
      db    = slf.build()
   )
   if err := db.Count(&total).Error; err != nil {
      return total, fmt.Errorf("find count err: %v", err)
   }
   return total, nil
}
func (slf *ProceduresSearch) FindNotTotal() ([]*Procedures, error) {
   var (
      records = make([]*Procedures, 0)