e0bee00ff4
- Web: 隐藏 ICP 备案号(条件渲染),联系入口改为微信咨询(条件渲染,配置 wechat 字段后生效) - backend: 拼音回填抽取为独立 cmd/backfill-pinyin 工具,不再在启动时运行 - backend: DB 连接池参数(max_idle_conns/max_open_conns)改为配置可控,默认 10/100 - backend: Inventory 反范式字段添加注释说明快照语义 - backend: 全量 handler 采用 util.RespondSuccess/RespondCreated 统一响应格式(51 处) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
163 lines
7.9 KiB
Go
163 lines
7.9 KiB
Go
package model
|
|
|
|
import "time"
|
|
|
|
// -------- 入库单 --------
|
|
|
|
type StockInOrder struct {
|
|
TenantBase
|
|
OrderNo string `gorm:"size:50;uniqueIndex:uk_shop_order_no" json:"order_no"`
|
|
Type string `gorm:"size:30;default:'purchase'" json:"type"`
|
|
WarehouseID uint64 `gorm:"not null" json:"warehouse_id" binding:"required,min=1"`
|
|
PartnerID *uint64 `json:"partner_id"`
|
|
OperatorID uint64 `gorm:"not null" json:"operator_id"`
|
|
ReviewerID *uint64 `json:"reviewer_id"`
|
|
Status string `gorm:"type:enum('draft','pending','approved','rejected');default:'draft'" json:"status"`
|
|
OrderDate Date `gorm:"type:date" json:"order_date"`
|
|
TotalAmount float64 `gorm:"type:decimal(16,2);default:0" json:"total_amount"`
|
|
ReviewedAt *time.Time `json:"reviewed_at"`
|
|
CustomFields JSON `gorm:"type:json" json:"custom_fields,omitempty"`
|
|
Remark string `gorm:"size:500" json:"remark"`
|
|
|
|
Items []StockInItem `gorm:"foreignKey:OrderID" json:"items,omitempty"`
|
|
Warehouse *Warehouse `gorm:"foreignKey:WarehouseID" json:"warehouse,omitempty"`
|
|
Partner *Partner `gorm:"foreignKey:PartnerID" json:"partner,omitempty"`
|
|
Operator *User `gorm:"foreignKey:OperatorID" json:"operator,omitempty"`
|
|
Reviewer *User `gorm:"foreignKey:ReviewerID" json:"reviewer,omitempty"`
|
|
}
|
|
|
|
type StockInItem struct {
|
|
Base
|
|
OrderID uint64 `gorm:"not null;index" json:"order_id"`
|
|
ShopID uint64 `gorm:"not null" json:"shop_id"`
|
|
ProductID uint64 `gorm:"not null" json:"product_id"`
|
|
Quantity float64 `gorm:"type:decimal(12,3);not null" json:"quantity"`
|
|
UnitPrice float64 `gorm:"type:decimal(16,2);default:0" json:"unit_price"`
|
|
TotalPrice float64 `gorm:"type:decimal(16,2);default:0" json:"total_price"`
|
|
BatchNo string `gorm:"size:50" json:"batch_no"`
|
|
ProductionDate *Date `gorm:"type:date" json:"production_date"`
|
|
CustomFields JSON `gorm:"type:json" json:"custom_fields,omitempty"`
|
|
Remark string `gorm:"size:255" json:"remark"`
|
|
|
|
Product *Product `gorm:"foreignKey:ProductID" json:"product,omitempty"`
|
|
Order *StockInOrder `gorm:"foreignKey:OrderID" json:"order,omitempty"`
|
|
}
|
|
|
|
// -------- 出库单 --------
|
|
|
|
type StockOutOrder struct {
|
|
TenantBase
|
|
OrderNo string `gorm:"size:50;uniqueIndex:uk_shop_order_no" json:"order_no"`
|
|
Type string `gorm:"size:30;default:'sale'" json:"type"`
|
|
WarehouseID uint64 `gorm:"not null" json:"warehouse_id" binding:"required,min=1"`
|
|
PartnerID *uint64 `json:"partner_id"`
|
|
OperatorID uint64 `gorm:"not null" json:"operator_id"`
|
|
ReviewerID *uint64 `json:"reviewer_id"`
|
|
Status string `gorm:"type:enum('draft','pending','approved','rejected');default:'draft'" json:"status"`
|
|
OrderDate Date `gorm:"type:date" json:"order_date"`
|
|
TotalAmount float64 `gorm:"type:decimal(16,2);default:0" json:"total_amount"`
|
|
ReviewedAt *time.Time `json:"reviewed_at"`
|
|
CustomFields JSON `gorm:"type:json" json:"custom_fields,omitempty"`
|
|
Remark string `gorm:"size:500" json:"remark"`
|
|
|
|
Items []StockOutItem `gorm:"foreignKey:OrderID" json:"items,omitempty"`
|
|
Warehouse *Warehouse `gorm:"foreignKey:WarehouseID" json:"warehouse,omitempty"`
|
|
Partner *Partner `gorm:"foreignKey:PartnerID" json:"partner,omitempty"`
|
|
Operator *User `gorm:"foreignKey:OperatorID" json:"operator,omitempty"`
|
|
Reviewer *User `gorm:"foreignKey:ReviewerID" json:"reviewer,omitempty"`
|
|
}
|
|
|
|
type StockOutItem struct {
|
|
Base
|
|
OrderID uint64 `gorm:"not null;index" json:"order_id"`
|
|
ShopID uint64 `gorm:"not null" json:"shop_id"`
|
|
ProductID uint64 `gorm:"not null" json:"product_id"`
|
|
Quantity float64 `gorm:"type:decimal(12,3);not null" json:"quantity"`
|
|
UnitPrice float64 `gorm:"type:decimal(16,2);default:0" json:"unit_price"`
|
|
TotalPrice float64 `gorm:"type:decimal(16,2);default:0" json:"total_price"`
|
|
CustomFields JSON `gorm:"type:json" json:"custom_fields,omitempty"`
|
|
Remark string `gorm:"size:255" json:"remark"`
|
|
|
|
Product *Product `gorm:"foreignKey:ProductID" json:"product,omitempty"`
|
|
}
|
|
|
|
// -------- 实时库存(批次模式:每条记录代表一个批次/批次) --------
|
|
|
|
type Inventory struct {
|
|
ID uint64 `gorm:"primaryKey;autoIncrement" json:"id"`
|
|
ShopID uint64 `gorm:"not null" json:"shop_id"`
|
|
WarehouseID *uint64 `json:"warehouse_id"`
|
|
ProductID *uint64 `json:"product_id"`
|
|
StockInItemID *uint64 `json:"stock_in_item_id"`
|
|
InventoryCheckID *uint64 `json:"inventory_check_id"`
|
|
Quantity float64 `gorm:"type:decimal(12,3);not null;default:0" json:"quantity"`
|
|
// Snapshot fields: copied from product/warehouse/stock-in at approval time.
|
|
// They reflect the state at the moment of stock-in and are NOT updated when the
|
|
// referenced product or warehouse record is later modified.
|
|
ProductCode string `gorm:"size:50" json:"product_code"`
|
|
ProductName string `gorm:"size:200" json:"product_name"`
|
|
Series string `gorm:"size:100" json:"series"`
|
|
Spec string `gorm:"size:100" json:"spec"`
|
|
Unit string `gorm:"size:20" json:"unit"`
|
|
WarehouseName string `gorm:"size:100" json:"warehouse_name"`
|
|
UnitPrice *float64 `gorm:"type:decimal(16,2)" json:"unit_price"`
|
|
ProductionDate *Date `gorm:"type:date" json:"production_date"`
|
|
BatchNo string `gorm:"size:50" json:"batch_no"`
|
|
SupplierName string `gorm:"size:200" json:"supplier_name"`
|
|
Remark string `gorm:"size:500" json:"remark"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
DeletedAt *time.Time `gorm:"index" json:"-"`
|
|
|
|
StockInItem *StockInItem `gorm:"foreignKey:StockInItemID" json:"stock_in_item,omitempty"`
|
|
Product *Product `gorm:"foreignKey:ProductID" json:"product,omitempty"`
|
|
Warehouse *Warehouse `gorm:"foreignKey:WarehouseID" json:"warehouse,omitempty"`
|
|
}
|
|
|
|
// -------- 库存流水 --------
|
|
|
|
type InventoryLog struct {
|
|
ID uint64 `gorm:"primaryKey;autoIncrement" json:"id"`
|
|
ShopID uint64 `gorm:"not null;index:idx_shop_product" json:"shop_id"`
|
|
WarehouseID uint64 `gorm:"not null" json:"warehouse_id"`
|
|
ProductID uint64 `gorm:"not null;index:idx_shop_product" json:"product_id"`
|
|
Direction string `gorm:"type:enum('in','out')" json:"direction"`
|
|
Quantity float64 `gorm:"type:decimal(12,3)" json:"quantity"`
|
|
QtyBefore float64 `gorm:"type:decimal(12,3)" json:"qty_before"`
|
|
QtyAfter float64 `gorm:"type:decimal(12,3)" json:"qty_after"`
|
|
RefType string `gorm:"size:30" json:"ref_type"`
|
|
RefID uint64 `json:"ref_id"`
|
|
OperatorID *uint64 `json:"operator_id"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
|
|
Product *Product `gorm:"foreignKey:ProductID" json:"product,omitempty"`
|
|
Warehouse *Warehouse `gorm:"foreignKey:WarehouseID" json:"warehouse,omitempty"`
|
|
}
|
|
|
|
// -------- 库存盘点 --------
|
|
|
|
type InventoryCheck struct {
|
|
TenantBase
|
|
CheckNo string `gorm:"size:50;uniqueIndex:uk_shop_check_no" json:"check_no"`
|
|
WarehouseID uint64 `gorm:"not null" json:"warehouse_id"`
|
|
OperatorID uint64 `gorm:"not null" json:"operator_id"`
|
|
Status string `gorm:"type:enum('draft','completed');default:'draft'" json:"status"`
|
|
CheckDate Date `gorm:"type:date" json:"check_date"`
|
|
Remark string `gorm:"size:500" json:"remark"`
|
|
|
|
Items []InventoryCheckItem `gorm:"foreignKey:CheckID" json:"items,omitempty"`
|
|
}
|
|
|
|
type InventoryCheckItem struct {
|
|
Base
|
|
CheckID uint64 `gorm:"not null;index" json:"check_id"`
|
|
ShopID uint64 `gorm:"not null" json:"shop_id"`
|
|
ProductID uint64 `gorm:"not null" json:"product_id"`
|
|
SystemQty float64 `gorm:"type:decimal(12,3)" json:"system_qty"`
|
|
ActualQty float64 `gorm:"type:decimal(12,3)" json:"actual_qty"`
|
|
DiffQty float64 `gorm:"->" json:"diff_qty"` // generated column,只读
|
|
Remark string `gorm:"size:255" json:"remark"`
|
|
|
|
Product *Product `gorm:"foreignKey:ProductID" json:"product,omitempty"`
|
|
}
|