jiangshuai
2023-10-20 96844c22ef3fba86a55e0af1b51bc1009d6fa950
models/location_product_amount.go
@@ -4,6 +4,7 @@
   "fmt"
   "github.com/shopspring/decimal"
   "gorm.io/gorm"
   "wms/constvar"
   "wms/pkg/mysqlx"
)
@@ -29,15 +30,18 @@
   LocationProductAmountWithOperation struct {
      //LocationProductAmount LocationProductAmount `json:"locationProductAmount"`
      LocationId       int             `json:"locationId" gorm:"column:location_id"`
      LocationName     string          `json:"locationName" gorm:"column:location_name"`
      ProductId        string          `json:"productId" gorm:"column:product_id"`
      ProductName      string          `json:"productName" gorm:"column:product_name"`
      Amount           decimal.Decimal `json:"amount" gorm:"column:amount"`
      Unit             string          `json:"unit" gorm:"column:unit"`
      CreateDate       string          `json:"createDate" gorm:"column:create_date"`
      AdjustAmount     decimal.Decimal `json:"adjustAmount" gorm:"column:adjust_amount"`
      DifferenceAmount decimal.Decimal `json:"differenceAmount" gorm:"-"`
      LocationProductAmountId int                      `json:"locationProductAmountId" gorm:"location_product_amount_id"`
      LocationId              int                      `json:"locationId" gorm:"column:location_id"`
      LocationName            string                   `json:"locationName" gorm:"column:location_name"`
      ProductId               string                   `json:"productId" gorm:"column:product_id"`
      ProductName             string                   `json:"productName" gorm:"column:product_name"`
      Amount                  decimal.Decimal          `json:"amount" gorm:"column:amount"`
      Unit                    string                   `json:"unit" gorm:"column:unit"`
      CreateDate              string                   `json:"createDate" gorm:"column:create_date"`
      AdjustAmount            decimal.Decimal          `json:"adjustAmount" gorm:"column:adjust_amount"`
      DifferenceAmount        decimal.Decimal          `json:"differenceAmount" gorm:"-"`
      OperationId             int                      `json:"operationId" gorm:"column:operation_id"`
      Status                  constvar.OperationStatus `json:"status" gorm:"status"`
   }
)
@@ -79,6 +83,11 @@
   return slf
}
func (slf *LocationProductAmountSearch) SetLocationProductId(id int) *LocationProductAmountSearch {
   slf.LocationProductId = id
   return slf
}
func (slf *LocationProductAmountSearch) build() *gorm.DB {
   var db = slf.Orm.Model(&LocationProductAmount{})
@@ -96,6 +105,9 @@
   if slf.Preload {
      db = db.Model(&LocationProductAmount{}).Preload("LocationProduct").Preload("LocationProduct.Location").Preload("LocationProduct.Product")
   }
   if slf.LocationProductId != 0 {
      db = db.Where("location_product_id=?", slf.LocationProductId)
   }
   return db
}