1. 新增预警表添加工单号字段,支持按工单号检索预警 2. 添加工单过滤在制品/绩效报表/预警中心查询 3. 补全WMS台账字段口径与权限配置 4. 修复备料单与数量不符处理流程 5. 新增配送进度/库位联动/自动出库功能 6. 修复AGV配送状态更新逻辑 7. 优化退料与库存管理细节
321 lines
13 KiB
Go
321 lines
13 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package materialrequest
|
|
|
|
import (
|
|
"time"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
)
|
|
|
|
const (
|
|
// Label holds the string label denoting the materialrequest type in the database.
|
|
Label = "material_request"
|
|
// FieldID holds the string denoting the id field in the database.
|
|
FieldID = "id"
|
|
// FieldRequestNo holds the string denoting the requestno field in the database.
|
|
FieldRequestNo = "request_no"
|
|
// FieldOrderNo holds the string denoting the orderno field in the database.
|
|
FieldOrderNo = "order_no"
|
|
// FieldPlanDate holds the string denoting the plandate field in the database.
|
|
FieldPlanDate = "plan_date"
|
|
// FieldMaterialCode holds the string denoting the materialcode field in the database.
|
|
FieldMaterialCode = "material_code"
|
|
// FieldMaterialName holds the string denoting the materialname field in the database.
|
|
FieldMaterialName = "material_name"
|
|
// FieldUnit holds the string denoting the unit field in the database.
|
|
FieldUnit = "unit"
|
|
// FieldManageMode holds the string denoting the managemode field in the database.
|
|
FieldManageMode = "manage_mode"
|
|
// FieldReqQty holds the string denoting the reqqty field in the database.
|
|
FieldReqQty = "req_qty"
|
|
// FieldStatus holds the string denoting the status field in the database.
|
|
FieldStatus = "status"
|
|
// FieldTargetDock holds the string denoting the targetdock field in the database.
|
|
FieldTargetDock = "target_dock"
|
|
// FieldStationNo holds the string denoting the stationno field in the database.
|
|
FieldStationNo = "station_no"
|
|
// FieldProcessCode holds the string denoting the processcode field in the database.
|
|
FieldProcessCode = "process_code"
|
|
// FieldSentQty holds the string denoting the sentqty field in the database.
|
|
FieldSentQty = "sent_qty"
|
|
// FieldReceivedQty holds the string denoting the receivedqty field in the database.
|
|
FieldReceivedQty = "received_qty"
|
|
// FieldReceivedAt holds the string denoting the receivedat field in the database.
|
|
FieldReceivedAt = "received_at"
|
|
// FieldReceiveBy holds the string denoting the receiveby field in the database.
|
|
FieldReceiveBy = "receive_by"
|
|
// FieldSource holds the string denoting the source field in the database.
|
|
FieldSource = "source"
|
|
// FieldOverQty holds the string denoting the overqty field in the database.
|
|
FieldOverQty = "over_qty"
|
|
// FieldOverReason holds the string denoting the overreason field in the database.
|
|
FieldOverReason = "over_reason"
|
|
// FieldRefReportNo holds the string denoting the refreportno field in the database.
|
|
FieldRefReportNo = "ref_report_no"
|
|
// FieldNeedAgv holds the string denoting the needagv field in the database.
|
|
FieldNeedAgv = "need_agv"
|
|
// FieldBatchNo holds the string denoting the batchno field in the database.
|
|
FieldBatchNo = "batch_no"
|
|
// FieldOperator holds the string denoting the operator field in the database.
|
|
FieldOperator = "operator"
|
|
// FieldCreatedAt holds the string denoting the createdat field in the database.
|
|
FieldCreatedAt = "created_at"
|
|
// FieldUpdatedAt holds the string denoting the updatedat field in the database.
|
|
FieldUpdatedAt = "updated_at"
|
|
// Table holds the table name of the materialrequest in the database.
|
|
Table = "material_request"
|
|
)
|
|
|
|
// Columns holds all SQL columns for materialrequest fields.
|
|
var Columns = []string{
|
|
FieldID,
|
|
FieldRequestNo,
|
|
FieldOrderNo,
|
|
FieldPlanDate,
|
|
FieldMaterialCode,
|
|
FieldMaterialName,
|
|
FieldUnit,
|
|
FieldManageMode,
|
|
FieldReqQty,
|
|
FieldStatus,
|
|
FieldTargetDock,
|
|
FieldStationNo,
|
|
FieldProcessCode,
|
|
FieldSentQty,
|
|
FieldReceivedQty,
|
|
FieldReceivedAt,
|
|
FieldReceiveBy,
|
|
FieldSource,
|
|
FieldOverQty,
|
|
FieldOverReason,
|
|
FieldRefReportNo,
|
|
FieldNeedAgv,
|
|
FieldBatchNo,
|
|
FieldOperator,
|
|
FieldCreatedAt,
|
|
FieldUpdatedAt,
|
|
}
|
|
|
|
// ValidColumn reports if the column name is valid (part of the table columns).
|
|
func ValidColumn(column string) bool {
|
|
for i := range Columns {
|
|
if column == Columns[i] {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
var (
|
|
// RequestNoValidator is a validator for the "requestNo" field. It is called by the builders before save.
|
|
RequestNoValidator func(string) error
|
|
// OrderNoValidator is a validator for the "orderNo" field. It is called by the builders before save.
|
|
OrderNoValidator func(string) error
|
|
// PlanDateValidator is a validator for the "planDate" field. It is called by the builders before save.
|
|
PlanDateValidator func(string) error
|
|
// MaterialCodeValidator is a validator for the "materialCode" field. It is called by the builders before save.
|
|
MaterialCodeValidator func(string) error
|
|
// DefaultMaterialName holds the default value on creation for the "materialName" field.
|
|
DefaultMaterialName string
|
|
// MaterialNameValidator is a validator for the "materialName" field. It is called by the builders before save.
|
|
MaterialNameValidator func(string) error
|
|
// DefaultUnit holds the default value on creation for the "unit" field.
|
|
DefaultUnit string
|
|
// UnitValidator is a validator for the "unit" field. It is called by the builders before save.
|
|
UnitValidator func(string) error
|
|
// DefaultManageMode holds the default value on creation for the "manageMode" field.
|
|
DefaultManageMode string
|
|
// ManageModeValidator is a validator for the "manageMode" field. It is called by the builders before save.
|
|
ManageModeValidator func(string) error
|
|
// DefaultReqQty holds the default value on creation for the "reqQty" field.
|
|
DefaultReqQty float64
|
|
// DefaultStatus holds the default value on creation for the "status" field.
|
|
DefaultStatus string
|
|
// StatusValidator is a validator for the "status" field. It is called by the builders before save.
|
|
StatusValidator func(string) error
|
|
// DefaultTargetDock holds the default value on creation for the "targetDock" field.
|
|
DefaultTargetDock string
|
|
// TargetDockValidator is a validator for the "targetDock" field. It is called by the builders before save.
|
|
TargetDockValidator func(string) error
|
|
// DefaultStationNo holds the default value on creation for the "stationNo" field.
|
|
DefaultStationNo int
|
|
// DefaultProcessCode holds the default value on creation for the "processCode" field.
|
|
DefaultProcessCode int
|
|
// DefaultSentQty holds the default value on creation for the "sentQty" field.
|
|
DefaultSentQty float64
|
|
// DefaultReceivedQty holds the default value on creation for the "receivedQty" field.
|
|
DefaultReceivedQty float64
|
|
// DefaultReceivedAt holds the default value on creation for the "receivedAt" field.
|
|
DefaultReceivedAt int64
|
|
// DefaultReceiveBy holds the default value on creation for the "receiveBy" field.
|
|
DefaultReceiveBy string
|
|
// ReceiveByValidator is a validator for the "receiveBy" field. It is called by the builders before save.
|
|
ReceiveByValidator func(string) error
|
|
// DefaultSource holds the default value on creation for the "source" field.
|
|
DefaultSource string
|
|
// SourceValidator is a validator for the "source" field. It is called by the builders before save.
|
|
SourceValidator func(string) error
|
|
// DefaultOverQty holds the default value on creation for the "overQty" field.
|
|
DefaultOverQty float64
|
|
// DefaultOverReason holds the default value on creation for the "overReason" field.
|
|
DefaultOverReason string
|
|
// OverReasonValidator is a validator for the "overReason" field. It is called by the builders before save.
|
|
OverReasonValidator func(string) error
|
|
// DefaultRefReportNo holds the default value on creation for the "refReportNo" field.
|
|
DefaultRefReportNo string
|
|
// RefReportNoValidator is a validator for the "refReportNo" field. It is called by the builders before save.
|
|
RefReportNoValidator func(string) error
|
|
// DefaultNeedAgv holds the default value on creation for the "needAgv" field.
|
|
DefaultNeedAgv bool
|
|
// DefaultBatchNo holds the default value on creation for the "batchNo" field.
|
|
DefaultBatchNo string
|
|
// BatchNoValidator is a validator for the "batchNo" field. It is called by the builders before save.
|
|
BatchNoValidator func(string) error
|
|
// DefaultOperator holds the default value on creation for the "operator" field.
|
|
DefaultOperator string
|
|
// OperatorValidator is a validator for the "operator" field. It is called by the builders before save.
|
|
OperatorValidator func(string) error
|
|
// DefaultCreatedAt holds the default value on creation for the "createdAt" field.
|
|
DefaultCreatedAt func() time.Time
|
|
// DefaultUpdatedAt holds the default value on creation for the "updatedAt" field.
|
|
DefaultUpdatedAt func() time.Time
|
|
// UpdateDefaultUpdatedAt holds the default value on update for the "updatedAt" field.
|
|
UpdateDefaultUpdatedAt func() time.Time
|
|
// IDValidator is a validator for the "id" field. It is called by the builders before save.
|
|
IDValidator func(int) error
|
|
)
|
|
|
|
// OrderOption defines the ordering options for the MaterialRequest queries.
|
|
type OrderOption func(*sql.Selector)
|
|
|
|
// ByID orders the results by the id field.
|
|
func ByID(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldID, opts...).ToFunc()
|
|
}
|
|
|
|
// ByRequestNo orders the results by the requestNo field.
|
|
func ByRequestNo(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldRequestNo, opts...).ToFunc()
|
|
}
|
|
|
|
// ByOrderNo orders the results by the orderNo field.
|
|
func ByOrderNo(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldOrderNo, opts...).ToFunc()
|
|
}
|
|
|
|
// ByPlanDate orders the results by the planDate field.
|
|
func ByPlanDate(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldPlanDate, opts...).ToFunc()
|
|
}
|
|
|
|
// ByMaterialCode orders the results by the materialCode field.
|
|
func ByMaterialCode(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldMaterialCode, opts...).ToFunc()
|
|
}
|
|
|
|
// ByMaterialName orders the results by the materialName field.
|
|
func ByMaterialName(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldMaterialName, opts...).ToFunc()
|
|
}
|
|
|
|
// ByUnit orders the results by the unit field.
|
|
func ByUnit(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldUnit, opts...).ToFunc()
|
|
}
|
|
|
|
// ByManageMode orders the results by the manageMode field.
|
|
func ByManageMode(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldManageMode, opts...).ToFunc()
|
|
}
|
|
|
|
// ByReqQty orders the results by the reqQty field.
|
|
func ByReqQty(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldReqQty, opts...).ToFunc()
|
|
}
|
|
|
|
// ByStatus orders the results by the status field.
|
|
func ByStatus(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldStatus, opts...).ToFunc()
|
|
}
|
|
|
|
// ByTargetDock orders the results by the targetDock field.
|
|
func ByTargetDock(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldTargetDock, opts...).ToFunc()
|
|
}
|
|
|
|
// ByStationNo orders the results by the stationNo field.
|
|
func ByStationNo(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldStationNo, opts...).ToFunc()
|
|
}
|
|
|
|
// ByProcessCode orders the results by the processCode field.
|
|
func ByProcessCode(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldProcessCode, opts...).ToFunc()
|
|
}
|
|
|
|
// BySentQty orders the results by the sentQty field.
|
|
func BySentQty(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldSentQty, opts...).ToFunc()
|
|
}
|
|
|
|
// ByReceivedQty orders the results by the receivedQty field.
|
|
func ByReceivedQty(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldReceivedQty, opts...).ToFunc()
|
|
}
|
|
|
|
// ByReceivedAt orders the results by the receivedAt field.
|
|
func ByReceivedAt(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldReceivedAt, opts...).ToFunc()
|
|
}
|
|
|
|
// ByReceiveBy orders the results by the receiveBy field.
|
|
func ByReceiveBy(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldReceiveBy, opts...).ToFunc()
|
|
}
|
|
|
|
// BySource orders the results by the source field.
|
|
func BySource(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldSource, opts...).ToFunc()
|
|
}
|
|
|
|
// ByOverQty orders the results by the overQty field.
|
|
func ByOverQty(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldOverQty, opts...).ToFunc()
|
|
}
|
|
|
|
// ByOverReason orders the results by the overReason field.
|
|
func ByOverReason(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldOverReason, opts...).ToFunc()
|
|
}
|
|
|
|
// ByRefReportNo orders the results by the refReportNo field.
|
|
func ByRefReportNo(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldRefReportNo, opts...).ToFunc()
|
|
}
|
|
|
|
// ByNeedAgv orders the results by the needAgv field.
|
|
func ByNeedAgv(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldNeedAgv, opts...).ToFunc()
|
|
}
|
|
|
|
// ByBatchNo orders the results by the batchNo field.
|
|
func ByBatchNo(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldBatchNo, opts...).ToFunc()
|
|
}
|
|
|
|
// ByOperator orders the results by the operator field.
|
|
func ByOperator(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldOperator, opts...).ToFunc()
|
|
}
|
|
|
|
// ByCreatedAt orders the results by the createdAt field.
|
|
func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldCreatedAt, opts...).ToFunc()
|
|
}
|
|
|
|
// ByUpdatedAt orders the results by the updatedAt field.
|
|
func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldUpdatedAt, opts...).ToFunc()
|
|
}
|