From cab6eea89a0d82710369604ecb51f1cdb122e433 Mon Sep 17 00:00:00 2001 From: zhangqian <zhangqian@123.com> Date: 星期四, 19 十月 2023 17:26:34 +0800 Subject: [PATCH] fix --- model/procedures.go | 120 ++++++++++++++++++++++++++++++++++++++++++++++++++++------- 1 files changed, 105 insertions(+), 15 deletions(-) diff --git a/model/procedures.go b/model/procedures.go index a1fb11b..4c93059 100644 --- a/model/procedures.go +++ b/model/procedures.go @@ -6,20 +6,23 @@ "apsClient/pkg/sqlitex" "encoding/json" "fmt" - "gorm.io/gorm" + "github.com/jinzhu/gorm" ) 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 + WorkOrderID string `gorm:"index;type:varchar(191);not null" json:"-"` + OrderID string `gorm:"index;type:varchar(191);not null" json:"-"` + DeviceID string `gorm:"index;type:varchar(191)" json:"deviceId"` + ProcedureID string `gorm:"index;type:varchar(191)" json:"procedureId"` + Channel int32 `gorm:"index;" json:"channel"` //閫氶亾 + ProcessModelNumber string `gorm:"index;" json:"processModelNumber"` //宸ヨ壓妯″瀷缂栧彿 + StartTime int64 `json:"startTime"` + EndTime int64 `json:"endTime"` + Status ProcedureStatus + ProcedureData string `json:"-"` //common.ProductProcedure json涓� + ProceduresInfo common.ProductProcedure `json:"procedure" gorm:"-"` //common.ProductProcedure 瀵硅薄 } ProceduresSearch struct { @@ -30,14 +33,19 @@ Orm *gorm.DB Preload bool StartTimeMax int64 + EndTimeMin int64 + StatusNot ProcedureStatus + ProcedureIds []string + Channels []int32 } ) type ProcedureStatus int const ( - ProcedureStatusUnFinished ProcedureStatus = 1 - ProcedureStatusFinished ProcedureStatus = 2 + ProcedureStatusWaitProcess ProcedureStatus = 1 + ProcedureStatusProcessing ProcedureStatus = 2 + ProcedureStatusFinished ProcedureStatus = 3 ) func (slf *Procedures) TableName() string { @@ -80,13 +88,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) SetId(id int) *ProceduresSearch { +func (slf *ProceduresSearch) SetEndTimeMin(ts int64) *ProceduresSearch { + slf.EndTimeMin = ts + return slf +} + +func (slf *ProceduresSearch) SetId(id uint) *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 } @@ -95,8 +124,18 @@ return slf } +func (slf *ProceduresSearch) SetStatusNot(status ProcedureStatus) *ProceduresSearch { + slf.StatusNot = status + return slf +} + func (slf *ProceduresSearch) SetPreload(preload bool) *ProceduresSearch { slf.Preload = preload + return slf +} + +func (slf *ProceduresSearch) SetChannels(channels []int32) *ProceduresSearch { + slf.Channels = channels return slf } @@ -115,6 +154,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") } @@ -123,8 +166,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) + } + + 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 @@ -152,10 +215,26 @@ 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 + err = db.Save(&record).Error + } else { + err = db.Create(&record).Error + } + if 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) } @@ -229,6 +308,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) -- Gitblit v1.8.0