Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 937446214b | |||
| a76724b385 | |||
| e892ab45b2 | |||
| 90d2c8668b | |||
| 7bbc944ae2 | |||
| 0d967e899a |
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [1.0.59] - 2026-06-19
|
||||
|
||||
### 新功能
|
||||
- 授权到期后可在界面内直接续费:输入兑换码(形如 JIUKU-XXXX-XXXX)即可为门店叠加授权时长
|
||||
|
||||
### 改进
|
||||
- 品牌焕新:登录页启用「岩美酒库」品牌标识,桌面 / 移动 / 网页各端应用图标统一为品牌图标
|
||||
- 「激活授权」改为「兑换激活码」语义,文案与提示更贴合按时长续期的使用方式
|
||||
- 授权状态实时生效:续费、到期或授权被调整后无需重新登录即可刷新;账号被停用或在其他设备登录时及时自动退出
|
||||
- 「退出登录」收入右上角用户名下拉菜单,界面更聚焦
|
||||
|
||||
## [1.0.58] - 2026-06-18
|
||||
|
||||
### 修复
|
||||
|
||||
@@ -5,6 +5,21 @@
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [1.0.63] - 2026-06-20
|
||||
|
||||
### 新功能
|
||||
- 入库/出库单据明细新增商品快照字段(商品编号、名称、系列、规格,出库另含批次号、生产日期)与单据制单人记录,便于完整展示从旧系统迁入、无商品主数据关联的历史进销存单据
|
||||
|
||||
## [1.0.62] - 2026-06-19
|
||||
|
||||
### 新功能
|
||||
- 服务端新增多维限流防护:按客户端 IP、按门店分别限速,登录/注册/刷新令牌等敏感接口与公开查询接口各有独立速率上限,有效抵御恶意刷接口与流量冲击(DDoS),正常使用不受影响
|
||||
- 登录暴力破解加固:除按账号锁定外,新增按来源 IP 的失败次数限制,单一 IP 连续撞库多个账号会被整体拦截
|
||||
|
||||
### 改进
|
||||
- 在反向代理后正确识别真实客户端 IP,使限流与失败锁定按真实来源计数,避免误伤同一出口的正常用户
|
||||
- 门店可保存录入默认值(默认系列/规格等)等轻量配置,刷新页面后依然保留
|
||||
|
||||
## [1.0.61] - 2026-06-19
|
||||
|
||||
### 改进
|
||||
|
||||
@@ -0,0 +1,590 @@
|
||||
// import-history —— 一次性把旧系统导出的历史进销存数据迁入当前库。
|
||||
//
|
||||
// 设计要点(已与用户确认):
|
||||
// - 历史只读:in/out 单只作历史记录导入,绝不回放库存增减、绝不触碰
|
||||
// inventories / inventory_logs。当前库存请另用现有 ImportInventory 从
|
||||
// 库存.xls 导入。
|
||||
// - 完全忠实、不做 SKU 归一:明细的 商品编号/商品名称/系列/规格 各存为
|
||||
// 一个独立列(product_code/product_name/series/spec)。生产库 stock_*_items
|
||||
// 有 product_id→products 外键且 NOT NULL,故明细 product_id 统一指向一个
|
||||
// 占位商品(HIST-PLACEHOLDER),不按 SKU 建商品、不依赖商品主数据,展示层
|
||||
// 优先读明细自身快照列。单位 不导入。
|
||||
// - 单据编号 作单据天然主键,(shop_id, order_no) 幂等去重,可重复跑。
|
||||
// - 明细按 单据编号 join 表头取 order_id 外键。
|
||||
//
|
||||
// 用法(在 backend/ 目录下执行):
|
||||
//
|
||||
// go run ./cmd/import-history --shop-code S001 --data-dir ../data --dry-run
|
||||
// go run ./cmd/import-history --shop-code S001 --data-dir ../data
|
||||
package main
|
||||
|
||||
import (
|
||||
"crypto/rand"
|
||||
"encoding/hex"
|
||||
"flag"
|
||||
"fmt"
|
||||
"log"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"strconv"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/google/uuid"
|
||||
"github.com/xuri/excelize/v2"
|
||||
"golang.org/x/crypto/bcrypt"
|
||||
"gorm.io/driver/mysql"
|
||||
"gorm.io/gorm"
|
||||
"gorm.io/gorm/logger"
|
||||
|
||||
"github.com/wangjia/jiu/backend/config"
|
||||
"github.com/wangjia/jiu/backend/internal/model"
|
||||
)
|
||||
|
||||
// 真实在岗人员(用户列损坏,需规整匹配)。前三位据旧系统核实,
|
||||
// 汤振宇 由 dry-run 实测发现(出现 1375 次的完好姓名,非乱码)。
|
||||
var realPeople = []struct {
|
||||
prefix2 string // 前两个汉字,用于容损匹配(如 "丁国GSHD" → 丁国 → 丁国辉)
|
||||
fullName string
|
||||
username string
|
||||
}{
|
||||
{"丁国", "丁国辉", "hist_dingguohui"},
|
||||
{"刘春", "刘春燕", "hist_liuchunyan"},
|
||||
{"张志", "张志磊", "hist_zhangzhilei"},
|
||||
{"汤振", "汤振宇", "hist_tangzhenyu"},
|
||||
}
|
||||
|
||||
func main() {
|
||||
var (
|
||||
shopCode = flag.String("shop-code", "", "目标门店 code(与 shop-id 二选一)")
|
||||
shopID = flag.Uint64("shop-id", 0, "目标门店 id(与 shop-code 二选一)")
|
||||
dataDir = flag.String("data-dir", "../data", "data 目录路径")
|
||||
dryRun = flag.Bool("dry-run", false, "只统计不写库")
|
||||
envFile = flag.String("env-file", "", "可选:systemd 风格 KEY=VALUE 环境文件(用于远端读取 DATABASE_DSN,自行解析避免 shell 引号问题)")
|
||||
)
|
||||
flag.Parse()
|
||||
|
||||
if *envFile != "" {
|
||||
loadEnvFile(*envFile)
|
||||
}
|
||||
config.Load()
|
||||
db, err := gorm.Open(mysql.Open(config.C.Database.DSN), &gorm.Config{
|
||||
Logger: logger.Default.LogMode(logger.Silent),
|
||||
})
|
||||
if err != nil {
|
||||
log.Fatalf("连接数据库失败: %v", err)
|
||||
}
|
||||
|
||||
// 确保历史导入用到的新列已就位(AutoMigrate 自动加可空列,不影响现有数据)。
|
||||
// dry-run 必须只读:跳过 AutoMigrate,绝不改动目标库表结构。
|
||||
if !*dryRun {
|
||||
if err := db.AutoMigrate(
|
||||
&model.StockInOrder{}, &model.StockInItem{},
|
||||
&model.StockOutOrder{}, &model.StockOutItem{},
|
||||
); err != nil {
|
||||
log.Fatalf("AutoMigrate 失败: %v", err)
|
||||
}
|
||||
}
|
||||
|
||||
// ── 解析目标门店 ──────────────────────────────────────
|
||||
var shop model.Shop
|
||||
switch {
|
||||
case *shopID > 0:
|
||||
if err := db.First(&shop, *shopID).Error; err != nil {
|
||||
log.Fatalf("门店 id=%d 不存在: %v", *shopID, err)
|
||||
}
|
||||
case *shopCode != "":
|
||||
if err := db.Where("code = ?", *shopCode).First(&shop).Error; err != nil {
|
||||
log.Fatalf("门店 code=%s 不存在: %v", *shopCode, err)
|
||||
}
|
||||
default:
|
||||
log.Fatal("必须提供 --shop-code 或 --shop-id")
|
||||
}
|
||||
log.Printf("目标门店: %s (code=%s, id=%d) dry-run=%v", shop.Name, shop.Code, shop.ID, *dryRun)
|
||||
|
||||
// ── 默认仓库 ──────────────────────────────────────────
|
||||
var wh model.Warehouse
|
||||
if db.Where("shop_id = ? AND is_default = ? AND deleted_at IS NULL", shop.ID, true).First(&wh).Error != nil {
|
||||
if db.Where("shop_id = ? AND deleted_at IS NULL", shop.ID).Order("id ASC").First(&wh).Error != nil {
|
||||
log.Fatalf("门店 %d 无任何仓库,请先创建仓库", shop.ID)
|
||||
}
|
||||
}
|
||||
log.Printf("默认仓库: %s (id=%d)", wh.Name, wh.ID)
|
||||
|
||||
ic := &importCtx{db: db, shopID: shop.ID, whID: wh.ID, dryRun: *dryRun}
|
||||
ic.ensureUsers()
|
||||
ic.ensurePlaceholderProduct()
|
||||
|
||||
// ── 入库 ──────────────────────────────────────────────
|
||||
ic.importDoc(
|
||||
filepath.Join(*dataDir, "入库单总表.xlsx"),
|
||||
filepath.Join(*dataDir, "入库详情单总表.xlsx"),
|
||||
true,
|
||||
)
|
||||
// ── 出库 ──────────────────────────────────────────────
|
||||
ic.importDoc(
|
||||
filepath.Join(*dataDir, "出库单总表.xlsx"),
|
||||
filepath.Join(*dataDir, "出库详情单总表.xlsx"),
|
||||
false,
|
||||
)
|
||||
|
||||
ic.report()
|
||||
}
|
||||
|
||||
// loadEnvFile 解析 systemd EnvironmentFile 风格的 KEY=VALUE 文件并写入进程环境。
|
||||
// 自行按首个 '=' 切分,值原样保留(不做 shell 解引号),从而安全处理 DSN 中的
|
||||
// & ( ) ? 等 shell 特殊字符。config.Load() 随后经 AutomaticEnv 读取 DATABASE_DSN。
|
||||
func loadEnvFile(path string) {
|
||||
data, err := os.ReadFile(path)
|
||||
if err != nil {
|
||||
log.Fatalf("读取 env 文件 %s 失败: %v", path, err)
|
||||
}
|
||||
for _, line := range strings.Split(string(data), "\n") {
|
||||
line = strings.TrimSpace(line)
|
||||
if line == "" || strings.HasPrefix(line, "#") {
|
||||
continue
|
||||
}
|
||||
eq := strings.IndexByte(line, '=')
|
||||
if eq <= 0 {
|
||||
continue
|
||||
}
|
||||
key := strings.TrimSpace(line[:eq])
|
||||
val := strings.TrimSpace(line[eq+1:])
|
||||
// 去掉成对包裹的引号(若有)
|
||||
if len(val) >= 2 && (val[0] == '"' || val[0] == '\'') && val[len(val)-1] == val[0] {
|
||||
val = val[1 : len(val)-1]
|
||||
}
|
||||
_ = os.Setenv(key, val)
|
||||
}
|
||||
}
|
||||
|
||||
// ── 导入上下文 ───────────────────────────────────────────
|
||||
|
||||
type importCtx struct {
|
||||
db *gorm.DB
|
||||
shopID uint64
|
||||
whID uint64
|
||||
dryRun bool
|
||||
|
||||
systemUserID uint64
|
||||
placeholderProductID uint64 // 历史明细统一指向的占位商品(满足 product_id 外键)
|
||||
personToUser map[string]uint64 // fullName → user id
|
||||
partnerCache map[string]*uint64
|
||||
|
||||
// 统计
|
||||
statOrders int
|
||||
statItems int
|
||||
statSkipped int // order_no 已存在跳过
|
||||
statOrphanND int // 无明细单
|
||||
statNoHeader int // 明细找不到表头(理论上为 0)
|
||||
newPartners int
|
||||
unmatchedOps map[string]int // 未匹配到三人的人员原值 → 次数
|
||||
}
|
||||
|
||||
func randPassword() string {
|
||||
b := make([]byte, 16)
|
||||
_, _ = rand.Read(b)
|
||||
h, _ := bcrypt.GenerateFromPassword([]byte(hex.EncodeToString(b)), bcrypt.DefaultCost)
|
||||
return string(h)
|
||||
}
|
||||
|
||||
// ensureUsers 预置 system 兜底用户 + 三位真实人员(历史归属用,inactive)。
|
||||
func (ic *importCtx) ensureUsers() {
|
||||
ic.personToUser = map[string]uint64{}
|
||||
ic.partnerCache = map[string]*uint64{}
|
||||
ic.unmatchedOps = map[string]int{}
|
||||
|
||||
ensure := func(username, realName, role string) uint64 {
|
||||
var u model.User
|
||||
if ic.db.Where("shop_id = ? AND username = ?", ic.shopID, username).First(&u).Error == nil {
|
||||
return u.ID
|
||||
}
|
||||
u = model.User{
|
||||
ShopID: ic.shopID, Username: username, RealName: realName,
|
||||
Role: role, IsActive: false, PasswordHash: randPassword(),
|
||||
}
|
||||
if ic.dryRun {
|
||||
log.Printf("[dry-run] 将建用户: %s (%s)", username, realName)
|
||||
return 0
|
||||
}
|
||||
if err := ic.db.Create(&u).Error; err != nil {
|
||||
log.Fatalf("创建用户 %s 失败: %v", username, err)
|
||||
}
|
||||
log.Printf("建用户: %s (%s) id=%d", username, realName, u.ID)
|
||||
return u.ID
|
||||
}
|
||||
|
||||
ic.systemUserID = ensure("hist_system", "系统导入", "operator")
|
||||
for _, p := range realPeople {
|
||||
ic.personToUser[p.fullName] = ensure(p.username, p.fullName, "operator")
|
||||
}
|
||||
}
|
||||
|
||||
// 历史明细 product_id 占位商品的固定 code。
|
||||
const placeholderProductCode = "HIST-PLACEHOLDER"
|
||||
|
||||
// ensurePlaceholderProduct 取/建一个占位商品,历史明细的 product_id 统一指向它,
|
||||
// 用于满足 stock_*_items.product_id → products 的外键约束。展示层优先读明细
|
||||
// 自身快照列(product_name/series/spec),故该占位商品仅作引用、不参与展示。
|
||||
func (ic *importCtx) ensurePlaceholderProduct() {
|
||||
var p model.Product
|
||||
if ic.db.Where("shop_id = ? AND code = ? AND deleted_at IS NULL", ic.shopID, placeholderProductCode).First(&p).Error == nil {
|
||||
ic.placeholderProductID = p.ID
|
||||
return
|
||||
}
|
||||
if ic.dryRun {
|
||||
log.Printf("[dry-run] 将建占位商品: %s", placeholderProductCode)
|
||||
return
|
||||
}
|
||||
p = model.Product{
|
||||
TenantBase: model.TenantBase{ShopID: ic.shopID},
|
||||
PublicID: uuid.New().String(),
|
||||
Code: placeholderProductCode,
|
||||
Name: "历史导入占位",
|
||||
Unit: "",
|
||||
Remark: "历史进销存导入占位商品:明细真实商品信息见单据明细行自身列,请勿用于新业务",
|
||||
}
|
||||
if err := ic.db.Create(&p).Error; err != nil {
|
||||
log.Fatalf("创建占位商品失败: %v", err)
|
||||
}
|
||||
ic.placeholderProductID = p.ID
|
||||
log.Printf("建占位商品: %s id=%d", placeholderProductCode, p.ID)
|
||||
}
|
||||
|
||||
// matchPerson 把损坏的人员原值规整到三位真人之一,返回 user id 指针。
|
||||
// 匹配不到返回 nil(用于 creator/reviewer 等可空列;operator 另用 systemUserID 兜底)。
|
||||
func (ic *importCtx) matchPerson(raw string) *uint64 {
|
||||
s := strings.TrimSpace(raw)
|
||||
if s == "" {
|
||||
return nil
|
||||
}
|
||||
for _, p := range realPeople {
|
||||
// 完整名出现 或 前两汉字前缀命中(容损)
|
||||
if strings.Contains(s, p.fullName) || strings.HasPrefix(s, p.prefix2) {
|
||||
id := ic.personToUser[p.fullName]
|
||||
return &id
|
||||
}
|
||||
}
|
||||
ic.unmatchedOps[s]++
|
||||
return nil
|
||||
}
|
||||
|
||||
// findOrCreatePartner 按名匹配往来单位,缺失自动建。
|
||||
func (ic *importCtx) findOrCreatePartner(name, ptype string) *uint64 {
|
||||
name = strings.TrimSpace(name)
|
||||
if name == "" {
|
||||
return nil
|
||||
}
|
||||
if cached, ok := ic.partnerCache[name]; ok {
|
||||
return cached
|
||||
}
|
||||
var p model.Partner
|
||||
if ic.db.Where("shop_id = ? AND name = ? AND deleted_at IS NULL", ic.shopID, name).First(&p).Error == nil {
|
||||
id := p.ID
|
||||
ic.partnerCache[name] = &id
|
||||
return &id
|
||||
}
|
||||
ic.newPartners++
|
||||
if ic.dryRun {
|
||||
ic.partnerCache[name] = nil
|
||||
return nil
|
||||
}
|
||||
p = model.Partner{
|
||||
TenantBase: model.TenantBase{ShopID: ic.shopID},
|
||||
Name: name, Type: ptype, Status: "enabled",
|
||||
}
|
||||
if err := ic.db.Create(&p).Error; err != nil {
|
||||
log.Printf("创建往来单位 %s 失败: %v", name, err)
|
||||
ic.partnerCache[name] = nil
|
||||
return nil
|
||||
}
|
||||
id := p.ID
|
||||
ic.partnerCache[name] = &id
|
||||
return &id
|
||||
}
|
||||
|
||||
// ── 解析与映射 ───────────────────────────────────────────
|
||||
|
||||
func mapStatus(raw string) string {
|
||||
switch strings.TrimSpace(raw) {
|
||||
case "已审核":
|
||||
return "approved"
|
||||
case "待审核":
|
||||
return "pending"
|
||||
case "被驳回", "作废":
|
||||
return "rejected"
|
||||
default:
|
||||
return "draft"
|
||||
}
|
||||
}
|
||||
|
||||
func parseFloatLoose(s string) float64 {
|
||||
s = strings.TrimSpace(strings.ReplaceAll(s, ",", ""))
|
||||
if s == "" {
|
||||
return 0
|
||||
}
|
||||
f, err := strconv.ParseFloat(s, 64)
|
||||
if err != nil {
|
||||
return 0
|
||||
}
|
||||
return f
|
||||
}
|
||||
|
||||
var dateLayouts = []string{"2006-01-02", "2006/01/02", "2006-01-02 15:04:05", "2006/01/02 15:04:05"}
|
||||
|
||||
func parseDatePtr(s string) *model.Date {
|
||||
s = strings.TrimSpace(s)
|
||||
if s == "" {
|
||||
return nil
|
||||
}
|
||||
for _, l := range dateLayouts {
|
||||
if t, err := time.ParseInLocation(l, s, time.Local); err == nil {
|
||||
return &model.Date{Time: t}
|
||||
}
|
||||
}
|
||||
// Excel 序列号
|
||||
if serial, err := strconv.ParseFloat(s, 64); err == nil && serial > 0 && serial < 100000 {
|
||||
base := time.Date(1899, 12, 30, 0, 0, 0, 0, time.Local)
|
||||
return &model.Date{Time: base.AddDate(0, 0, int(serial))}
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func parseDateOrNow(s string) model.Date {
|
||||
if d := parseDatePtr(s); d != nil {
|
||||
return *d
|
||||
}
|
||||
return model.Date{Time: time.Now()}
|
||||
}
|
||||
|
||||
// readSheet 读取首个工作表,返回表头列名→列索引映射 + 数据行。
|
||||
func readSheet(path string) (map[string]int, [][]string) {
|
||||
f, err := excelize.OpenFile(path)
|
||||
if err != nil {
|
||||
log.Fatalf("打开 %s 失败: %v", path, err)
|
||||
}
|
||||
defer f.Close()
|
||||
rows, err := f.GetRows(f.GetSheetName(0))
|
||||
if err != nil {
|
||||
log.Fatalf("读取 %s 失败: %v", path, err)
|
||||
}
|
||||
if len(rows) < 1 {
|
||||
log.Fatalf("%s 为空", path)
|
||||
}
|
||||
cols := map[string]int{}
|
||||
for i, name := range rows[0] {
|
||||
cols[strings.TrimSpace(name)] = i
|
||||
}
|
||||
return cols, rows[1:]
|
||||
}
|
||||
|
||||
func get(row []string, cols map[string]int, name string) string {
|
||||
idx, ok := cols[name]
|
||||
if !ok || idx >= len(row) {
|
||||
return ""
|
||||
}
|
||||
return strings.TrimSpace(row[idx])
|
||||
}
|
||||
|
||||
// ── 核心导入 ─────────────────────────────────────────────
|
||||
|
||||
func (ic *importCtx) importDoc(headerPath, detailPath string, isIn bool) {
|
||||
label := "出库"
|
||||
orderType := "sale"
|
||||
partnerType := "customer"
|
||||
if isIn {
|
||||
label, orderType, partnerType = "入库", "purchase", "supplier"
|
||||
}
|
||||
|
||||
hCols, hRows := readSheet(headerPath)
|
||||
dCols, dRows := readSheet(detailPath)
|
||||
|
||||
// 明细按单据编号分组
|
||||
detailsByNo := map[string][][]string{}
|
||||
for _, r := range dRows {
|
||||
no := get(r, dCols, "单据编号")
|
||||
if no == "" {
|
||||
continue
|
||||
}
|
||||
detailsByNo[no] = append(detailsByNo[no], r)
|
||||
}
|
||||
|
||||
log.Printf("[%s] 表头 %d 单 / 明细 %d 行(%d 单号)", label, len(hRows), len(dRows), len(detailsByNo))
|
||||
|
||||
seen := map[string]bool{}
|
||||
for _, hr := range hRows {
|
||||
orderNo := get(hr, hCols, "单据编号")
|
||||
if orderNo == "" || seen[orderNo] {
|
||||
continue
|
||||
}
|
||||
seen[orderNo] = true
|
||||
|
||||
details := detailsByNo[orderNo]
|
||||
if len(details) == 0 {
|
||||
ic.statOrphanND++
|
||||
}
|
||||
|
||||
partnerName := get(hr, hCols, "单位名称")
|
||||
partnerID := ic.findOrCreatePartner(partnerName, partnerType)
|
||||
operatorID := ic.systemUserID
|
||||
if op := ic.matchPerson(get(hr, hCols, "经手人")); op != nil {
|
||||
operatorID = *op
|
||||
}
|
||||
creatorID := ic.matchPerson(get(hr, hCols, "制单人"))
|
||||
reviewerID := ic.matchPerson(get(hr, hCols, "审核人"))
|
||||
status := mapStatus(get(hr, hCols, "单据状态"))
|
||||
orderDate := parseDateOrNow(get(hr, hCols, "单据日期"))
|
||||
totalAmount := parseFloatLoose(get(hr, hCols, "单据金额"))
|
||||
|
||||
if ic.dryRun {
|
||||
// 幂等:已存在则计入跳过
|
||||
var cnt int64
|
||||
ic.tableForOrder(isIn).Where("shop_id = ? AND order_no = ?", ic.shopID, orderNo).Count(&cnt)
|
||||
if cnt > 0 {
|
||||
ic.statSkipped++
|
||||
continue
|
||||
}
|
||||
ic.statOrders++
|
||||
ic.statItems += len(details)
|
||||
continue
|
||||
}
|
||||
|
||||
if ic.writeOrder(isIn, orderNo, orderType, status, orderDate, totalAmount,
|
||||
partnerID, operatorID, creatorID, reviewerID, details, dCols) {
|
||||
ic.statOrders++
|
||||
ic.statItems += len(details)
|
||||
} else {
|
||||
ic.statSkipped++
|
||||
}
|
||||
}
|
||||
|
||||
// 明细单号在表头里找不到的(理论上为 0,留作校验)
|
||||
headerNos := map[string]bool{}
|
||||
for _, hr := range hRows {
|
||||
if no := get(hr, hCols, "单据编号"); no != "" {
|
||||
headerNos[no] = true
|
||||
}
|
||||
}
|
||||
for no := range detailsByNo {
|
||||
if !headerNos[no] {
|
||||
ic.statNoHeader++
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func (ic *importCtx) tableForOrder(isIn bool) *gorm.DB {
|
||||
if isIn {
|
||||
return ic.db.Model(&model.StockInOrder{})
|
||||
}
|
||||
return ic.db.Model(&model.StockOutOrder{})
|
||||
}
|
||||
|
||||
// writeOrder 在事务内写一张单 + 其明细。返回 false 表示 order_no 已存在(跳过)。
|
||||
func (ic *importCtx) writeOrder(
|
||||
isIn bool, orderNo, orderType, status string, orderDate model.Date, totalAmount float64,
|
||||
partnerID *uint64, operatorID uint64, creatorID, reviewerID *uint64,
|
||||
details [][]string, dCols map[string]int,
|
||||
) bool {
|
||||
created := false
|
||||
err := ic.db.Transaction(func(tx *gorm.DB) error {
|
||||
if isIn {
|
||||
var cnt int64
|
||||
tx.Model(&model.StockInOrder{}).Where("shop_id = ? AND order_no = ?", ic.shopID, orderNo).Count(&cnt)
|
||||
if cnt > 0 {
|
||||
return nil
|
||||
}
|
||||
o := model.StockInOrder{
|
||||
TenantBase: model.TenantBase{ShopID: ic.shopID},
|
||||
OrderNo: orderNo, Type: orderType, WarehouseID: ic.whID,
|
||||
PartnerID: partnerID, OperatorID: operatorID, CreatorID: creatorID,
|
||||
ReviewerID: reviewerID, Status: status, OrderDate: orderDate, TotalAmount: totalAmount,
|
||||
}
|
||||
if err := tx.Create(&o).Error; err != nil {
|
||||
return err
|
||||
}
|
||||
for _, dr := range details {
|
||||
it := model.StockInItem{
|
||||
OrderID: o.ID, ShopID: ic.shopID, ProductID: ic.placeholderProductID,
|
||||
ProductCode: get(dr, dCols, "商品编号"),
|
||||
ProductName: get(dr, dCols, "商品名称"),
|
||||
Series: get(dr, dCols, "系列"),
|
||||
Spec: get(dr, dCols, "规格"),
|
||||
Quantity: parseFloatLoose(get(dr, dCols, "数量")),
|
||||
UnitPrice: parseFloatLoose(get(dr, dCols, "单价")),
|
||||
TotalPrice: parseFloatLoose(get(dr, dCols, "金额")),
|
||||
BatchNo: get(dr, dCols, "批次号"),
|
||||
}
|
||||
it.ProductionDate = parseDatePtr(get(dr, dCols, "生产日期"))
|
||||
if err := tx.Create(&it).Error; err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
} else {
|
||||
var cnt int64
|
||||
tx.Model(&model.StockOutOrder{}).Where("shop_id = ? AND order_no = ?", ic.shopID, orderNo).Count(&cnt)
|
||||
if cnt > 0 {
|
||||
return nil
|
||||
}
|
||||
o := model.StockOutOrder{
|
||||
TenantBase: model.TenantBase{ShopID: ic.shopID},
|
||||
OrderNo: orderNo, Type: orderType, WarehouseID: ic.whID,
|
||||
PartnerID: partnerID, OperatorID: operatorID, CreatorID: creatorID,
|
||||
ReviewerID: reviewerID, Status: status, OrderDate: orderDate, TotalAmount: totalAmount,
|
||||
}
|
||||
if err := tx.Create(&o).Error; err != nil {
|
||||
return err
|
||||
}
|
||||
for _, dr := range details {
|
||||
it := model.StockOutItem{
|
||||
OrderID: o.ID, ShopID: ic.shopID, ProductID: ic.placeholderProductID,
|
||||
ProductCode: get(dr, dCols, "商品编号"),
|
||||
ProductName: get(dr, dCols, "商品名称"),
|
||||
Series: get(dr, dCols, "系列"),
|
||||
Spec: get(dr, dCols, "规格"),
|
||||
Quantity: parseFloatLoose(get(dr, dCols, "数量")),
|
||||
UnitPrice: parseFloatLoose(get(dr, dCols, "单价")),
|
||||
TotalPrice: parseFloatLoose(get(dr, dCols, "金额")),
|
||||
BatchNo: get(dr, dCols, "批次号"),
|
||||
}
|
||||
it.ProductionDate = parseDatePtr(get(dr, dCols, "生产日期"))
|
||||
if err := tx.Create(&it).Error; err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
}
|
||||
created = true
|
||||
return nil
|
||||
})
|
||||
if err != nil {
|
||||
log.Printf("写单 %s 失败: %v", orderNo, err)
|
||||
return false
|
||||
}
|
||||
return created
|
||||
}
|
||||
|
||||
func (ic *importCtx) report() {
|
||||
fmt.Println("═══════════════════════════════════════════")
|
||||
fmt.Println(" 历史数据导入汇总")
|
||||
fmt.Println("═══════════════════════════════════════════")
|
||||
if ic.dryRun {
|
||||
fmt.Println(" *** DRY-RUN(未写库)***")
|
||||
}
|
||||
fmt.Printf(" 新建单据:%d\n", ic.statOrders)
|
||||
fmt.Printf(" 新建明细:%d\n", ic.statItems)
|
||||
fmt.Printf(" 跳过(已存在):%d\n", ic.statSkipped)
|
||||
fmt.Printf(" 无明细单:%d\n", ic.statOrphanND)
|
||||
fmt.Printf(" 明细缺表头(应为0):%d\n", ic.statNoHeader)
|
||||
fmt.Printf(" 新建往来单位:%d\n", ic.newPartners)
|
||||
if len(ic.unmatchedOps) > 0 {
|
||||
fmt.Printf(" 未匹配人员(归 system):%d 种\n", len(ic.unmatchedOps))
|
||||
shown := 0
|
||||
for k, v := range ic.unmatchedOps {
|
||||
fmt.Printf(" %q ×%d\n", k, v)
|
||||
if shown++; shown >= 15 {
|
||||
fmt.Println(" ...")
|
||||
break
|
||||
}
|
||||
}
|
||||
}
|
||||
fmt.Println("═══════════════════════════════════════════")
|
||||
}
|
||||
@@ -0,0 +1,105 @@
|
||||
package main
|
||||
|
||||
import "testing"
|
||||
|
||||
func TestMapStatus(t *testing.T) {
|
||||
cases := map[string]string{
|
||||
"已审核": "approved",
|
||||
"待审核": "pending",
|
||||
"被驳回": "rejected",
|
||||
"作废": "rejected",
|
||||
"": "draft",
|
||||
"未知": "draft",
|
||||
" 已审核 ": "approved",
|
||||
}
|
||||
for in, want := range cases {
|
||||
if got := mapStatus(in); got != want {
|
||||
t.Errorf("mapStatus(%q)=%q want %q", in, got, want)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestParseFloatLoose(t *testing.T) {
|
||||
cases := map[string]float64{
|
||||
"": 0,
|
||||
" ": 0,
|
||||
"123": 123,
|
||||
"1,234.50": 1234.5,
|
||||
"abc": 0,
|
||||
"-9.9": -9.9,
|
||||
}
|
||||
for in, want := range cases {
|
||||
if got := parseFloatLoose(in); got != want {
|
||||
t.Errorf("parseFloatLoose(%q)=%v want %v", in, got, want)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestParseDatePtr(t *testing.T) {
|
||||
if parseDatePtr("") != nil {
|
||||
t.Error("empty should be nil")
|
||||
}
|
||||
if parseDatePtr("garbage") != nil {
|
||||
t.Error("garbage should be nil")
|
||||
}
|
||||
for _, s := range []string{"2023/04/04", "1998-12-08", "2023/04/04 10:30:00"} {
|
||||
if d := parseDatePtr(s); d == nil {
|
||||
t.Errorf("parseDatePtr(%q) should parse", s)
|
||||
}
|
||||
}
|
||||
d := parseDatePtr("2023-04-04")
|
||||
if d == nil || d.Time.Year() != 2023 || int(d.Time.Month()) != 4 || d.Time.Day() != 4 {
|
||||
t.Errorf("parseDatePtr 2023-04-04 wrong: %+v", d)
|
||||
}
|
||||
}
|
||||
|
||||
// matchPerson:损坏的人员列容损规整到三位真人,匹配不到归 nil。
|
||||
func newTestCtx() *importCtx {
|
||||
ic := &importCtx{}
|
||||
ic.personToUser = map[string]uint64{"丁国辉": 11, "刘春燕": 12, "张志磊": 13, "汤振宇": 14}
|
||||
ic.unmatchedOps = map[string]int{}
|
||||
return ic
|
||||
}
|
||||
|
||||
func TestMatchPerson(t *testing.T) {
|
||||
ic := newTestCtx()
|
||||
check := func(raw string, wantID uint64, wantNil bool) {
|
||||
got := ic.matchPerson(raw)
|
||||
if wantNil {
|
||||
if got != nil {
|
||||
t.Errorf("matchPerson(%q) want nil got %v", raw, *got)
|
||||
}
|
||||
return
|
||||
}
|
||||
if got == nil || *got != wantID {
|
||||
t.Errorf("matchPerson(%q) want %d got %v", raw, wantID, got)
|
||||
}
|
||||
}
|
||||
check("丁国辉", 11, false)
|
||||
check("丁国GSHD", 11, false) // 容损前缀
|
||||
check("张志繥SHD", 13, false)
|
||||
check("刘春燕", 12, false)
|
||||
check("汤振宇", 14, false)
|
||||
check("", 0, true)
|
||||
check("4", 0, true) // 单字符乱码
|
||||
check("王五", 0, true)
|
||||
|
||||
if ic.unmatchedOps["王五"] != 1 || ic.unmatchedOps["4"] != 1 {
|
||||
t.Errorf("unmatchedOps not recorded: %+v", ic.unmatchedOps)
|
||||
}
|
||||
}
|
||||
|
||||
func TestGetColumn(t *testing.T) {
|
||||
cols := map[string]int{"单据编号": 0, "商品名称": 1, "数量": 2}
|
||||
row := []string{"RK001", " 飞天茅台 ", "12"}
|
||||
if got := get(row, cols, "商品名称"); got != "飞天茅台" {
|
||||
t.Errorf("get trimmed wrong: %q", got)
|
||||
}
|
||||
if got := get(row, cols, "不存在"); got != "" {
|
||||
t.Errorf("missing col should be empty: %q", got)
|
||||
}
|
||||
// 行短于列索引时不越界
|
||||
if got := get([]string{"RK001"}, cols, "数量"); got != "" {
|
||||
t.Errorf("short row should be empty: %q", got)
|
||||
}
|
||||
}
|
||||
+38
-12
@@ -8,16 +8,17 @@ import (
|
||||
)
|
||||
|
||||
type Config struct {
|
||||
Server ServerConfig
|
||||
Database DatabaseConfig
|
||||
JWT JWTConfig
|
||||
Storage StorageConfig
|
||||
Session SessionConfig
|
||||
Server ServerConfig
|
||||
Database DatabaseConfig
|
||||
JWT JWTConfig
|
||||
Storage StorageConfig
|
||||
Session SessionConfig
|
||||
RateLimit RateLimitConfig
|
||||
}
|
||||
|
||||
type ServerConfig struct {
|
||||
Port string `mapstructure:"port"`
|
||||
Mode string `mapstructure:"mode"` // debug | release
|
||||
Mode string `mapstructure:"mode"` // debug | release
|
||||
CORSOrigin string `mapstructure:"cors_origin"` // 允许的 CORS 来源,生产设为具体域名
|
||||
}
|
||||
|
||||
@@ -35,12 +36,27 @@ type JWTConfig struct {
|
||||
|
||||
// SessionConfig 登录会话与并发限制(全局默认,可被每店 session_policy 覆盖)。
|
||||
type SessionConfig struct {
|
||||
LimitDesktop int `mapstructure:"limit_desktop"` // 桌面端(win/mac/linux)最大并发会话,0=禁止
|
||||
LimitMobile int `mapstructure:"limit_mobile"` // 移动端(android/ios)最大并发会话,0=禁止
|
||||
LimitWeb int `mapstructure:"limit_web"` // web 端最大并发会话,0=禁止
|
||||
MaxFailures int `mapstructure:"max_failures"` // 连续登录失败几次后锁定
|
||||
LockMinutes int `mapstructure:"lock_minutes"` // 锁定时长(分钟)
|
||||
RetentionDays int `mapstructure:"retention_days"` // 已撤销/过期会话与失败登录记录的保留天数,过期后台清理
|
||||
LimitDesktop int `mapstructure:"limit_desktop"` // 桌面端(win/mac/linux)最大并发会话,0=禁止
|
||||
LimitMobile int `mapstructure:"limit_mobile"` // 移动端(android/ios)最大并发会话,0=禁止
|
||||
LimitWeb int `mapstructure:"limit_web"` // web 端最大并发会话,0=禁止
|
||||
MaxFailures int `mapstructure:"max_failures"` // 同一账号连续登录失败几次后锁定
|
||||
IPMaxFailures int `mapstructure:"ip_max_failures"` // 同一 IP 跨账号累计失败几次后锁定该 IP(防单 IP 撞多账号)
|
||||
LockMinutes int `mapstructure:"lock_minutes"` // 锁定时长(分钟)
|
||||
RetentionDays int `mapstructure:"retention_days"` // 已撤销/过期会话与失败登录记录的保留天数,过期后台清理
|
||||
}
|
||||
|
||||
// RateLimitConfig 应用层限流(按真实客户端 IP / 按门店)。各 *PerMin 为每分钟允许次数,
|
||||
// burst 取同值(允许一分钟额度的突发,之后按速率回补)。Enabled=false 时所有限流放行。
|
||||
type RateLimitConfig struct {
|
||||
Enabled bool `mapstructure:"enabled"`
|
||||
LoginPerMin int `mapstructure:"login_per_min"` // 未鉴权 /auth/login,按 IP
|
||||
RefreshPerMin int `mapstructure:"refresh_per_min"` // 未鉴权 /auth/refresh,按 IP
|
||||
RegisterPerMin int `mapstructure:"register_per_min"` // 未鉴权 /public/register,按 IP
|
||||
ErrorsPerMin int `mapstructure:"errors_per_min"` // 未鉴权 /public/errors,按 IP
|
||||
ShopListPerMin int `mapstructure:"shop_list_per_min"` // 公开商品列表(主爬取入口),按 IP,最紧
|
||||
PublicReadPerMin int `mapstructure:"public_read_per_min"` // 其余公开读接口(单品/release),按 IP
|
||||
ShopRPS int `mapstructure:"shop_rps"` // 认证流量每店每秒,按 shop_id
|
||||
ShopBurst int `mapstructure:"shop_burst"` // 认证流量每店突发
|
||||
}
|
||||
|
||||
type StorageConfig struct {
|
||||
@@ -80,8 +96,18 @@ func Load() {
|
||||
viper.SetDefault("session.limit_mobile", 2)
|
||||
viper.SetDefault("session.limit_web", 2) // 默认不禁 web(官网挂着 Web 版 app);设 0 可禁
|
||||
viper.SetDefault("session.max_failures", 5)
|
||||
viper.SetDefault("session.ip_max_failures", 20)
|
||||
viper.SetDefault("session.lock_minutes", 15)
|
||||
viper.SetDefault("session.retention_days", 90)
|
||||
viper.SetDefault("ratelimit.enabled", true)
|
||||
viper.SetDefault("ratelimit.login_per_min", 10)
|
||||
viper.SetDefault("ratelimit.refresh_per_min", 20)
|
||||
viper.SetDefault("ratelimit.register_per_min", 5)
|
||||
viper.SetDefault("ratelimit.errors_per_min", 30)
|
||||
viper.SetDefault("ratelimit.shop_list_per_min", 30)
|
||||
viper.SetDefault("ratelimit.public_read_per_min", 60)
|
||||
viper.SetDefault("ratelimit.shop_rps", 20)
|
||||
viper.SetDefault("ratelimit.shop_burst", 40)
|
||||
viper.SetDefault("database.max_idle_conns", 10)
|
||||
viper.SetDefault("database.max_open_conns", 100)
|
||||
viper.SetDefault("storage.upload_dir", "./uploads/images")
|
||||
|
||||
@@ -71,5 +71,6 @@ require (
|
||||
golang.org/x/net v0.51.0 // indirect
|
||||
golang.org/x/sys v0.42.0 // indirect
|
||||
golang.org/x/text v0.35.0 // indirect
|
||||
golang.org/x/time v0.15.0 // indirect
|
||||
google.golang.org/protobuf v1.36.10 // indirect
|
||||
)
|
||||
|
||||
@@ -150,6 +150,8 @@ golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
||||
golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk=
|
||||
golang.org/x/text v0.35.0 h1:JOVx6vVDFokkpaq1AEptVzLTpDe9KGpj5tR4/X+ybL8=
|
||||
golang.org/x/text v0.35.0/go.mod h1:khi/HExzZJ2pGnjenulevKNX1W67CUy0AsXcNubPGCA=
|
||||
golang.org/x/time v0.15.0 h1:bbrp8t3bGUeFOx08pvsMYRTCVSMk89u4tKbNOZbp88U=
|
||||
golang.org/x/time v0.15.0/go.mod h1:Y4YMaQmXwGQZoFaVFk4YpCt4FLQMYKZe9oeV/f4MSno=
|
||||
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
|
||||
google.golang.org/protobuf v1.36.10 h1:AYd7cD/uASjIL6Q9LiTjz8JLcrh/88q5UObnmY3aOOE=
|
||||
google.golang.org/protobuf v1.36.10/go.mod h1:HTf+CrKn2C3g5S8VImy6tdcUvCska2kB7j23XfzDpco=
|
||||
|
||||
@@ -42,12 +42,13 @@ func (h *ShopHandler) UpdateInfo(c *gin.Context) {
|
||||
shopID := middleware.GetShopID(c)
|
||||
|
||||
var req struct {
|
||||
Name string `json:"name"`
|
||||
Address string `json:"address"`
|
||||
Phone string `json:"phone"`
|
||||
ManagerName string `json:"manager_name"`
|
||||
LogoURL string `json:"logo_url"`
|
||||
WechatID string `json:"wechat_id"`
|
||||
Name string `json:"name"`
|
||||
Address string `json:"address"`
|
||||
Phone string `json:"phone"`
|
||||
ManagerName string `json:"manager_name"`
|
||||
LogoURL string `json:"logo_url"`
|
||||
WechatID string `json:"wechat_id"`
|
||||
CustomFields map[string]interface{} `json:"custom_fields"`
|
||||
}
|
||||
if err := c.ShouldBindJSON(&req); err != nil {
|
||||
c.JSON(http.StatusBadRequest, gin.H{"error": err.Error()})
|
||||
@@ -64,6 +65,19 @@ func (h *ShopHandler) UpdateInfo(c *gin.Context) {
|
||||
if req.LogoURL != "" {
|
||||
updates["logo_url"] = req.LogoURL
|
||||
}
|
||||
// custom_fields 增量 merge:保留已有键(如其它店级配置),只覆盖本次传入的键。
|
||||
if req.CustomFields != nil {
|
||||
var cur model.Shop
|
||||
h.db.Select("custom_fields").Where("id = ?", shopID).First(&cur)
|
||||
merged := model.JSON{}
|
||||
for k, v := range cur.CustomFields {
|
||||
merged[k] = v
|
||||
}
|
||||
for k, v := range req.CustomFields {
|
||||
merged[k] = v
|
||||
}
|
||||
updates["custom_fields"] = merged
|
||||
}
|
||||
if err := h.db.Model(&model.Shop{}).Where("id = ?", shopID).Updates(updates).Error; err != nil {
|
||||
c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
|
||||
return
|
||||
|
||||
@@ -0,0 +1,64 @@
|
||||
package handler
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"testing"
|
||||
|
||||
"github.com/gin-gonic/gin"
|
||||
"github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/testify/require"
|
||||
"gorm.io/gorm"
|
||||
|
||||
"github.com/wangjia/jiu/backend/internal/middleware"
|
||||
"github.com/wangjia/jiu/backend/internal/model"
|
||||
"github.com/wangjia/jiu/backend/testutil"
|
||||
)
|
||||
|
||||
func setupShopRouter(db *gorm.DB) *gin.Engine {
|
||||
shopH := NewShopHandler(db)
|
||||
r := gin.New()
|
||||
r.Use(gin.Recovery())
|
||||
api := r.Group("/api/v1")
|
||||
api.Use(middleware.JWT(db))
|
||||
shop := api.Group("/shop")
|
||||
shop.GET("/info", shopH.GetInfo)
|
||||
shop.PUT("/info", shopH.UpdateInfo)
|
||||
return r
|
||||
}
|
||||
|
||||
// TestUpdateInfo_MergesCustomFields 钉死「设为默认」依赖的契约:
|
||||
// 传 custom_fields 会 merge 进本店已有 custom_fields(保留旧键),且只动本店。
|
||||
func TestUpdateInfo_MergesCustomFields(t *testing.T) {
|
||||
gin.SetMode(gin.TestMode)
|
||||
db := testutil.SetupTestDB()
|
||||
shop := testutil.CreateTestShop(db, "S_CF1")
|
||||
admin := testutil.CreateTestUser(db, shop.ID, "admin", "pw", "admin")
|
||||
// 预置已有 custom_fields,验证 merge 不抹掉其它键
|
||||
require.NoError(t, db.Model(&model.Shop{}).Where("id = ?", shop.ID).
|
||||
Update("custom_fields", model.JSON{"foo": "bar"}).Error)
|
||||
// 另一店做隔离对照
|
||||
other := testutil.CreateTestShop(db, "S_CF2")
|
||||
require.NoError(t, db.Model(&model.Shop{}).Where("id = ?", other.ID).
|
||||
Update("custom_fields", model.JSON{"x": "y"}).Error)
|
||||
|
||||
r := setupShopRouter(db)
|
||||
token := getAuthToken(admin.ID, shop.ID, "admin")
|
||||
w := makeRequest(r, http.MethodPut, "/api/v1/shop/info", token, jsonBody(
|
||||
"name", "改名后",
|
||||
"custom_fields", map[string]interface{}{"default_series_id": 7},
|
||||
))
|
||||
assert.Equal(t, http.StatusOK, w.Code)
|
||||
|
||||
var got model.Shop
|
||||
require.NoError(t, db.First(&got, shop.ID).Error)
|
||||
assert.Equal(t, "改名后", got.Name)
|
||||
assert.Equal(t, "bar", got.CustomFields["foo"]) // 旧键保留
|
||||
assert.EqualValues(t, 7, got.CustomFields["default_series_id"]) // 新键写入
|
||||
|
||||
// 隔离:另一店的 custom_fields 不受影响
|
||||
var o model.Shop
|
||||
require.NoError(t, db.First(&o, other.ID).Error)
|
||||
assert.Equal(t, "y", o.CustomFields["x"])
|
||||
_, leaked := o.CustomFields["default_series_id"]
|
||||
assert.False(t, leaked)
|
||||
}
|
||||
@@ -0,0 +1,127 @@
|
||||
package middleware
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"strconv"
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"github.com/gin-gonic/gin"
|
||||
"golang.org/x/time/rate"
|
||||
|
||||
"github.com/wangjia/jiu/backend/config"
|
||||
)
|
||||
|
||||
// 限流器内存条目的清理参数:每 5 分钟扫一次,淘汰超过 10 分钟未活动的 key。
|
||||
// 保证 map 不随攻击者构造的随机 key(IP/shop)无限增长。
|
||||
const (
|
||||
rateLimitSweep = 5 * time.Minute
|
||||
rateLimitIdleTTL = 10 * time.Minute
|
||||
rateLimitRetryHdr = "60" // Retry-After 秒数(提示客户端退避)
|
||||
)
|
||||
|
||||
// keyedLimiter 按任意字符串 key(IP 或 shop_id)维护独立令牌桶,内存有界(带 janitor)。
|
||||
// 单实例进程内状态,重启即清零;多实例水平扩展时需改为 Redis(见方案「暂不做」)。
|
||||
type keyedLimiter struct {
|
||||
mu sync.Mutex
|
||||
entries map[string]*limiterBucket
|
||||
r rate.Limit
|
||||
burst int
|
||||
}
|
||||
|
||||
type limiterBucket struct {
|
||||
lim *rate.Limiter
|
||||
lastSeen time.Time
|
||||
}
|
||||
|
||||
func newKeyedLimiter(r rate.Limit, burst int) *keyedLimiter {
|
||||
kl := &keyedLimiter{entries: map[string]*limiterBucket{}, r: r, burst: burst}
|
||||
go kl.janitor()
|
||||
return kl
|
||||
}
|
||||
|
||||
// get 取(或惰性创建)该 key 的令牌桶并刷新活动时间。
|
||||
func (kl *keyedLimiter) get(key string) *rate.Limiter {
|
||||
kl.mu.Lock()
|
||||
defer kl.mu.Unlock()
|
||||
b := kl.entries[key]
|
||||
if b == nil {
|
||||
b = &limiterBucket{lim: rate.NewLimiter(kl.r, kl.burst)}
|
||||
kl.entries[key] = b
|
||||
}
|
||||
b.lastSeen = time.Now()
|
||||
return b.lim
|
||||
}
|
||||
|
||||
func (kl *keyedLimiter) janitor() {
|
||||
t := time.NewTicker(rateLimitSweep)
|
||||
defer t.Stop()
|
||||
for range t.C {
|
||||
kl.sweep(rateLimitIdleTTL)
|
||||
}
|
||||
}
|
||||
|
||||
// sweep 淘汰超过 ttl 未活动的 key。拆出便于测试。
|
||||
func (kl *keyedLimiter) sweep(ttl time.Duration) {
|
||||
now := time.Now()
|
||||
kl.mu.Lock()
|
||||
defer kl.mu.Unlock()
|
||||
for k, b := range kl.entries {
|
||||
if now.Sub(b.lastSeen) > ttl {
|
||||
delete(kl.entries, k)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// PerMinute 把「每分钟 n 次」转成 rate.Limit(令牌/秒)。
|
||||
func PerMinute(n int) rate.Limit {
|
||||
return rate.Limit(float64(n) / 60.0)
|
||||
}
|
||||
|
||||
// PerSecond 把「每秒 n 次」转成 rate.Limit。
|
||||
func PerSecond(n int) rate.Limit {
|
||||
return rate.Limit(n)
|
||||
}
|
||||
|
||||
// rateLimit 通用工厂:keyFn 抽取限流维度的 key(返回空串表示无法判定 → 放行,不误伤)。
|
||||
// config.C.RateLimit.Enabled=false 时整体放行(应急/测试开关)。
|
||||
func rateLimit(r rate.Limit, burst int, keyFn func(*gin.Context) string) gin.HandlerFunc {
|
||||
kl := newKeyedLimiter(r, burst)
|
||||
return func(c *gin.Context) {
|
||||
if !config.C.RateLimit.Enabled {
|
||||
c.Next()
|
||||
return
|
||||
}
|
||||
key := keyFn(c)
|
||||
if key == "" {
|
||||
c.Next()
|
||||
return
|
||||
}
|
||||
if !kl.get(key).Allow() {
|
||||
c.Header("Retry-After", rateLimitRetryHdr)
|
||||
c.AbortWithStatusJSON(http.StatusTooManyRequests, gin.H{"error": "请求过于频繁,请稍后再试"})
|
||||
return
|
||||
}
|
||||
c.Next()
|
||||
}
|
||||
}
|
||||
|
||||
// RateLimitByIP 按真实客户端 IP 限流(依赖 main.go 的 SetTrustedProxies + RemoteIPHeaders,
|
||||
// 使 c.ClientIP() 返回不可伪造的真实 IP)。
|
||||
func RateLimitByIP(r rate.Limit, burst int) gin.HandlerFunc {
|
||||
return rateLimit(r, burst, func(c *gin.Context) string {
|
||||
return "ip:" + c.ClientIP()
|
||||
})
|
||||
}
|
||||
|
||||
// RateLimitByShop 按门店(shop_id,取自 JWT)限流,须挂在 JWT 中间件之后。
|
||||
// 未取到 shop_id 时放行(交由 JWT 中间件拦截非法 token)。
|
||||
func RateLimitByShop(r rate.Limit, burst int) gin.HandlerFunc {
|
||||
return rateLimit(r, burst, func(c *gin.Context) string {
|
||||
id := GetShopID(c)
|
||||
if id == 0 {
|
||||
return ""
|
||||
}
|
||||
return "shop:" + strconv.FormatUint(id, 10)
|
||||
})
|
||||
}
|
||||
@@ -0,0 +1,194 @@
|
||||
package middleware
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"net/http/httptest"
|
||||
"strconv"
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/gin-gonic/gin"
|
||||
"golang.org/x/time/rate"
|
||||
|
||||
"github.com/wangjia/jiu/backend/config"
|
||||
)
|
||||
|
||||
func init() {
|
||||
gin.SetMode(gin.TestMode)
|
||||
}
|
||||
|
||||
// enableRateLimit 临时打开限流开关,返回恢复函数。
|
||||
func enableRateLimit(t *testing.T) {
|
||||
t.Helper()
|
||||
prev := config.C.RateLimit.Enabled
|
||||
config.C.RateLimit.Enabled = true
|
||||
t.Cleanup(func() { config.C.RateLimit.Enabled = prev })
|
||||
}
|
||||
|
||||
// hit 发一个带指定客户端 IP 的请求,返回状态码。SetTrustedProxies 让 X-Forwarded-For 被采信,
|
||||
// 便于在测试里模拟不同来源 IP。
|
||||
func hit(r *gin.Engine, ip string) *httptest.ResponseRecorder {
|
||||
w := httptest.NewRecorder()
|
||||
req := httptest.NewRequest(http.MethodGet, "/", nil)
|
||||
req.RemoteAddr = ip + ":12345"
|
||||
r.ServeHTTP(w, req)
|
||||
return w
|
||||
}
|
||||
|
||||
func newIPRouter(h gin.HandlerFunc) *gin.Engine {
|
||||
r := gin.New()
|
||||
r.GET("/", h, func(c *gin.Context) { c.String(http.StatusOK, "ok") })
|
||||
return r
|
||||
}
|
||||
|
||||
func TestRateLimitByIP_BurstThen429(t *testing.T) {
|
||||
enableRateLimit(t)
|
||||
// 每分钟 3 次,burst 3:前 3 个放行,第 4 个 429。
|
||||
r := newIPRouter(RateLimitByIP(PerMinute(3), 3))
|
||||
|
||||
for i := 0; i < 3; i++ {
|
||||
if w := hit(r, "1.1.1.1"); w.Code != http.StatusOK {
|
||||
t.Fatalf("第 %d 个请求应放行,得到 %d", i+1, w.Code)
|
||||
}
|
||||
}
|
||||
w := hit(r, "1.1.1.1")
|
||||
if w.Code != http.StatusTooManyRequests {
|
||||
t.Fatalf("超出 burst 应 429,得到 %d", w.Code)
|
||||
}
|
||||
if ra := w.Header().Get("Retry-After"); ra == "" {
|
||||
t.Fatal("429 响应应带 Retry-After 头")
|
||||
}
|
||||
}
|
||||
|
||||
func TestRateLimitByIP_KeysIndependent(t *testing.T) {
|
||||
enableRateLimit(t)
|
||||
r := newIPRouter(RateLimitByIP(PerMinute(1), 1))
|
||||
|
||||
// 不同 IP 各有独立令牌桶,互不影响。
|
||||
if w := hit(r, "2.2.2.2"); w.Code != http.StatusOK {
|
||||
t.Fatalf("IP A 首次应放行,得到 %d", w.Code)
|
||||
}
|
||||
if w := hit(r, "3.3.3.3"); w.Code != http.StatusOK {
|
||||
t.Fatalf("IP B 首次应放行(独立桶),得到 %d", w.Code)
|
||||
}
|
||||
// IP A 再来一发应 429(桶已空)。
|
||||
if w := hit(r, "2.2.2.2"); w.Code != http.StatusTooManyRequests {
|
||||
t.Fatalf("IP A 第二发应 429,得到 %d", w.Code)
|
||||
}
|
||||
}
|
||||
|
||||
func TestRateLimitByIP_Refill(t *testing.T) {
|
||||
enableRateLimit(t)
|
||||
// 每秒 50 次:耗尽 burst 后等一小会儿令牌补回,能再次放行。
|
||||
r := newIPRouter(RateLimitByIP(rate.Limit(50), 1))
|
||||
if w := hit(r, "4.4.4.4"); w.Code != http.StatusOK {
|
||||
t.Fatalf("首发应放行,得到 %d", w.Code)
|
||||
}
|
||||
if w := hit(r, "4.4.4.4"); w.Code != http.StatusTooManyRequests {
|
||||
t.Fatalf("紧接第二发应 429,得到 %d", w.Code)
|
||||
}
|
||||
time.Sleep(40 * time.Millisecond) // 50/s → 20ms 补一个令牌
|
||||
if w := hit(r, "4.4.4.4"); w.Code != http.StatusOK {
|
||||
t.Fatalf("等待补充后应放行,得到 %d", w.Code)
|
||||
}
|
||||
}
|
||||
|
||||
func TestRateLimitDisabledPassthrough(t *testing.T) {
|
||||
prev := config.C.RateLimit.Enabled
|
||||
config.C.RateLimit.Enabled = false
|
||||
defer func() { config.C.RateLimit.Enabled = prev }()
|
||||
|
||||
r := newIPRouter(RateLimitByIP(PerMinute(1), 1))
|
||||
// 关闭时远超额度也全放行。
|
||||
for i := 0; i < 10; i++ {
|
||||
if w := hit(r, "5.5.5.5"); w.Code != http.StatusOK {
|
||||
t.Fatalf("限流关闭时第 %d 发应放行,得到 %d", i+1, w.Code)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestKeyedLimiterSweepEvictsIdle(t *testing.T) {
|
||||
kl := newKeyedLimiter(PerMinute(60), 1)
|
||||
kl.get("ip:a")
|
||||
kl.get("ip:b")
|
||||
if len(kl.entries) != 2 {
|
||||
t.Fatalf("应有 2 个 entry,得到 %d", len(kl.entries))
|
||||
}
|
||||
// 把 a 的活动时间推到很久以前,sweep 应只淘汰 a。
|
||||
kl.mu.Lock()
|
||||
kl.entries["ip:a"].lastSeen = time.Now().Add(-time.Hour)
|
||||
kl.mu.Unlock()
|
||||
|
||||
kl.sweep(10 * time.Minute)
|
||||
|
||||
kl.mu.Lock()
|
||||
defer kl.mu.Unlock()
|
||||
if _, ok := kl.entries["ip:a"]; ok {
|
||||
t.Fatal("空闲 key a 应被淘汰")
|
||||
}
|
||||
if _, ok := kl.entries["ip:b"]; !ok {
|
||||
t.Fatal("活跃 key b 不应被淘汰")
|
||||
}
|
||||
}
|
||||
|
||||
// TestTrustedProxyRealIP 复刻 main.go 的可信代理配置:只信任本机写的 X-Real-IP,
|
||||
// 客户端伪造的 X-Forwarded-For 不被采信 → c.ClientIP() 返回真实 IP,限流不可被请求头绕过。
|
||||
func TestTrustedProxyRealIP(t *testing.T) {
|
||||
r := gin.New()
|
||||
_ = r.SetTrustedProxies([]string{"127.0.0.1", "::1"})
|
||||
r.RemoteIPHeaders = []string{"X-Real-IP"}
|
||||
var got string
|
||||
r.GET("/", func(c *gin.Context) {
|
||||
got = c.ClientIP()
|
||||
c.Status(http.StatusOK)
|
||||
})
|
||||
|
||||
w := httptest.NewRecorder()
|
||||
req := httptest.NewRequest(http.MethodGet, "/", nil)
|
||||
req.RemoteAddr = "127.0.0.1:9999" // 本机 nginx
|
||||
req.Header.Set("X-Real-IP", "9.9.9.9") // nginx 写入的真实 IP
|
||||
req.Header.Set("X-Forwarded-For", "1.2.3.4") // 客户端伪造,应被忽略
|
||||
r.ServeHTTP(w, req)
|
||||
|
||||
if got != "9.9.9.9" {
|
||||
t.Fatalf("ClientIP 应取可信的 X-Real-IP=9.9.9.9,得到 %q(伪造的 XFF 不应生效)", got)
|
||||
}
|
||||
}
|
||||
|
||||
func TestRateLimitByShop_NoShopPassthrough(t *testing.T) {
|
||||
enableRateLimit(t)
|
||||
// 未设置 shop_id(无 JWT 上下文)时放行,交由 JWT 中间件拦截。
|
||||
r := gin.New()
|
||||
r.GET("/", RateLimitByShop(PerSecond(1), 1), func(c *gin.Context) { c.String(http.StatusOK, "ok") })
|
||||
for i := 0; i < 5; i++ {
|
||||
if w := hit(r, "6.6.6.6"); w.Code != http.StatusOK {
|
||||
t.Fatalf("无 shop_id 时第 %d 发应放行,得到 %d", i+1, w.Code)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestRateLimitByShop_PerShop(t *testing.T) {
|
||||
enableRateLimit(t)
|
||||
r := gin.New()
|
||||
// 模拟 JWT 已注入 shop_id(取自 ?shop= 查询参数)。
|
||||
r.GET("/", func(c *gin.Context) {
|
||||
id, _ := strconv.ParseUint(c.Query("shop"), 10, 64)
|
||||
c.Set(CtxShopID, id)
|
||||
}, RateLimitByShop(PerSecond(1), 1), func(c *gin.Context) { c.String(http.StatusOK, "ok") })
|
||||
|
||||
shopHit := func(shop string) int {
|
||||
w := httptest.NewRecorder()
|
||||
req := httptest.NewRequest(http.MethodGet, "/?shop="+shop, nil)
|
||||
r.ServeHTTP(w, req)
|
||||
return w.Code
|
||||
}
|
||||
if c := shopHit("1"); c != http.StatusOK {
|
||||
t.Fatalf("shop1 首发应放行,得到 %d", c)
|
||||
}
|
||||
if c := shopHit("2"); c != http.StatusOK {
|
||||
t.Fatalf("shop2 首发应放行(独立桶),得到 %d", c)
|
||||
}
|
||||
if c := shopHit("1"); c != http.StatusTooManyRequests {
|
||||
t.Fatalf("shop1 第二发应 429,得到 %d", c)
|
||||
}
|
||||
}
|
||||
@@ -11,6 +11,7 @@ type StockInOrder struct {
|
||||
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"`
|
||||
CreatorID *uint64 `json:"creator_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"`
|
||||
@@ -23,6 +24,7 @@ type StockInOrder struct {
|
||||
Warehouse *Warehouse `gorm:"foreignKey:WarehouseID" json:"warehouse,omitempty"`
|
||||
Partner *Partner `gorm:"foreignKey:PartnerID" json:"partner,omitempty"`
|
||||
Operator *User `gorm:"foreignKey:OperatorID" json:"operator,omitempty"`
|
||||
Creator *User `gorm:"foreignKey:CreatorID" json:"creator,omitempty"`
|
||||
Reviewer *User `gorm:"foreignKey:ReviewerID" json:"reviewer,omitempty"`
|
||||
}
|
||||
|
||||
@@ -31,6 +33,11 @@ type StockInItem struct {
|
||||
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"`
|
||||
// 历史导入快照列:源明细自带的商品信息,不依赖 product 主数据(product_id 可为 0)。
|
||||
ProductCode string `gorm:"size:50" json:"product_code"`
|
||||
ProductName string `gorm:"size:255" json:"product_name"`
|
||||
Series string `gorm:"size:100" json:"series"`
|
||||
Spec string `gorm:"size:100" json:"spec"`
|
||||
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"`
|
||||
@@ -52,6 +59,7 @@ type StockOutOrder struct {
|
||||
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"`
|
||||
CreatorID *uint64 `json:"creator_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"`
|
||||
@@ -64,6 +72,7 @@ type StockOutOrder struct {
|
||||
Warehouse *Warehouse `gorm:"foreignKey:WarehouseID" json:"warehouse,omitempty"`
|
||||
Partner *Partner `gorm:"foreignKey:PartnerID" json:"partner,omitempty"`
|
||||
Operator *User `gorm:"foreignKey:OperatorID" json:"operator,omitempty"`
|
||||
Creator *User `gorm:"foreignKey:CreatorID" json:"creator,omitempty"`
|
||||
Reviewer *User `gorm:"foreignKey:ReviewerID" json:"reviewer,omitempty"`
|
||||
}
|
||||
|
||||
@@ -72,9 +81,16 @@ type StockOutItem struct {
|
||||
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"`
|
||||
// 历史导入快照列:源明细自带的商品信息,不依赖 product 主数据(product_id 可为 0)。
|
||||
ProductCode string `gorm:"size:50" json:"product_code"`
|
||||
ProductName string `gorm:"size:255" json:"product_name"`
|
||||
Series string `gorm:"size:100" json:"series"`
|
||||
Spec string `gorm:"size:100" json:"spec"`
|
||||
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"`
|
||||
|
||||
|
||||
@@ -4,6 +4,7 @@ import (
|
||||
"github.com/gin-gonic/gin"
|
||||
"gorm.io/gorm"
|
||||
|
||||
"github.com/wangjia/jiu/backend/config"
|
||||
"github.com/wangjia/jiu/backend/internal/handler"
|
||||
"github.com/wangjia/jiu/backend/internal/middleware"
|
||||
"github.com/wangjia/jiu/backend/internal/service"
|
||||
@@ -46,31 +47,43 @@ func Setup(r *gin.Engine, db *gorm.DB) {
|
||||
// 版本信息(无需认证,用于客户端更新检查)
|
||||
r.GET("/version", handler.GetVersion)
|
||||
|
||||
// 限流维度(按真实客户端 IP,依赖 main.go 的 SetTrustedProxies)。
|
||||
// 防爆破/防刷写/防爬:未鉴权接口逐条挂 per-IP 限流,公开商品列表最紧。
|
||||
rl := config.C.RateLimit
|
||||
publicReadIP := middleware.RateLimitByIP(middleware.PerMinute(rl.PublicReadPerMin), rl.PublicReadPerMin)
|
||||
shopListIP := middleware.RateLimitByIP(middleware.PerMinute(rl.ShopListPerMin), rl.ShopListPerMin)
|
||||
loginIP := middleware.RateLimitByIP(middleware.PerMinute(rl.LoginPerMin), rl.LoginPerMin)
|
||||
refreshIP := middleware.RateLimitByIP(middleware.PerMinute(rl.RefreshPerMin), rl.RefreshPerMin)
|
||||
registerIP := middleware.RateLimitByIP(middleware.PerMinute(rl.RegisterPerMin), rl.RegisterPerMin)
|
||||
errorsIP := middleware.RateLimitByIP(middleware.PerMinute(rl.ErrorsPerMin), rl.ErrorsPerMin)
|
||||
|
||||
// 公开商品详情页(注入 OG 标签的 Flutter index.html,供社交分享爬虫读取)
|
||||
r.GET("/product/:public_id", publicH.ProductPage)
|
||||
r.GET("/product/:public_id", publicReadIP, publicH.ProductPage)
|
||||
|
||||
v1 := r.Group("/api/v1")
|
||||
|
||||
// 公开路由(无需登录)
|
||||
// 公开路由(无需登录):登录/刷新按 IP 限流(与 service 层失败锁定互补)
|
||||
auth := v1.Group("/auth")
|
||||
{
|
||||
auth.POST("/login", authH.Login)
|
||||
auth.POST("/refresh", authH.Refresh)
|
||||
auth.POST("/login", loginIP, authH.Login)
|
||||
auth.POST("/refresh", refreshIP, authH.Refresh)
|
||||
}
|
||||
|
||||
// 公开接口(无需登录)
|
||||
// 公开接口(无需登录):读接口防爬、写接口防刷
|
||||
public := v1.Group("/public")
|
||||
{
|
||||
public.GET("/products/:public_id", publicH.GetProduct)
|
||||
public.GET("/shops/:shop_code/products", publicH.ListShopProducts)
|
||||
public.GET("/release", publicH.GetRelease)
|
||||
public.POST("/errors", errorReportH.Submit)
|
||||
public.POST("/register", authH.Register)
|
||||
public.GET("/products/:public_id", publicReadIP, publicH.GetProduct)
|
||||
public.GET("/shops/:shop_code/products", shopListIP, publicH.ListShopProducts)
|
||||
public.GET("/release", publicReadIP, publicH.GetRelease)
|
||||
public.POST("/errors", errorsIP, errorReportH.Submit)
|
||||
public.POST("/register", registerIP, authH.Register)
|
||||
}
|
||||
|
||||
// 需要 JWT 的基础路由组
|
||||
api := v1.Group("")
|
||||
api.Use(middleware.JWT(db))
|
||||
// 每店限流(按 shop_id,挂在 JWT 之后):防单店打爆共享后端,保障多租户公平
|
||||
api.Use(middleware.RateLimitByShop(middleware.PerSecond(rl.ShopRPS), rl.ShopBurst))
|
||||
|
||||
// 会话/在线状态(豁免 LicenseGuard:登出/心跳/在线列表在锁定期也要可用)
|
||||
{
|
||||
@@ -179,11 +192,11 @@ func Setup(r *gin.Engine, db *gorm.DB) {
|
||||
// 财务
|
||||
finance := api.Group("/finance")
|
||||
{
|
||||
finance.GET("/records", financeH.ListRecords)
|
||||
finance.POST("/records", financeH.Create)
|
||||
finance.PUT("/records/:id/close", financeH.Close)
|
||||
finance.PUT("/records/close-by-ref", financeH.CloseByRef)
|
||||
finance.GET("/summary", financeH.Summary)
|
||||
finance.GET("/records", financeH.ListRecords)
|
||||
finance.POST("/records", financeH.Create)
|
||||
finance.PUT("/records/:id/close", financeH.Close)
|
||||
finance.PUT("/records/close-by-ref", financeH.CloseByRef)
|
||||
finance.GET("/summary", financeH.Summary)
|
||||
}
|
||||
|
||||
// 酒行信息
|
||||
@@ -211,15 +224,15 @@ func Setup(r *gin.Engine, db *gorm.DB) {
|
||||
// 导入
|
||||
imp := api.Group("/import")
|
||||
{
|
||||
imp.POST("/products", importH.ImportProducts)
|
||||
imp.POST("/partners", importH.ImportPartners)
|
||||
imp.POST("/product-names", importH.ImportProductNames)
|
||||
imp.POST("/products", importH.ImportProducts)
|
||||
imp.POST("/partners", importH.ImportPartners)
|
||||
imp.POST("/product-names", importH.ImportProductNames)
|
||||
imp.POST("/product-series", importH.ImportProductSeries)
|
||||
imp.POST("/product-specs", importH.ImportProductSpecs)
|
||||
imp.POST("/product-codes", importH.ImportProductCodes)
|
||||
imp.POST("/stock-in", importH.ImportStockIn)
|
||||
imp.POST("/stock-out", importH.ImportStockOut)
|
||||
imp.POST("/inventory", importH.ImportInventory)
|
||||
imp.POST("/product-specs", importH.ImportProductSpecs)
|
||||
imp.POST("/product-codes", importH.ImportProductCodes)
|
||||
imp.POST("/stock-in", importH.ImportStockIn)
|
||||
imp.POST("/stock-out", importH.ImportStockOut)
|
||||
imp.POST("/inventory", importH.ImportInventory)
|
||||
}
|
||||
|
||||
// 基础数据选项(名称/系列/规格)
|
||||
|
||||
@@ -40,16 +40,23 @@ type DeviceInfo struct {
|
||||
}
|
||||
|
||||
// loginLimiter 内存登录失败限流器(单实例,重启即清零)。
|
||||
// 两个维度共用同一张表:账号维度 key="<shopCode>|<username>",IP 维度 key="ip|<addr>",
|
||||
// 分别用不同阈值锁定。带 janitor 清理空闲 entry,避免攻击者用随机 key 灌爆内存。
|
||||
type loginLimiter struct {
|
||||
mu sync.Mutex
|
||||
entries map[string]*limiterEntry
|
||||
mu sync.Mutex
|
||||
entries map[string]*limiterEntry
|
||||
janitorOnce sync.Once
|
||||
}
|
||||
|
||||
type limiterEntry struct {
|
||||
failures int
|
||||
lockedTill time.Time
|
||||
lastSeen time.Time
|
||||
}
|
||||
|
||||
// loginLimiterIdleTTL:已解锁且超过该时长未活动的 entry 会被 janitor 清理。
|
||||
const loginLimiterIdleTTL = 30 * time.Minute
|
||||
|
||||
var loginLim = &loginLimiter{entries: map[string]*limiterEntry{}}
|
||||
|
||||
// locked 返回该 key 是否处于锁定中。
|
||||
@@ -57,11 +64,16 @@ func (l *loginLimiter) locked(key string) bool {
|
||||
l.mu.Lock()
|
||||
defer l.mu.Unlock()
|
||||
e := l.entries[key]
|
||||
return e != nil && time.Now().Before(e.lockedTill)
|
||||
if e == nil {
|
||||
return false
|
||||
}
|
||||
e.lastSeen = time.Now()
|
||||
return time.Now().Before(e.lockedTill)
|
||||
}
|
||||
|
||||
// recordFailure 记一次失败,达到阈值则锁定。
|
||||
func (l *loginLimiter) recordFailure(key string) {
|
||||
// recordFailure 记一次失败,达到 max 阈值则锁定(max<=0 表示该维度不锁)。
|
||||
func (l *loginLimiter) recordFailure(key string, max int) {
|
||||
l.startJanitor()
|
||||
l.mu.Lock()
|
||||
defer l.mu.Unlock()
|
||||
e := l.entries[key]
|
||||
@@ -69,8 +81,8 @@ func (l *loginLimiter) recordFailure(key string) {
|
||||
e = &limiterEntry{}
|
||||
l.entries[key] = e
|
||||
}
|
||||
e.lastSeen = time.Now()
|
||||
e.failures++
|
||||
max := config.C.Session.MaxFailures
|
||||
if max > 0 && e.failures >= max {
|
||||
e.lockedTill = time.Now().Add(time.Duration(config.C.Session.LockMinutes) * time.Minute)
|
||||
e.failures = 0
|
||||
@@ -84,6 +96,26 @@ func (l *loginLimiter) reset(key string) {
|
||||
delete(l.entries, key)
|
||||
}
|
||||
|
||||
// startJanitor 惰性启动后台清理(仅一次):每 5 分钟淘汰「未锁定且超过 TTL 未活动」的 entry。
|
||||
func (l *loginLimiter) startJanitor() {
|
||||
l.janitorOnce.Do(func() {
|
||||
go func() {
|
||||
t := time.NewTicker(5 * time.Minute)
|
||||
defer t.Stop()
|
||||
for range t.C {
|
||||
now := time.Now()
|
||||
l.mu.Lock()
|
||||
for k, e := range l.entries {
|
||||
if now.After(e.lockedTill) && now.Sub(e.lastSeen) > loginLimiterIdleTTL {
|
||||
delete(l.entries, k)
|
||||
}
|
||||
}
|
||||
l.mu.Unlock()
|
||||
}
|
||||
}()
|
||||
})
|
||||
}
|
||||
|
||||
type AuthService struct {
|
||||
db *gorm.DB
|
||||
}
|
||||
@@ -101,15 +133,27 @@ type TokenPair struct {
|
||||
|
||||
// Login 账号密码登录
|
||||
func (s *AuthService) Login(shopCode, username, password string, dev DeviceInfo) (*TokenPair, *model.User, error) {
|
||||
// 两个限流维度:账号维度防针对单账号的密码爆破;IP 维度(阈值更高)防单 IP 撞多个账号、
|
||||
// 以及用随机账号灌爆内存。IP 为空(本地/测试)时退化为仅账号维度。
|
||||
limiterKey := shopCode + "|" + username
|
||||
if loginLim.locked(limiterKey) {
|
||||
ipKey := ""
|
||||
if dev.IP != "" {
|
||||
ipKey = "ip|" + dev.IP
|
||||
}
|
||||
recordFail := func() {
|
||||
loginLim.recordFailure(limiterKey, config.C.Session.MaxFailures)
|
||||
if ipKey != "" {
|
||||
loginLim.recordFailure(ipKey, config.C.Session.IPMaxFailures)
|
||||
}
|
||||
}
|
||||
if loginLim.locked(limiterKey) || (ipKey != "" && loginLim.locked(ipKey)) {
|
||||
s.recordLoginAttempt(shopCode, username, dev, false, "locked")
|
||||
return nil, nil, ErrTooManyAttempts
|
||||
}
|
||||
|
||||
var shop model.Shop
|
||||
if err := s.db.Where("code = ?", shopCode).First(&shop).Error; err != nil {
|
||||
loginLim.recordFailure(limiterKey)
|
||||
recordFail()
|
||||
s.recordLoginAttempt(shopCode, username, dev, false, "invalid_shop")
|
||||
return nil, nil, ErrInvalidCredentials
|
||||
}
|
||||
@@ -117,7 +161,7 @@ func (s *AuthService) Login(shopCode, username, password string, dev DeviceInfo)
|
||||
var user model.User
|
||||
if err := s.db.Where("shop_id = ? AND username = ? AND deleted_at IS NULL", shop.ID, username).
|
||||
First(&user).Error; err != nil {
|
||||
loginLim.recordFailure(limiterKey)
|
||||
recordFail()
|
||||
s.recordLoginAttempt(shopCode, username, dev, false, "invalid_user")
|
||||
return nil, nil, ErrInvalidCredentials
|
||||
}
|
||||
@@ -128,7 +172,7 @@ func (s *AuthService) Login(shopCode, username, password string, dev DeviceInfo)
|
||||
}
|
||||
|
||||
if err := bcrypt.CompareHashAndPassword([]byte(user.PasswordHash), []byte(password)); err != nil {
|
||||
loginLim.recordFailure(limiterKey)
|
||||
recordFail()
|
||||
s.recordLoginAttempt(shopCode, username, dev, false, "bad_password")
|
||||
return nil, nil, ErrInvalidCredentials
|
||||
}
|
||||
@@ -193,6 +237,9 @@ func (s *AuthService) Login(shopCode, username, password string, dev DeviceInfo)
|
||||
}
|
||||
|
||||
loginLim.reset(limiterKey)
|
||||
if ipKey != "" {
|
||||
loginLim.reset(ipKey)
|
||||
}
|
||||
user.LastLoginAt = &now
|
||||
|
||||
pair, err := s.issueTokens(user.ID, shop.ID, user.Role, sid, jti)
|
||||
|
||||
@@ -1,12 +1,14 @@
|
||||
package service
|
||||
|
||||
import (
|
||||
"strconv"
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
"github.com/wangjia/jiu/backend/config"
|
||||
"github.com/wangjia/jiu/backend/internal/model"
|
||||
"github.com/wangjia/jiu/backend/testutil"
|
||||
)
|
||||
@@ -146,6 +148,50 @@ func TestAuthService_RefreshTokens_Invalid(t *testing.T) {
|
||||
assert.Nil(t, newPair)
|
||||
}
|
||||
|
||||
// TestLogin_AccountLockoutAfterMaxFailures 同一账号连续失败达阈值后锁定(回归)。
|
||||
func TestLogin_AccountLockoutAfterMaxFailures(t *testing.T) {
|
||||
db := testutil.SetupTestDB()
|
||||
shop := testutil.CreateTestShop(db, "LOCK_ACC")
|
||||
testutil.CreateTestUser(db, shop.ID, "admin", "password123", "admin")
|
||||
config.C.Session.MaxFailures = 3
|
||||
svc := NewAuthService(db)
|
||||
defer loginLim.reset("LOCK_ACC|admin")
|
||||
|
||||
for i := 0; i < 3; i++ {
|
||||
_, _, err := svc.Login("LOCK_ACC", "admin", "wrong", DeviceInfo{Platform: "windows", IP: "10.0.0.1"})
|
||||
require.ErrorIs(t, err, ErrInvalidCredentials)
|
||||
}
|
||||
// 第 4 次即便密码正确也被锁定拒绝。
|
||||
_, _, err := svc.Login("LOCK_ACC", "admin", "password123", DeviceInfo{Platform: "windows", IP: "10.0.0.1"})
|
||||
assert.ErrorIs(t, err, ErrTooManyAttempts)
|
||||
}
|
||||
|
||||
// TestLogin_IPLockoutAcrossAccounts 单 IP 跨多个(不存在的)账号累计失败达 IP 阈值后锁该 IP。
|
||||
// 每次用不同用户名,账号维度永不触发锁定,只有 IP 维度会锁——验证 per-IP 防撞库 + 防内存灌爆。
|
||||
func TestLogin_IPLockoutAcrossAccounts(t *testing.T) {
|
||||
db := testutil.SetupTestDB()
|
||||
testutil.CreateTestShop(db, "LOCK_IP")
|
||||
config.C.Session.MaxFailures = 5
|
||||
config.C.Session.IPMaxFailures = 4
|
||||
const attackIP = "203.0.113.9"
|
||||
svc := NewAuthService(db)
|
||||
defer loginLim.reset("ip|" + attackIP)
|
||||
|
||||
// 4 次不同用户名(invalid_user),账号 key 各不相同永不锁;IP key 累计到 4 → 锁 IP。
|
||||
for i := 0; i < 4; i++ {
|
||||
uname := "ghost" + strconv.Itoa(i)
|
||||
_, _, err := svc.Login("LOCK_IP", uname, "whatever", DeviceInfo{Platform: "windows", IP: attackIP})
|
||||
require.ErrorIs(t, err, ErrInvalidCredentials)
|
||||
}
|
||||
// 同 IP 再来一发(仍是新用户名,账号维度无锁)→ 被 IP 锁拦下。
|
||||
_, _, err := svc.Login("LOCK_IP", "ghostX", "whatever", DeviceInfo{Platform: "windows", IP: attackIP})
|
||||
assert.ErrorIs(t, err, ErrTooManyAttempts)
|
||||
|
||||
// 另一 IP 不受影响。
|
||||
_, _, err = svc.Login("LOCK_IP", "ghostY", "whatever", DeviceInfo{Platform: "windows", IP: "198.51.100.7"})
|
||||
assert.ErrorIs(t, err, ErrInvalidCredentials)
|
||||
}
|
||||
|
||||
func TestHashPassword(t *testing.T) {
|
||||
hash, err := HashPassword("mypassword")
|
||||
require.NoError(t, err)
|
||||
|
||||
+7
-1
@@ -43,6 +43,13 @@ func main() {
|
||||
r := gin.New()
|
||||
r.Use(gin.Logger(), gin.Recovery())
|
||||
|
||||
// 真实客户端 IP:只信任本机 nginx(127.0.0.1/::1)写的 X-Real-IP,丢弃客户端伪造的
|
||||
// X-Forwarded-For。这样 c.ClientIP() 返回不可伪造的真实 IP,是所有按 IP 限流/审计的基础。
|
||||
// 代理链:client → nginx(127.0.0.1:8445) → 后端(127.0.0.1:8080);将来若在 nginx 前再加
|
||||
// 一层代理,需把其地址并入下列可信网段。
|
||||
_ = r.SetTrustedProxies([]string{"127.0.0.1", "::1"})
|
||||
r.RemoteIPHeaders = []string{"X-Real-IP"}
|
||||
|
||||
// CORS
|
||||
corsOrigin := config.C.Server.CORSOrigin
|
||||
r.Use(func(c *gin.Context) {
|
||||
@@ -131,4 +138,3 @@ func autoMigrate(db *gorm.DB) {
|
||||
}
|
||||
log.Println("AutoMigrate completed")
|
||||
}
|
||||
|
||||
|
||||
@@ -273,6 +273,7 @@ CREATE TABLE IF NOT EXISTS `stock_in_orders` (
|
||||
`warehouse_id` BIGINT UNSIGNED NOT NULL,
|
||||
`partner_id` BIGINT UNSIGNED DEFAULT NULL COMMENT '供应商',
|
||||
`operator_id` BIGINT UNSIGNED NOT NULL COMMENT '经办人',
|
||||
`creator_id` BIGINT UNSIGNED DEFAULT NULL COMMENT '制单人',
|
||||
`reviewer_id` BIGINT UNSIGNED DEFAULT NULL COMMENT '审核人',
|
||||
`status` ENUM('draft','pending','approved','rejected') NOT NULL DEFAULT 'draft',
|
||||
`order_date` DATE NOT NULL,
|
||||
@@ -299,6 +300,10 @@ CREATE TABLE IF NOT EXISTS `stock_in_items` (
|
||||
`order_id` BIGINT UNSIGNED NOT NULL,
|
||||
`shop_id` BIGINT UNSIGNED NOT NULL,
|
||||
`product_id` BIGINT UNSIGNED NOT NULL,
|
||||
`product_code` VARCHAR(50) DEFAULT NULL COMMENT '商品编号(源流水号,历史导入)',
|
||||
`product_name` VARCHAR(255) DEFAULT NULL COMMENT '商品名称(历史导入快照)',
|
||||
`series` VARCHAR(100) DEFAULT NULL COMMENT '系列(历史导入快照)',
|
||||
`spec` VARCHAR(100) DEFAULT NULL COMMENT '规格(历史导入快照)',
|
||||
`quantity` DECIMAL(12,3) NOT NULL COMMENT '数量',
|
||||
`unit_price` DECIMAL(16,2) NOT NULL DEFAULT 0 COMMENT '单价',
|
||||
`total_price` DECIMAL(16,2) NOT NULL DEFAULT 0,
|
||||
@@ -323,6 +328,7 @@ CREATE TABLE IF NOT EXISTS `stock_out_orders` (
|
||||
`warehouse_id` BIGINT UNSIGNED NOT NULL,
|
||||
`partner_id` BIGINT UNSIGNED DEFAULT NULL COMMENT '客户',
|
||||
`operator_id` BIGINT UNSIGNED NOT NULL,
|
||||
`creator_id` BIGINT UNSIGNED DEFAULT NULL COMMENT '制单人',
|
||||
`reviewer_id` BIGINT UNSIGNED DEFAULT NULL,
|
||||
`status` ENUM('draft','pending','approved','rejected') NOT NULL DEFAULT 'draft',
|
||||
`order_date` DATE NOT NULL,
|
||||
@@ -349,9 +355,15 @@ CREATE TABLE IF NOT EXISTS `stock_out_items` (
|
||||
`order_id` BIGINT UNSIGNED NOT NULL,
|
||||
`shop_id` BIGINT UNSIGNED NOT NULL,
|
||||
`product_id` BIGINT UNSIGNED NOT NULL,
|
||||
`product_code` VARCHAR(50) DEFAULT NULL COMMENT '商品编号(源流水号,历史导入)',
|
||||
`product_name` VARCHAR(255) DEFAULT NULL COMMENT '商品名称(历史导入快照)',
|
||||
`series` VARCHAR(100) DEFAULT NULL COMMENT '系列(历史导入快照)',
|
||||
`spec` VARCHAR(100) DEFAULT NULL COMMENT '规格(历史导入快照)',
|
||||
`quantity` DECIMAL(12,3) NOT NULL,
|
||||
`unit_price` DECIMAL(16,2) NOT NULL DEFAULT 0,
|
||||
`total_price` DECIMAL(16,2) NOT NULL DEFAULT 0,
|
||||
`batch_no` VARCHAR(50) DEFAULT NULL COMMENT '批次号',
|
||||
`production_date` DATE DEFAULT NULL COMMENT '生产日期',
|
||||
`custom_fields` JSON DEFAULT NULL,
|
||||
`remark` VARCHAR(255) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
|
||||
@@ -28,12 +28,15 @@ func InitConfig() {
|
||||
RefreshExpireH: 168,
|
||||
},
|
||||
Session: config.SessionConfig{
|
||||
LimitDesktop: 2,
|
||||
LimitMobile: 2,
|
||||
LimitWeb: 2,
|
||||
MaxFailures: 5,
|
||||
LockMinutes: 15,
|
||||
LimitDesktop: 2,
|
||||
LimitMobile: 2,
|
||||
LimitWeb: 2,
|
||||
MaxFailures: 5,
|
||||
IPMaxFailures: 20,
|
||||
LockMinutes: 15,
|
||||
},
|
||||
// 测试默认关闭限流,避免压测式用例触发 429;限流逻辑由 ratelimit_test.go 显式开启验证。
|
||||
RateLimit: config.RateLimitConfig{Enabled: false},
|
||||
}
|
||||
}
|
||||
|
||||
@@ -275,6 +278,7 @@ func SetupTestDB() *gorm.DB {
|
||||
warehouse_id INTEGER NOT NULL,
|
||||
partner_id INTEGER,
|
||||
operator_id INTEGER NOT NULL,
|
||||
creator_id INTEGER,
|
||||
reviewer_id INTEGER,
|
||||
status TEXT DEFAULT 'draft',
|
||||
order_date DATETIME,
|
||||
@@ -292,6 +296,10 @@ func SetupTestDB() *gorm.DB {
|
||||
order_id INTEGER NOT NULL,
|
||||
shop_id INTEGER NOT NULL,
|
||||
product_id INTEGER NOT NULL,
|
||||
product_code TEXT,
|
||||
product_name TEXT,
|
||||
series TEXT,
|
||||
spec TEXT,
|
||||
quantity REAL NOT NULL,
|
||||
unit_price REAL DEFAULT 0,
|
||||
total_price REAL DEFAULT 0,
|
||||
@@ -311,6 +319,7 @@ func SetupTestDB() *gorm.DB {
|
||||
warehouse_id INTEGER NOT NULL,
|
||||
partner_id INTEGER,
|
||||
operator_id INTEGER NOT NULL,
|
||||
creator_id INTEGER,
|
||||
reviewer_id INTEGER,
|
||||
status TEXT DEFAULT 'draft',
|
||||
order_date DATETIME,
|
||||
@@ -328,9 +337,15 @@ func SetupTestDB() *gorm.DB {
|
||||
order_id INTEGER NOT NULL,
|
||||
shop_id INTEGER NOT NULL,
|
||||
product_id INTEGER NOT NULL,
|
||||
product_code TEXT,
|
||||
product_name TEXT,
|
||||
series TEXT,
|
||||
spec TEXT,
|
||||
quantity REAL NOT NULL,
|
||||
unit_price REAL DEFAULT 0,
|
||||
total_price REAL DEFAULT 0,
|
||||
batch_no TEXT,
|
||||
production_date DATETIME,
|
||||
custom_fields TEXT,
|
||||
remark TEXT
|
||||
)`,
|
||||
|
||||
@@ -20,8 +20,7 @@ import '../../screens/about/about_screen.dart';
|
||||
import '../../screens/devices/device_management_screen.dart';
|
||||
import '../auth/auth_state.dart';
|
||||
|
||||
Page<void> _noTransition(Widget child) =>
|
||||
NoTransitionPage<void>(child: child);
|
||||
Page<void> _noTransition(Widget child) => NoTransitionPage<void>(child: child);
|
||||
|
||||
/// ChangeNotifier that bridges Riverpod auth state → GoRouter refreshListenable.
|
||||
class _RouterNotifier extends ChangeNotifier {
|
||||
@@ -94,74 +93,106 @@ final appRouterProvider = Provider<GoRouter>((ref) {
|
||||
path: '/login',
|
||||
builder: (context, state) => const LoginScreen(),
|
||||
),
|
||||
ShellRoute(
|
||||
builder: (context, state, child) => AppShell(child: child),
|
||||
routes: [
|
||||
GoRoute(
|
||||
path: '/stock-in',
|
||||
pageBuilder: (_, __) => _noTransition(const StockInListScreen())),
|
||||
GoRoute(
|
||||
path: '/stock-in/new',
|
||||
pageBuilder: (_, __) => _noTransition(const StockInFormScreen())),
|
||||
GoRoute(
|
||||
path: '/stock-in/edit/:id',
|
||||
pageBuilder: (_, state) => _noTransition(
|
||||
StockInFormScreen(
|
||||
editOrderId: int.parse(state.pathParameters['id']!)))),
|
||||
GoRoute(
|
||||
path: '/stock-out',
|
||||
pageBuilder: (_, __) => _noTransition(const StockOutListScreen())),
|
||||
GoRoute(
|
||||
path: '/stock-out/new',
|
||||
pageBuilder: (_, __) => _noTransition(const StockOutFormScreen())),
|
||||
GoRoute(
|
||||
path: '/stock-out/edit/:id',
|
||||
pageBuilder: (_, state) => _noTransition(
|
||||
StockOutFormScreen(
|
||||
editOrderId: int.parse(state.pathParameters['id']!)))),
|
||||
GoRoute(
|
||||
path: '/inventory',
|
||||
pageBuilder: (_, __) =>
|
||||
_noTransition(const InventoryListScreen())),
|
||||
GoRoute(
|
||||
path: '/inventory/check',
|
||||
pageBuilder: (_, __) =>
|
||||
_noTransition(const InventoryCheckScreen())),
|
||||
GoRoute(
|
||||
path: '/partners',
|
||||
pageBuilder: (_, __) => _noTransition(const PartnersScreen())),
|
||||
GoRoute(
|
||||
path: '/finance',
|
||||
pageBuilder: (_, __) => _noTransition(const FinanceScreen())),
|
||||
GoRoute(
|
||||
path: '/products',
|
||||
pageBuilder: (_, __) => _noTransition(const ProductsScreen())),
|
||||
GoRoute(
|
||||
path: '/products/:id',
|
||||
pageBuilder: (_, state) => _noTransition(ProductDetailScreen(
|
||||
productId: int.parse(state.pathParameters['id']!)))),
|
||||
GoRoute(
|
||||
path: '/settings',
|
||||
pageBuilder: (_, state) {
|
||||
const tabIndex = {
|
||||
'shop': 0,
|
||||
'users': 1,
|
||||
'number': 2,
|
||||
'system': 3,
|
||||
'license': 4,
|
||||
'import': 5,
|
||||
};
|
||||
final tab =
|
||||
tabIndex[state.uri.queryParameters['tab']] ?? 0;
|
||||
return _noTransition(SettingsScreen(initialTab: tab));
|
||||
}),
|
||||
GoRoute(
|
||||
path: '/devices',
|
||||
pageBuilder: (_, __) =>
|
||||
_noTransition(const DeviceManagementScreen())),
|
||||
GoRoute(
|
||||
path: '/about',
|
||||
pageBuilder: (_, __) => _noTransition(const AboutScreen())),
|
||||
// 各栏目拆为独立分支:StatefulShellRoute.indexedStack 让每个分支的 Navigator
|
||||
// 及其页面 State 常驻,跨栏目切换不再销毁上一页(半填表单/内部 tab/滚动位置保活)。
|
||||
// 分支顺序必须与 AppShell._navItems 一致(navigationShell.currentIndex 据此高亮)。
|
||||
StatefulShellRoute.indexedStack(
|
||||
builder: (context, state, navigationShell) =>
|
||||
AppShell(navigationShell: navigationShell),
|
||||
branches: [
|
||||
// 0 入库管理
|
||||
StatefulShellBranch(routes: [
|
||||
GoRoute(
|
||||
path: '/stock-in',
|
||||
pageBuilder: (_, __) =>
|
||||
_noTransition(const StockInListScreen())),
|
||||
GoRoute(
|
||||
path: '/stock-in/new',
|
||||
pageBuilder: (_, __) =>
|
||||
_noTransition(const StockInFormScreen())),
|
||||
GoRoute(
|
||||
path: '/stock-in/edit/:id',
|
||||
pageBuilder: (_, state) => _noTransition(StockInFormScreen(
|
||||
editOrderId: int.parse(state.pathParameters['id']!)))),
|
||||
]),
|
||||
// 1 出库管理
|
||||
StatefulShellBranch(routes: [
|
||||
GoRoute(
|
||||
path: '/stock-out',
|
||||
pageBuilder: (_, __) =>
|
||||
_noTransition(const StockOutListScreen())),
|
||||
GoRoute(
|
||||
path: '/stock-out/new',
|
||||
pageBuilder: (_, __) =>
|
||||
_noTransition(const StockOutFormScreen())),
|
||||
GoRoute(
|
||||
path: '/stock-out/edit/:id',
|
||||
pageBuilder: (_, state) => _noTransition(StockOutFormScreen(
|
||||
editOrderId: int.parse(state.pathParameters['id']!)))),
|
||||
]),
|
||||
// 2 库存管理
|
||||
StatefulShellBranch(routes: [
|
||||
GoRoute(
|
||||
path: '/inventory',
|
||||
pageBuilder: (_, __) =>
|
||||
_noTransition(const InventoryListScreen())),
|
||||
GoRoute(
|
||||
path: '/inventory/check',
|
||||
pageBuilder: (_, __) =>
|
||||
_noTransition(const InventoryCheckScreen())),
|
||||
]),
|
||||
// 3 财务管理
|
||||
StatefulShellBranch(routes: [
|
||||
GoRoute(
|
||||
path: '/finance',
|
||||
pageBuilder: (_, __) => _noTransition(const FinanceScreen())),
|
||||
]),
|
||||
// 4 往来单位
|
||||
StatefulShellBranch(routes: [
|
||||
GoRoute(
|
||||
path: '/partners',
|
||||
pageBuilder: (_, __) => _noTransition(const PartnersScreen())),
|
||||
]),
|
||||
// 5 基础数据
|
||||
StatefulShellBranch(routes: [
|
||||
GoRoute(
|
||||
path: '/products',
|
||||
pageBuilder: (_, __) => _noTransition(const ProductsScreen())),
|
||||
GoRoute(
|
||||
path: '/products/:id',
|
||||
pageBuilder: (_, state) => _noTransition(ProductDetailScreen(
|
||||
productId: int.parse(state.pathParameters['id']!)))),
|
||||
]),
|
||||
// 6 设备管理
|
||||
StatefulShellBranch(routes: [
|
||||
GoRoute(
|
||||
path: '/devices',
|
||||
pageBuilder: (_, __) =>
|
||||
_noTransition(const DeviceManagementScreen())),
|
||||
]),
|
||||
// 7 系统设置
|
||||
StatefulShellBranch(routes: [
|
||||
GoRoute(
|
||||
path: '/settings',
|
||||
pageBuilder: (_, state) {
|
||||
const tabIndex = {
|
||||
'shop': 0,
|
||||
'users': 1,
|
||||
'number': 2,
|
||||
'system': 3,
|
||||
'license': 4,
|
||||
'import': 5,
|
||||
};
|
||||
final tab = tabIndex[state.uri.queryParameters['tab']] ?? 0;
|
||||
return _noTransition(SettingsScreen(initialTab: tab));
|
||||
}),
|
||||
]),
|
||||
// 8 关于我们
|
||||
StatefulShellBranch(routes: [
|
||||
GoRoute(
|
||||
path: '/about',
|
||||
pageBuilder: (_, __) => _noTransition(const AboutScreen())),
|
||||
]),
|
||||
],
|
||||
),
|
||||
],
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
/// 日期工具:统一 `yyyy-MM-dd` 的格式化与解析,收敛各处重复的 padLeft 逻辑。
|
||||
library;
|
||||
|
||||
/// 格式化为 `yyyy-MM-dd`(提交后端的统一格式)。
|
||||
String formatYmd(DateTime d) =>
|
||||
'${d.year}-${d.month.toString().padLeft(2, '0')}-${d.day.toString().padLeft(2, '0')}';
|
||||
|
||||
/// 解析 `yyyy-MM-dd`(或更长的带时间字符串,取前 10 位)。无效返回 null。
|
||||
DateTime? parseYmd(String? s) {
|
||||
if (s == null || s.isEmpty) return null;
|
||||
final t = s.length >= 10 ? s.substring(0, 10) : s;
|
||||
return DateTime.tryParse(t);
|
||||
}
|
||||
|
||||
/// 组合年/月/日为 `yyyy-MM-dd`,自动把超出当月的「日」clamp 回当月最大值
|
||||
/// (如 2 月选 31 → 28/29)。任一为空返回 null。
|
||||
String? composeYmd(int? year, int? month, int? day) {
|
||||
if (year == null || month == null || day == null) return null;
|
||||
final maxDay = DateTime(year, month + 1, 0).day; // 下月第 0 天 = 当月最后一天
|
||||
final d = day > maxDay ? maxDay : day;
|
||||
return formatYmd(DateTime(year, month, d));
|
||||
}
|
||||
@@ -7,6 +7,8 @@ class ShopInfo {
|
||||
final String managerName;
|
||||
final String logoUrl;
|
||||
final String wechatId;
|
||||
// 店级动态配置(后端 shops.custom_fields JSON),存录入默认值等轻量配置
|
||||
final Map<String, dynamic> customFields;
|
||||
|
||||
const ShopInfo({
|
||||
required this.id,
|
||||
@@ -17,8 +19,24 @@ class ShopInfo {
|
||||
required this.managerName,
|
||||
this.logoUrl = '',
|
||||
this.wechatId = '',
|
||||
this.customFields = const {},
|
||||
});
|
||||
|
||||
/// 入库录入默认商品名称选项 id(未配置返回 null)。
|
||||
int? get defaultNameId => _asInt(customFields['default_name_id']);
|
||||
|
||||
/// 入库录入默认系列选项 id(未配置返回 null)。
|
||||
int? get defaultSeriesId => _asInt(customFields['default_series_id']);
|
||||
|
||||
/// 入库录入默认规格选项 id(未配置返回 null)。
|
||||
int? get defaultSpecId => _asInt(customFields['default_spec_id']);
|
||||
|
||||
static int? _asInt(dynamic v) {
|
||||
if (v == null) return null;
|
||||
if (v is num) return v.toInt();
|
||||
return int.tryParse(v.toString());
|
||||
}
|
||||
|
||||
factory ShopInfo.fromJson(Map<String, dynamic> json) => ShopInfo(
|
||||
id: (json['id'] as num).toInt(),
|
||||
code: json['code'] as String? ?? '',
|
||||
@@ -28,5 +46,8 @@ class ShopInfo {
|
||||
managerName: json['manager_name'] as String? ?? '',
|
||||
logoUrl: json['logo_url'] as String? ?? '',
|
||||
wechatId: json['wechat_id'] as String? ?? '',
|
||||
customFields:
|
||||
(json['custom_fields'] as Map?)?.cast<String, dynamic>() ??
|
||||
const {},
|
||||
);
|
||||
}
|
||||
|
||||
@@ -34,7 +34,17 @@ class StockInItem {
|
||||
this.productStorage,
|
||||
});
|
||||
|
||||
factory StockInItem.fromJson(Map<String, dynamic> json) => StockInItem(
|
||||
factory StockInItem.fromJson(Map<String, dynamic> json) {
|
||||
final product = json['product'] as Map<String, dynamic>?;
|
||||
// 历史导入行 product_id=0、无 product 关联,商品信息存在明细行自身列上。
|
||||
// 优先取明细行快照列,回退到 product 关联(App 新建单据走 product)。
|
||||
String? lineOrProduct(String lineKey, String productKey) {
|
||||
final line = json[lineKey] as String?;
|
||||
if (line != null && line.isNotEmpty) return line;
|
||||
return product?[productKey] as String?;
|
||||
}
|
||||
|
||||
return StockInItem(
|
||||
orderId: json['order_id'] != null
|
||||
? (json['order_id'] as num).toInt()
|
||||
: null,
|
||||
@@ -44,10 +54,10 @@ class StockInItem {
|
||||
totalPrice: (json['total_price'] as num).toDouble(),
|
||||
batchNo: json['batch_no'] as String?,
|
||||
productionDate: json['production_date'] as String?,
|
||||
productName: (json['product'] as Map<String, dynamic>?)?['name'] as String?,
|
||||
productCode: (json['product'] as Map<String, dynamic>?)?['code'] as String?,
|
||||
productSeries: (json['product'] as Map<String, dynamic>?)?['series'] as String?,
|
||||
productSpec: (json['product'] as Map<String, dynamic>?)?['spec'] as String?,
|
||||
productName: lineOrProduct('product_name', 'name'),
|
||||
productCode: lineOrProduct('product_code', 'code'),
|
||||
productSeries: lineOrProduct('series', 'series'),
|
||||
productSpec: lineOrProduct('spec', 'spec'),
|
||||
productUnit: (json['product'] as Map<String, dynamic>?)?['unit'] as String?,
|
||||
productOrigin: ((json['product'] as Map<String, dynamic>?)?['origin']
|
||||
as Map<String, dynamic>?)?['name'] as String?,
|
||||
@@ -56,6 +66,7 @@ class StockInItem {
|
||||
productStorage: ((json['product'] as Map<String, dynamic>?)?['storage']
|
||||
as Map<String, dynamic>?)?['name'] as String?,
|
||||
);
|
||||
}
|
||||
|
||||
Map<String, dynamic> toJson() => {
|
||||
'product_id': productId,
|
||||
|
||||
@@ -23,7 +23,17 @@ class StockOutItem {
|
||||
this.productUnit,
|
||||
});
|
||||
|
||||
factory StockOutItem.fromJson(Map<String, dynamic> json) => StockOutItem(
|
||||
factory StockOutItem.fromJson(Map<String, dynamic> json) {
|
||||
final product = json['product'] as Map<String, dynamic>?;
|
||||
// 历史导入行 product_id=0、无 product 关联,商品信息存在明细行自身列上。
|
||||
// 优先取明细行快照列,回退到 product 关联(App 新建单据走 product)。
|
||||
String? lineOrProduct(String lineKey, String productKey) {
|
||||
final line = json[lineKey] as String?;
|
||||
if (line != null && line.isNotEmpty) return line;
|
||||
return product?[productKey] as String?;
|
||||
}
|
||||
|
||||
return StockOutItem(
|
||||
orderId: json['order_id'] != null
|
||||
? (json['order_id'] as num).toInt()
|
||||
: null,
|
||||
@@ -31,12 +41,13 @@ class StockOutItem {
|
||||
quantity: (json['quantity'] as num).toDouble(),
|
||||
unitPrice: (json['unit_price'] as num).toDouble(),
|
||||
totalPrice: (json['total_price'] as num).toDouble(),
|
||||
productName: (json['product'] as Map<String, dynamic>?)?['name'] as String?,
|
||||
productCode: (json['product'] as Map<String, dynamic>?)?['code'] as String?,
|
||||
productSeries: (json['product'] as Map<String, dynamic>?)?['series'] as String?,
|
||||
productSpec: (json['product'] as Map<String, dynamic>?)?['spec'] as String?,
|
||||
productName: lineOrProduct('product_name', 'name'),
|
||||
productCode: lineOrProduct('product_code', 'code'),
|
||||
productSeries: lineOrProduct('series', 'series'),
|
||||
productSpec: lineOrProduct('spec', 'spec'),
|
||||
productUnit: (json['product'] as Map<String, dynamic>?)?['unit'] as String?,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class StockOutOrder {
|
||||
|
||||
@@ -6,13 +6,16 @@ import '../../models/finance.dart';
|
||||
import '../../providers/finance_provider.dart';
|
||||
import '../../widgets/data_table_card.dart';
|
||||
import '../../widgets/mobile_list_card.dart';
|
||||
import '../../widgets/multi_select_dropdown.dart' show ColDef, ColumnToggleButton, FilterableColumnHeader;
|
||||
import '../../widgets/multi_select_dropdown.dart'
|
||||
show ColDef, ColumnToggleButton, FilterableColumnHeader;
|
||||
import '../../core/storage/column_prefs.dart';
|
||||
import '../../widgets/page_scaffold.dart';
|
||||
import '../../providers/connectivity_provider.dart';
|
||||
import '../../core/utils/export_util.dart';
|
||||
import '../../core/utils/date_util.dart';
|
||||
import '../../repositories/finance_repository.dart';
|
||||
import '../../widgets/write_guard.dart';
|
||||
import '../../widgets/date_picker_field.dart';
|
||||
|
||||
class FinanceScreen extends ConsumerWidget {
|
||||
const FinanceScreen({super.key});
|
||||
@@ -140,11 +143,12 @@ class _FinanceTabState extends ConsumerState<_FinanceTab> {
|
||||
|
||||
/// 财务记录:窄屏卡片
|
||||
Widget _financeCard(FinanceRecord r) {
|
||||
final canClose = (r.type == 'payable' || r.type == 'receivable') &&
|
||||
r.status == 'open';
|
||||
final canClose =
|
||||
(r.type == 'payable' || r.type == 'receivable') && r.status == 'open';
|
||||
final showStatus = r.type == 'payable' || r.type == 'receivable';
|
||||
return MobileListCard(
|
||||
title: Text(r.partnerName?.isNotEmpty == true ? r.partnerName! : r.typeLabel),
|
||||
title: Text(
|
||||
r.partnerName?.isNotEmpty == true ? r.partnerName! : r.typeLabel),
|
||||
subtitle: Text(r.recordDate?.substring(0, 10) ?? '-'),
|
||||
trailing: _TypeBadge(r.typeLabel),
|
||||
fields: [
|
||||
@@ -154,9 +158,7 @@ class _FinanceTabState extends ConsumerState<_FinanceTab> {
|
||||
'¥${r.balance.toStringAsFixed(2)}',
|
||||
style: TextStyle(
|
||||
fontSize: 13,
|
||||
color: r.balance > 0
|
||||
? AppTheme.danger
|
||||
: AppTheme.textSecondary,
|
||||
color: r.balance > 0 ? AppTheme.danger : AppTheme.textSecondary,
|
||||
fontWeight: FontWeight.w600,
|
||||
),
|
||||
)),
|
||||
@@ -204,9 +206,11 @@ class _FinanceTabState extends ConsumerState<_FinanceTab> {
|
||||
child: Column(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: [
|
||||
const Icon(Icons.cloud_off, size: 40, color: AppTheme.textSecondary),
|
||||
const Icon(Icons.cloud_off,
|
||||
size: 40, color: AppTheme.textSecondary),
|
||||
const SizedBox(height: 12),
|
||||
const Text('暂无数据,网络不可用', style: TextStyle(color: AppTheme.textSecondary)),
|
||||
const Text('暂无数据,网络不可用',
|
||||
style: TextStyle(color: AppTheme.textSecondary)),
|
||||
const SizedBox(height: 12),
|
||||
ElevatedButton(onPressed: _refetch, child: const Text('重试')),
|
||||
],
|
||||
@@ -223,13 +227,18 @@ class _FinanceTabState extends ConsumerState<_FinanceTab> {
|
||||
// Summary: only for payable/receivable tabs
|
||||
final totalAmount = records.fold(0.0, (s, r) => s + r.amount);
|
||||
final openAmount = records
|
||||
.where((r) => (r.type == 'payable' || r.type == 'receivable') && r.status == 'open')
|
||||
.where((r) =>
|
||||
(r.type == 'payable' || r.type == 'receivable') &&
|
||||
r.status == 'open')
|
||||
.fold(0.0, (s, r) => s + r.amount);
|
||||
final closedAmount = records
|
||||
.where((r) => (r.type == 'payable' || r.type == 'receivable') && r.status == 'closed')
|
||||
.where((r) =>
|
||||
(r.type == 'payable' || r.type == 'receivable') &&
|
||||
r.status == 'closed')
|
||||
.fold(0.0, (s, r) => s + r.amount);
|
||||
|
||||
final typeOptions = _allRecords.map((r) => r.typeLabel).toSet().toList()..sort();
|
||||
final typeOptions = _allRecords.map((r) => r.typeLabel).toSet().toList()
|
||||
..sort();
|
||||
final partnerOptions = _allRecords
|
||||
.map((r) => r.partnerName ?? '')
|
||||
.where((s) => s.isNotEmpty)
|
||||
@@ -245,8 +254,7 @@ class _FinanceTabState extends ConsumerState<_FinanceTab> {
|
||||
.map((c) => c.key)
|
||||
.toSet();
|
||||
// 列可见性只看用户选择(minWidth 仅作首次默认,不再运行时强制隐藏)。
|
||||
final visibleCols =
|
||||
_colDefs.where((c) => !hidden.contains(c.key)).toList();
|
||||
final visibleCols = _colDefs.where((c) => !hidden.contains(c.key)).toList();
|
||||
|
||||
final columns = visibleCols.map((c) {
|
||||
final label = switch (c.key) {
|
||||
@@ -265,8 +273,7 @@ class _FinanceTabState extends ConsumerState<_FinanceTab> {
|
||||
_ => Text(c.label),
|
||||
};
|
||||
return DataColumn(
|
||||
label: label,
|
||||
numeric: c.key == 'amount' || c.key == 'balance');
|
||||
label: label, numeric: c.key == 'amount' || c.key == 'balance');
|
||||
}).toList();
|
||||
|
||||
DataCell buildFinanceCell(String key, FinanceRecord r) {
|
||||
@@ -314,7 +321,8 @@ class _FinanceTabState extends ConsumerState<_FinanceTab> {
|
||||
width: 160,
|
||||
child: Text(r.remark ?? '-',
|
||||
overflow: TextOverflow.ellipsis,
|
||||
style: const TextStyle(fontSize: 12, color: AppTheme.textSecondary)),
|
||||
style: const TextStyle(
|
||||
fontSize: 12, color: AppTheme.textSecondary)),
|
||||
));
|
||||
case 'actions':
|
||||
if ((r.type == 'payable' || r.type == 'receivable') &&
|
||||
@@ -348,7 +356,9 @@ class _FinanceTabState extends ConsumerState<_FinanceTab> {
|
||||
]
|
||||
: records
|
||||
.map((r) => DataRow(
|
||||
cells: visibleCols.map((c) => buildFinanceCell(c.key, r)).toList(),
|
||||
cells: visibleCols
|
||||
.map((c) => buildFinanceCell(c.key, r))
|
||||
.toList(),
|
||||
))
|
||||
.toList();
|
||||
|
||||
@@ -441,19 +451,30 @@ class _FinanceTabState extends ConsumerState<_FinanceTab> {
|
||||
: '应收账款';
|
||||
exportExcel(
|
||||
filename: tabName,
|
||||
headers: ['日期', '类型', '往来单位', '关联单据', '金额', '余额', '状态', '备注'],
|
||||
rows: records.map((r) => [
|
||||
r.recordDate?.substring(0, 10) ?? '',
|
||||
r.typeLabel,
|
||||
r.partnerName ?? '',
|
||||
r.refType != null && r.refId != null
|
||||
? '${r.refType!.replaceAll('_', '-')}#${r.refId}'
|
||||
: '',
|
||||
r.amount,
|
||||
r.balance,
|
||||
r.status == 'open' ? '未结清' : '已结清',
|
||||
r.remark ?? '',
|
||||
]).toList(),
|
||||
headers: [
|
||||
'日期',
|
||||
'类型',
|
||||
'往来单位',
|
||||
'关联单据',
|
||||
'金额',
|
||||
'余额',
|
||||
'状态',
|
||||
'备注'
|
||||
],
|
||||
rows: records
|
||||
.map((r) => [
|
||||
r.recordDate?.substring(0, 10) ?? '',
|
||||
r.typeLabel,
|
||||
r.partnerName ?? '',
|
||||
r.refType != null && r.refId != null
|
||||
? '${r.refType!.replaceAll('_', '-')}#${r.refId}'
|
||||
: '',
|
||||
r.amount,
|
||||
r.balance,
|
||||
r.status == 'open' ? '未结清' : '已结清',
|
||||
r.remark ?? '',
|
||||
])
|
||||
.toList(),
|
||||
);
|
||||
},
|
||||
icon: const Icon(Icons.download, size: 16),
|
||||
@@ -528,7 +549,8 @@ class _AddPaymentDialogState extends State<_AddPaymentDialog> {
|
||||
final amount = double.tryParse(_amountCtrl.text.trim());
|
||||
if (amount == null || amount <= 0) {
|
||||
ScaffoldMessenger.of(context).showSnackBar(
|
||||
const SnackBar(content: Text('请输入有效金额'), backgroundColor: AppTheme.danger),
|
||||
const SnackBar(
|
||||
content: Text('请输入有效金额'), backgroundColor: AppTheme.danger),
|
||||
);
|
||||
return;
|
||||
}
|
||||
@@ -537,15 +559,17 @@ class _AddPaymentDialogState extends State<_AddPaymentDialog> {
|
||||
final body = <String, dynamic>{
|
||||
'type': _type,
|
||||
'amount': amount,
|
||||
'record_date': '${_date.year}-${_date.month.toString().padLeft(2, '0')}-${_date.day.toString().padLeft(2, '0')}',
|
||||
if (_remarkCtrl.text.trim().isNotEmpty) 'remark': _remarkCtrl.text.trim(),
|
||||
'record_date': formatYmd(_date),
|
||||
if (_remarkCtrl.text.trim().isNotEmpty)
|
||||
'remark': _remarkCtrl.text.trim(),
|
||||
};
|
||||
await widget.repo.create(body);
|
||||
if (mounted) {
|
||||
Navigator.of(context).pop();
|
||||
widget.onSaved();
|
||||
ScaffoldMessenger.of(context).showSnackBar(
|
||||
const SnackBar(content: Text('添加成功'), backgroundColor: AppTheme.success),
|
||||
const SnackBar(
|
||||
content: Text('添加成功'), backgroundColor: AppTheme.success),
|
||||
);
|
||||
}
|
||||
} catch (e) {
|
||||
@@ -570,27 +594,19 @@ class _AddPaymentDialogState extends State<_AddPaymentDialog> {
|
||||
children: [
|
||||
TextField(
|
||||
controller: _amountCtrl,
|
||||
keyboardType: const TextInputType.numberWithOptions(decimal: true),
|
||||
decoration: const InputDecoration(labelText: '金额', prefixText: '¥ '),
|
||||
keyboardType:
|
||||
const TextInputType.numberWithOptions(decimal: true),
|
||||
decoration:
|
||||
const InputDecoration(labelText: '金额', prefixText: '¥ '),
|
||||
),
|
||||
const SizedBox(height: 12),
|
||||
InkWell(
|
||||
onTap: () async {
|
||||
final picked = await showDatePicker(
|
||||
context: context,
|
||||
initialDate: _date,
|
||||
firstDate: DateTime(2020),
|
||||
lastDate: DateTime.now().add(const Duration(days: 30)),
|
||||
);
|
||||
if (picked != null) setState(() => _date = picked);
|
||||
DatePickerField(
|
||||
label: '日期',
|
||||
value: formatYmd(_date),
|
||||
onChanged: (v) {
|
||||
final d = parseYmd(v);
|
||||
if (d != null) setState(() => _date = d);
|
||||
},
|
||||
child: InputDecorator(
|
||||
decoration: const InputDecoration(labelText: '日期'),
|
||||
child: Text(
|
||||
'${_date.year}-${_date.month.toString().padLeft(2, '0')}-${_date.day.toString().padLeft(2, '0')}',
|
||||
style: const TextStyle(fontSize: 14),
|
||||
),
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 12),
|
||||
TextField(
|
||||
@@ -609,8 +625,10 @@ class _AddPaymentDialogState extends State<_AddPaymentDialog> {
|
||||
onPressed: _saving ? null : _save,
|
||||
child: _saving
|
||||
? const SizedBox(
|
||||
width: 16, height: 16,
|
||||
child: CircularProgressIndicator(strokeWidth: 2, color: Colors.white))
|
||||
width: 16,
|
||||
height: 16,
|
||||
child: CircularProgressIndicator(
|
||||
strokeWidth: 2, color: Colors.white))
|
||||
: const Text('保存'),
|
||||
),
|
||||
],
|
||||
@@ -678,7 +696,8 @@ class _TypeBadge extends StatelessWidget {
|
||||
decoration:
|
||||
BoxDecoration(color: bg, borderRadius: BorderRadius.circular(3)),
|
||||
child: Text(label,
|
||||
style: TextStyle(color: fg, fontSize: 12, fontWeight: FontWeight.w500)),
|
||||
style:
|
||||
TextStyle(color: fg, fontSize: 12, fontWeight: FontWeight.w500)),
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -701,43 +720,41 @@ class _SummaryCard extends StatelessWidget {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final card = Container(
|
||||
height: 72,
|
||||
padding: const EdgeInsets.symmetric(horizontal: 16),
|
||||
decoration: BoxDecoration(
|
||||
color: AppTheme.surface,
|
||||
borderRadius: BorderRadius.circular(4),
|
||||
border: Border.all(color: AppTheme.border, width: 0.5),
|
||||
),
|
||||
child: Row(
|
||||
children: [
|
||||
Container(
|
||||
width: 40,
|
||||
height: 40,
|
||||
decoration: BoxDecoration(
|
||||
color: color.withOpacity(0.1),
|
||||
borderRadius: BorderRadius.circular(8),
|
||||
),
|
||||
child: Icon(icon, color: color, size: 22),
|
||||
height: 72,
|
||||
padding: const EdgeInsets.symmetric(horizontal: 16),
|
||||
decoration: BoxDecoration(
|
||||
color: AppTheme.surface,
|
||||
borderRadius: BorderRadius.circular(4),
|
||||
border: Border.all(color: AppTheme.border, width: 0.5),
|
||||
),
|
||||
child: Row(
|
||||
children: [
|
||||
Container(
|
||||
width: 40,
|
||||
height: 40,
|
||||
decoration: BoxDecoration(
|
||||
color: color.withOpacity(0.1),
|
||||
borderRadius: BorderRadius.circular(8),
|
||||
),
|
||||
const SizedBox(width: 12),
|
||||
Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: [
|
||||
Text(title,
|
||||
style: const TextStyle(
|
||||
fontSize: 12, color: AppTheme.textSecondary)),
|
||||
const SizedBox(height: 4),
|
||||
Text(value,
|
||||
style: TextStyle(
|
||||
fontSize: 18,
|
||||
fontWeight: FontWeight.w700,
|
||||
color: color)),
|
||||
],
|
||||
),
|
||||
],
|
||||
),
|
||||
);
|
||||
child: Icon(icon, color: color, size: 22),
|
||||
),
|
||||
const SizedBox(width: 12),
|
||||
Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: [
|
||||
Text(title,
|
||||
style: const TextStyle(
|
||||
fontSize: 12, color: AppTheme.textSecondary)),
|
||||
const SizedBox(height: 4),
|
||||
Text(value,
|
||||
style: TextStyle(
|
||||
fontSize: 18, fontWeight: FontWeight.w700, color: color)),
|
||||
],
|
||||
),
|
||||
],
|
||||
),
|
||||
);
|
||||
return width != null
|
||||
? SizedBox(width: width, child: card)
|
||||
: Expanded(child: card);
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -6,7 +6,9 @@ import '../../core/responsive/responsive.dart';
|
||||
import '../../core/theme/app_theme.dart';
|
||||
import '../../core/auth/auth_state.dart';
|
||||
import '../../core/utils/print_util.dart';
|
||||
import '../../core/utils/date_util.dart';
|
||||
import '../../models/stock_out.dart';
|
||||
import '../../widgets/date_picker_field.dart';
|
||||
import '../../providers/inventory_provider.dart';
|
||||
import '../../providers/partner_provider.dart';
|
||||
import '../../providers/stock_out_provider.dart';
|
||||
@@ -92,7 +94,8 @@ class _StockOutFormScreenState extends ConsumerState<StockOutFormScreen> {
|
||||
Future<void> _loadEditOrder() async {
|
||||
setState(() => _loadingEdit = true);
|
||||
try {
|
||||
final order = await ref.read(stockOutRepositoryProvider).get(widget.editOrderId!);
|
||||
final order =
|
||||
await ref.read(stockOutRepositoryProvider).get(widget.editOrderId!);
|
||||
|
||||
setState(() {
|
||||
_loadedOrder = order;
|
||||
@@ -182,7 +185,8 @@ class _StockOutFormScreenState extends ConsumerState<StockOutFormScreen> {
|
||||
setState(() {
|
||||
_inventoryPickerItems = productMap.values.toList();
|
||||
_inventoryMap = {
|
||||
for (final item in _inventoryPickerItems) item.productId: item.availableQty
|
||||
for (final item in _inventoryPickerItems)
|
||||
item.productId: item.availableQty
|
||||
};
|
||||
});
|
||||
} catch (_) {}
|
||||
@@ -191,7 +195,8 @@ class _StockOutFormScreenState extends ConsumerState<StockOutFormScreen> {
|
||||
Future<void> _addItem() async {
|
||||
if (_warehouseId == null) {
|
||||
ScaffoldMessenger.of(context).showSnackBar(
|
||||
const SnackBar(content: Text('请先选择出库仓库'), backgroundColor: AppTheme.danger),
|
||||
const SnackBar(
|
||||
content: Text('请先选择出库仓库'), backgroundColor: AppTheme.danger),
|
||||
);
|
||||
return;
|
||||
}
|
||||
@@ -231,18 +236,20 @@ class _StockOutFormScreenState extends ConsumerState<StockOutFormScreen> {
|
||||
if (!asDraft && !_formKey.currentState!.validate()) return;
|
||||
if (_warehouseId == null) {
|
||||
ScaffoldMessenger.of(context).showSnackBar(
|
||||
const SnackBar(content: Text('请选择出库仓库'), backgroundColor: AppTheme.danger),
|
||||
const SnackBar(
|
||||
content: Text('请选择出库仓库'), backgroundColor: AppTheme.danger),
|
||||
);
|
||||
return;
|
||||
}
|
||||
if (_items.isEmpty) {
|
||||
ScaffoldMessenger.of(context).showSnackBar(
|
||||
const SnackBar(content: Text('请添加商品明细'), backgroundColor: AppTheme.danger),
|
||||
const SnackBar(
|
||||
content: Text('请添加商品明细'), backgroundColor: AppTheme.danger),
|
||||
);
|
||||
return;
|
||||
}
|
||||
final invalidQtyIndex = _items.indexWhere(
|
||||
(item) => (double.tryParse(item.qtyCtrl.text) ?? 0) <= 0);
|
||||
final invalidQtyIndex = _items
|
||||
.indexWhere((item) => (double.tryParse(item.qtyCtrl.text) ?? 0) <= 0);
|
||||
if (invalidQtyIndex >= 0) {
|
||||
ScaffoldMessenger.of(context).showSnackBar(
|
||||
SnackBar(
|
||||
@@ -269,8 +276,7 @@ class _StockOutFormScreenState extends ConsumerState<StockOutFormScreen> {
|
||||
final data = {
|
||||
'warehouse_id': _warehouseId,
|
||||
if (_partnerId != null) 'partner_id': _partnerId,
|
||||
'order_date':
|
||||
'${_orderDate.year}-${_orderDate.month.toString().padLeft(2, '0')}-${_orderDate.day.toString().padLeft(2, '0')}',
|
||||
'order_date': formatYmd(_orderDate),
|
||||
if (_remarkCtrl.text.trim().isNotEmpty) 'remark': _remarkCtrl.text.trim(),
|
||||
'items': itemsData,
|
||||
'status': asDraft ? 'draft' : 'pending',
|
||||
@@ -278,7 +284,9 @@ class _StockOutFormScreenState extends ConsumerState<StockOutFormScreen> {
|
||||
|
||||
try {
|
||||
if (_isEdit) {
|
||||
await ref.read(stockOutRepositoryProvider).update(widget.editOrderId!, data);
|
||||
await ref
|
||||
.read(stockOutRepositoryProvider)
|
||||
.update(widget.editOrderId!, data);
|
||||
ref.read(stockOutListProvider.notifier).reload();
|
||||
} else {
|
||||
await ref.read(stockOutListProvider.notifier).createOrder(data);
|
||||
@@ -303,6 +311,52 @@ class _StockOutFormScreenState extends ConsumerState<StockOutFormScreen> {
|
||||
}
|
||||
}
|
||||
|
||||
/// 是否有值得保留的录入(用于退出前判断是否提示保存草稿)。
|
||||
bool get _isDirty {
|
||||
if (_remarkCtrl.text.trim().isNotEmpty) return true;
|
||||
if (_warehouseId != null) return true;
|
||||
if (_partnerId != null) return true;
|
||||
for (final item in _items) {
|
||||
if (item.productId != null) return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
/// 退出前处理:无录入直接离开;有未保存录入则提示「保存草稿 / 放弃 / 继续编辑」。
|
||||
Future<void> _handleExit() async {
|
||||
if (!_isDirty) {
|
||||
context.go('/stock-out');
|
||||
return;
|
||||
}
|
||||
final choice = await showDialog<String>(
|
||||
context: context,
|
||||
builder: (ctx) => AlertDialog(
|
||||
title: const Text('未保存的内容'),
|
||||
content:
|
||||
Text(_isEdit ? '当前修改尚未保存。是否保存为草稿?' : '当前出库单尚未提交。是否保存为草稿,以免内容丢失?'),
|
||||
actions: [
|
||||
TextButton(
|
||||
onPressed: () => Navigator.of(ctx).pop('edit'),
|
||||
child: const Text('继续编辑'),
|
||||
),
|
||||
TextButton(
|
||||
onPressed: () => Navigator.of(ctx).pop('discard'),
|
||||
child: const Text('放弃', style: TextStyle(color: AppTheme.danger)),
|
||||
),
|
||||
ElevatedButton(
|
||||
onPressed: () => Navigator.of(ctx).pop('draft'),
|
||||
child: const Text('保存草稿'),
|
||||
),
|
||||
],
|
||||
),
|
||||
);
|
||||
if (choice == 'draft') {
|
||||
await _submit(true);
|
||||
} else if (choice == 'discard' && mounted) {
|
||||
context.go('/stock-out');
|
||||
}
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final asyncWarehouses = ref.watch(warehouseListProvider);
|
||||
@@ -310,320 +364,346 @@ class _StockOutFormScreenState extends ConsumerState<StockOutFormScreen> {
|
||||
final currentUser = ref.watch(authStateProvider).user;
|
||||
final isMobile = context.isMobile;
|
||||
|
||||
return Scaffold(
|
||||
backgroundColor: AppTheme.background,
|
||||
body: Column(
|
||||
children: [
|
||||
Container(
|
||||
height: 52,
|
||||
color: AppTheme.surface,
|
||||
padding: const EdgeInsets.symmetric(horizontal: 16),
|
||||
child: Row(
|
||||
children: [
|
||||
IconButton(
|
||||
icon: const Icon(Icons.arrow_back, size: 20),
|
||||
onPressed: () => context.go('/stock-out'),
|
||||
tooltip: '返回',
|
||||
),
|
||||
const SizedBox(width: 8),
|
||||
Text(_isEdit ? '修改出库单' : '新建出库单',
|
||||
style: const TextStyle(fontSize: 16, fontWeight: FontWeight.w600)),
|
||||
const Spacer(),
|
||||
// 窄屏:仅保留主操作「提交」,其余收进溢出菜单,避免按钮挤爆顶栏
|
||||
if (isMobile) ...[
|
||||
ElevatedButton(
|
||||
onPressed: _submitting ? null : () => _submit(false),
|
||||
child: _submitting
|
||||
? const SizedBox(
|
||||
width: 14,
|
||||
height: 14,
|
||||
child: CircularProgressIndicator(
|
||||
strokeWidth: 2, color: Colors.white))
|
||||
: const Text('提交'),
|
||||
return PopScope(
|
||||
canPop: false,
|
||||
onPopInvokedWithResult: (didPop, _) {
|
||||
if (!didPop) _handleExit();
|
||||
},
|
||||
child: Scaffold(
|
||||
backgroundColor: AppTheme.background,
|
||||
body: Column(
|
||||
children: [
|
||||
Container(
|
||||
height: 52,
|
||||
color: AppTheme.surface,
|
||||
padding: const EdgeInsets.symmetric(horizontal: 16),
|
||||
child: Row(
|
||||
children: [
|
||||
IconButton(
|
||||
icon: const Icon(Icons.arrow_back, size: 20),
|
||||
onPressed: _handleExit,
|
||||
tooltip: '返回',
|
||||
),
|
||||
PopupMenuButton<String>(
|
||||
onSelected: (v) {
|
||||
switch (v) {
|
||||
case 'draft':
|
||||
_submit(true);
|
||||
break;
|
||||
case 'print':
|
||||
_printOrder();
|
||||
break;
|
||||
case 'cancel':
|
||||
context.go('/stock-out');
|
||||
break;
|
||||
}
|
||||
},
|
||||
itemBuilder: (_) => [
|
||||
const PopupMenuItem(value: 'draft', child: Text('保存草稿')),
|
||||
if (_isEdit && _loadedOrder != null)
|
||||
const PopupMenuItem(value: 'print', child: Text('打印')),
|
||||
const PopupMenuItem(value: 'cancel', child: Text('取消')),
|
||||
const SizedBox(width: 8),
|
||||
Text(_isEdit ? '修改出库单' : '新建出库单',
|
||||
style: const TextStyle(
|
||||
fontSize: 16, fontWeight: FontWeight.w600)),
|
||||
const Spacer(),
|
||||
// 窄屏:仅保留主操作「提交」,其余收进溢出菜单,避免按钮挤爆顶栏
|
||||
if (isMobile) ...[
|
||||
ElevatedButton(
|
||||
onPressed: _submitting ? null : () => _submit(false),
|
||||
child: _submitting
|
||||
? const SizedBox(
|
||||
width: 14,
|
||||
height: 14,
|
||||
child: CircularProgressIndicator(
|
||||
strokeWidth: 2, color: Colors.white))
|
||||
: const Text('提交'),
|
||||
),
|
||||
PopupMenuButton<String>(
|
||||
onSelected: (v) {
|
||||
switch (v) {
|
||||
case 'draft':
|
||||
_submit(true);
|
||||
break;
|
||||
case 'print':
|
||||
_printOrder();
|
||||
break;
|
||||
case 'cancel':
|
||||
_handleExit();
|
||||
break;
|
||||
}
|
||||
},
|
||||
itemBuilder: (_) => [
|
||||
const PopupMenuItem(
|
||||
value: 'draft', child: Text('保存草稿')),
|
||||
if (_isEdit && _loadedOrder != null)
|
||||
const PopupMenuItem(
|
||||
value: 'print', child: Text('打印')),
|
||||
const PopupMenuItem(value: 'cancel', child: Text('取消')),
|
||||
],
|
||||
),
|
||||
] else ...[
|
||||
if (_isEdit && _loadedOrder != null) ...[
|
||||
OutlinedButton.icon(
|
||||
onPressed: _printOrder,
|
||||
icon: const Icon(Icons.print_outlined, size: 16),
|
||||
label: const Text('打印'),
|
||||
),
|
||||
const SizedBox(width: 8),
|
||||
],
|
||||
),
|
||||
] else ...[
|
||||
if (_isEdit && _loadedOrder != null) ...[
|
||||
OutlinedButton.icon(
|
||||
onPressed: _printOrder,
|
||||
icon: const Icon(Icons.print_outlined, size: 16),
|
||||
label: const Text('打印'),
|
||||
OutlinedButton(
|
||||
onPressed: _submitting ? null : () => _submit(true),
|
||||
child: const Text('保存草稿'),
|
||||
),
|
||||
const SizedBox(width: 8),
|
||||
ElevatedButton.icon(
|
||||
onPressed: _submitting ? null : () => _submit(false),
|
||||
icon: _submitting
|
||||
? const SizedBox(
|
||||
width: 14,
|
||||
height: 14,
|
||||
child: CircularProgressIndicator(
|
||||
strokeWidth: 2, color: Colors.white))
|
||||
: const Icon(Icons.send, size: 16),
|
||||
label: const Text('提交审核'),
|
||||
),
|
||||
const SizedBox(width: 8),
|
||||
OutlinedButton.icon(
|
||||
onPressed: _handleExit,
|
||||
icon: const Icon(Icons.cancel_outlined, size: 16),
|
||||
label: const Text('取消'),
|
||||
),
|
||||
],
|
||||
OutlinedButton(
|
||||
onPressed: _submitting ? null : () => _submit(true),
|
||||
child: const Text('保存草稿'),
|
||||
),
|
||||
const SizedBox(width: 8),
|
||||
ElevatedButton.icon(
|
||||
onPressed: _submitting ? null : () => _submit(false),
|
||||
icon: _submitting
|
||||
? const SizedBox(
|
||||
width: 14,
|
||||
height: 14,
|
||||
child: CircularProgressIndicator(
|
||||
strokeWidth: 2, color: Colors.white))
|
||||
: const Icon(Icons.send, size: 16),
|
||||
label: const Text('提交审核'),
|
||||
),
|
||||
const SizedBox(width: 8),
|
||||
OutlinedButton.icon(
|
||||
onPressed: () => context.go('/stock-out'),
|
||||
icon: const Icon(Icons.cancel_outlined, size: 16),
|
||||
label: const Text('取消'),
|
||||
),
|
||||
],
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
const Divider(height: 1),
|
||||
if (_loadingEdit)
|
||||
const Expanded(child: Center(child: CircularProgressIndicator())),
|
||||
if (!_loadingEdit)
|
||||
Expanded(
|
||||
child: SingleChildScrollView(
|
||||
padding: const EdgeInsets.all(16),
|
||||
child: Form(
|
||||
key: _formKey,
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Card(
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.all(16),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
const Text('基本信息',
|
||||
style: TextStyle(
|
||||
fontSize: 14,
|
||||
fontWeight: FontWeight.w600,
|
||||
color: AppTheme.primaryDark)),
|
||||
const SizedBox(height: 16),
|
||||
Wrap(
|
||||
spacing: 16,
|
||||
runSpacing: 16,
|
||||
children: [
|
||||
_FormField(
|
||||
label: '出库仓库',
|
||||
required: true,
|
||||
child: asyncWarehouses.when(
|
||||
loading: () => const LinearProgressIndicator(),
|
||||
error: (_, __) => const Text('加载失败'),
|
||||
data: (warehouses) => DropdownButtonFormField<int>(
|
||||
value: _warehouseId,
|
||||
hint: const Text('请选择仓库',
|
||||
style: TextStyle(fontSize: 13)),
|
||||
items: warehouses
|
||||
.map((w) => DropdownMenuItem(
|
||||
value: w.id,
|
||||
child: Text(w.name,
|
||||
style: const TextStyle(fontSize: 13))))
|
||||
.toList(),
|
||||
onChanged: (v) {
|
||||
setState(() => _warehouseId = v);
|
||||
if (v != null) _loadInventory(v);
|
||||
},
|
||||
validator: (v) => v == null ? '不能为空' : null,
|
||||
decoration: const InputDecoration(),
|
||||
),
|
||||
),
|
||||
),
|
||||
_FormField(
|
||||
label: '客户',
|
||||
child: asyncCustomers.when(
|
||||
loading: () => const LinearProgressIndicator(),
|
||||
error: (_, __) => const Text('加载失败'),
|
||||
data: (result) => DropdownButtonFormField<int>(
|
||||
value: _partnerId,
|
||||
hint: const Text('请选择客户',
|
||||
style: TextStyle(fontSize: 13)),
|
||||
items: result.data
|
||||
.map((p) => DropdownMenuItem(
|
||||
value: p.id,
|
||||
child: Text(p.name,
|
||||
style: const TextStyle(fontSize: 13))))
|
||||
.toList(),
|
||||
onChanged: (v) => setState(() => _partnerId = v),
|
||||
decoration: const InputDecoration(),
|
||||
),
|
||||
),
|
||||
),
|
||||
_FormField(
|
||||
label: '出库员',
|
||||
child: InputDecorator(
|
||||
decoration: const InputDecoration(),
|
||||
child: Text(
|
||||
currentUser?.realName ?? '-',
|
||||
style: const TextStyle(fontSize: 13),
|
||||
),
|
||||
),
|
||||
),
|
||||
_FormField(
|
||||
label: '出库日期',
|
||||
required: true,
|
||||
child: InkWell(
|
||||
onTap: _pickDate,
|
||||
child: InputDecorator(
|
||||
decoration: const InputDecoration(),
|
||||
child: Row(
|
||||
children: [
|
||||
Expanded(
|
||||
child: Text(
|
||||
'${_orderDate.year}-${_orderDate.month.toString().padLeft(2, '0')}-${_orderDate.day.toString().padLeft(2, '0')}',
|
||||
style: const TextStyle(fontSize: 13),
|
||||
),
|
||||
),
|
||||
const Icon(Icons.calendar_today,
|
||||
size: 16, color: AppTheme.textSecondary),
|
||||
],
|
||||
const Divider(height: 1),
|
||||
if (_loadingEdit)
|
||||
const Expanded(child: Center(child: CircularProgressIndicator())),
|
||||
if (!_loadingEdit)
|
||||
Expanded(
|
||||
child: SingleChildScrollView(
|
||||
padding: const EdgeInsets.all(16),
|
||||
child: Form(
|
||||
key: _formKey,
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Card(
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.all(16),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
const Text('基本信息',
|
||||
style: TextStyle(
|
||||
fontSize: 14,
|
||||
fontWeight: FontWeight.w600,
|
||||
color: AppTheme.primaryDark)),
|
||||
const SizedBox(height: 16),
|
||||
Wrap(
|
||||
spacing: 16,
|
||||
runSpacing: 16,
|
||||
children: [
|
||||
_FormField(
|
||||
label: '出库仓库',
|
||||
required: true,
|
||||
child: asyncWarehouses.when(
|
||||
loading: () =>
|
||||
const LinearProgressIndicator(),
|
||||
error: (_, __) => const Text('加载失败'),
|
||||
data: (warehouses) =>
|
||||
DropdownButtonFormField<int>(
|
||||
value: _warehouseId,
|
||||
hint: const Text('请选择仓库',
|
||||
style: TextStyle(fontSize: 13)),
|
||||
items: warehouses
|
||||
.map((w) => DropdownMenuItem(
|
||||
value: w.id,
|
||||
child: Text(w.name,
|
||||
style: const TextStyle(
|
||||
fontSize: 13))))
|
||||
.toList(),
|
||||
onChanged: (v) {
|
||||
setState(() => _warehouseId = v);
|
||||
if (v != null) _loadInventory(v);
|
||||
},
|
||||
validator: (v) =>
|
||||
v == null ? '不能为空' : null,
|
||||
decoration: const InputDecoration(),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
const SizedBox(height: 16),
|
||||
_FormField(
|
||||
label: '备注',
|
||||
width: double.infinity,
|
||||
child: TextFormField(
|
||||
controller: _remarkCtrl,
|
||||
maxLines: 2,
|
||||
decoration: const InputDecoration(
|
||||
hintText: '选填,如有特殊说明请在此注明',
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 12),
|
||||
Card(
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.all(16),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Row(
|
||||
children: [
|
||||
const Text('商品明细',
|
||||
style: TextStyle(
|
||||
fontSize: 14,
|
||||
fontWeight: FontWeight.w600,
|
||||
color: AppTheme.primaryDark)),
|
||||
const Spacer(),
|
||||
ElevatedButton.icon(
|
||||
onPressed: _addItem,
|
||||
icon: const Icon(Icons.add, size: 16),
|
||||
label: const Text('添加商品'),
|
||||
style: ElevatedButton.styleFrom(
|
||||
minimumSize: const Size(0, 32)),
|
||||
),
|
||||
],
|
||||
),
|
||||
const SizedBox(height: 12),
|
||||
// 窄屏:逐项卡片竖排,避免 9 列表格横向溢出;宽屏保持表格
|
||||
if (isMobile)
|
||||
Column(
|
||||
children: List.generate(
|
||||
_items.length,
|
||||
(i) => Padding(
|
||||
padding:
|
||||
const EdgeInsets.only(bottom: 10),
|
||||
child: _buildItemCard(i),
|
||||
)),
|
||||
)
|
||||
else
|
||||
Table(
|
||||
columnWidths: const {
|
||||
0: FixedColumnWidth(36), // 序号
|
||||
1: FlexColumnWidth(1.2), // 商品编码
|
||||
2: FlexColumnWidth(2.0), // 商品名称
|
||||
3: FlexColumnWidth(1.2), // 系列
|
||||
4: FlexColumnWidth(1.2), // 规格
|
||||
5: FlexColumnWidth(1.0), // 单价
|
||||
6: FlexColumnWidth(0.8), // 数量
|
||||
7: FlexColumnWidth(1.0), // 金额
|
||||
8: FixedColumnWidth(48), // 操作
|
||||
},
|
||||
children: [
|
||||
TableRow(
|
||||
decoration: const BoxDecoration(color: Color(0xFFF0F4FF)),
|
||||
children: [
|
||||
'序号', '商品编码', '商品名称', '系列', '规格', '单价', '数量', '金额', '操作',
|
||||
]
|
||||
.map((h) => Padding(
|
||||
padding: const EdgeInsets.symmetric(
|
||||
horizontal: 8, vertical: 10),
|
||||
child: Text(h,
|
||||
style: const TextStyle(
|
||||
fontSize: 13,
|
||||
fontWeight: FontWeight.w600,
|
||||
color: AppTheme.primaryDark)),
|
||||
))
|
||||
.toList(),
|
||||
_FormField(
|
||||
label: '客户',
|
||||
child: asyncCustomers.when(
|
||||
loading: () =>
|
||||
const LinearProgressIndicator(),
|
||||
error: (_, __) => const Text('加载失败'),
|
||||
data: (result) =>
|
||||
DropdownButtonFormField<int>(
|
||||
value: _partnerId,
|
||||
hint: const Text('请选择客户',
|
||||
style: TextStyle(fontSize: 13)),
|
||||
items: result.data
|
||||
.map((p) => DropdownMenuItem(
|
||||
value: p.id,
|
||||
child: Text(p.name,
|
||||
style: const TextStyle(
|
||||
fontSize: 13))))
|
||||
.toList(),
|
||||
onChanged: (v) =>
|
||||
setState(() => _partnerId = v),
|
||||
decoration: const InputDecoration(),
|
||||
),
|
||||
),
|
||||
),
|
||||
_FormField(
|
||||
label: '出库员',
|
||||
child: InputDecorator(
|
||||
decoration: const InputDecoration(),
|
||||
child: Text(
|
||||
currentUser?.realName ?? '-',
|
||||
style: const TextStyle(fontSize: 13),
|
||||
),
|
||||
),
|
||||
),
|
||||
_FormField(
|
||||
label: '出库日期',
|
||||
required: true,
|
||||
width: 320,
|
||||
child: DatePickerField(
|
||||
value: formatYmd(_orderDate),
|
||||
onChanged: (v) {
|
||||
final d = parseYmd(v);
|
||||
if (d != null)
|
||||
setState(() => _orderDate = d);
|
||||
},
|
||||
),
|
||||
),
|
||||
...List.generate(_items.length, (i) => _buildItemRow(i)),
|
||||
],
|
||||
),
|
||||
if (_items.isEmpty)
|
||||
const Padding(
|
||||
padding: EdgeInsets.symmetric(vertical: 24),
|
||||
child: Center(child: Text('暂无商品,点击"添加商品"从库存中选择',
|
||||
style: TextStyle(color: AppTheme.textSecondary, fontSize: 13))),
|
||||
const SizedBox(height: 16),
|
||||
_FormField(
|
||||
label: '备注',
|
||||
width: double.infinity,
|
||||
child: TextFormField(
|
||||
controller: _remarkCtrl,
|
||||
maxLines: 2,
|
||||
decoration: const InputDecoration(
|
||||
hintText: '选填,如有特殊说明请在此注明',
|
||||
),
|
||||
),
|
||||
),
|
||||
const Divider(height: 1),
|
||||
Padding(
|
||||
padding: const EdgeInsets.only(top: 12),
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.end,
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 12),
|
||||
Card(
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.all(16),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Row(
|
||||
children: [
|
||||
const Text('合计金额:',
|
||||
const Text('商品明细',
|
||||
style: TextStyle(
|
||||
fontSize: 14, fontWeight: FontWeight.w500)),
|
||||
Text(
|
||||
'¥${_totalAmount.toStringAsFixed(2)}',
|
||||
style: const TextStyle(
|
||||
fontSize: 18,
|
||||
fontWeight: FontWeight.w700,
|
||||
color: AppTheme.danger),
|
||||
fontSize: 14,
|
||||
fontWeight: FontWeight.w600,
|
||||
color: AppTheme.primaryDark)),
|
||||
const Spacer(),
|
||||
ElevatedButton.icon(
|
||||
onPressed: _addItem,
|
||||
icon: const Icon(Icons.add, size: 16),
|
||||
label: const Text('添加商品'),
|
||||
style: ElevatedButton.styleFrom(
|
||||
minimumSize: const Size(0, 32)),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
],
|
||||
const SizedBox(height: 12),
|
||||
// 窄屏:逐项卡片竖排,避免 9 列表格横向溢出;宽屏保持表格
|
||||
if (isMobile)
|
||||
Column(
|
||||
children: List.generate(
|
||||
_items.length,
|
||||
(i) => Padding(
|
||||
padding: const EdgeInsets.only(
|
||||
bottom: 10),
|
||||
child: _buildItemCard(i),
|
||||
)),
|
||||
)
|
||||
else
|
||||
Table(
|
||||
columnWidths: const {
|
||||
0: FixedColumnWidth(36), // 序号
|
||||
1: FlexColumnWidth(1.2), // 商品编码
|
||||
2: FlexColumnWidth(2.0), // 商品名称
|
||||
3: FlexColumnWidth(1.2), // 系列
|
||||
4: FlexColumnWidth(1.2), // 规格
|
||||
5: FlexColumnWidth(1.0), // 单价
|
||||
6: FlexColumnWidth(0.8), // 数量
|
||||
7: FlexColumnWidth(1.0), // 金额
|
||||
8: FixedColumnWidth(48), // 操作
|
||||
},
|
||||
children: [
|
||||
TableRow(
|
||||
decoration: const BoxDecoration(
|
||||
color: Color(0xFFF0F4FF)),
|
||||
children: [
|
||||
'序号',
|
||||
'商品编码',
|
||||
'商品名称',
|
||||
'系列',
|
||||
'规格',
|
||||
'单价',
|
||||
'数量',
|
||||
'金额',
|
||||
'操作',
|
||||
]
|
||||
.map((h) => Padding(
|
||||
padding: const EdgeInsets
|
||||
.symmetric(
|
||||
horizontal: 8,
|
||||
vertical: 10),
|
||||
child: Text(h,
|
||||
style: const TextStyle(
|
||||
fontSize: 13,
|
||||
fontWeight:
|
||||
FontWeight.w600,
|
||||
color: AppTheme
|
||||
.primaryDark)),
|
||||
))
|
||||
.toList(),
|
||||
),
|
||||
...List.generate(_items.length,
|
||||
(i) => _buildItemRow(i)),
|
||||
],
|
||||
),
|
||||
if (_items.isEmpty)
|
||||
const Padding(
|
||||
padding: EdgeInsets.symmetric(vertical: 24),
|
||||
child: Center(
|
||||
child: Text('暂无商品,点击"添加商品"从库存中选择',
|
||||
style: TextStyle(
|
||||
color: AppTheme.textSecondary,
|
||||
fontSize: 13))),
|
||||
),
|
||||
const Divider(height: 1),
|
||||
Padding(
|
||||
padding: const EdgeInsets.only(top: 12),
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.end,
|
||||
children: [
|
||||
const Text('合计金额:',
|
||||
style: TextStyle(
|
||||
fontSize: 14,
|
||||
fontWeight: FontWeight.w500)),
|
||||
Text(
|
||||
'¥${_totalAmount.toStringAsFixed(2)}',
|
||||
style: const TextStyle(
|
||||
fontSize: 18,
|
||||
fontWeight: FontWeight.w700,
|
||||
color: AppTheme.danger),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
@@ -640,26 +720,39 @@ class _StockOutFormScreenState extends ConsumerState<StockOutFormScreen> {
|
||||
),
|
||||
children: [
|
||||
// 序号
|
||||
_cell(Text('${index + 1}', style: const TextStyle(fontSize: 13, color: AppTheme.textSecondary))),
|
||||
_cell(Text('${index + 1}',
|
||||
style:
|
||||
const TextStyle(fontSize: 13, color: AppTheme.textSecondary))),
|
||||
// 商品编码
|
||||
_cell(Text(item.productCode, style: const TextStyle(fontSize: 12, color: AppTheme.textSecondary))),
|
||||
_cell(Text(item.productCode,
|
||||
style:
|
||||
const TextStyle(fontSize: 12, color: AppTheme.textSecondary))),
|
||||
// 商品名称
|
||||
_cell(Text(item.productName, style: const TextStyle(fontSize: 13, fontWeight: FontWeight.w500), overflow: TextOverflow.ellipsis)),
|
||||
_cell(Text(item.productName,
|
||||
style: const TextStyle(fontSize: 13, fontWeight: FontWeight.w500),
|
||||
overflow: TextOverflow.ellipsis)),
|
||||
// 系列
|
||||
_cell(Text(item.series, style: const TextStyle(fontSize: 12, color: AppTheme.textSecondary))),
|
||||
_cell(Text(item.series,
|
||||
style:
|
||||
const TextStyle(fontSize: 12, color: AppTheme.textSecondary))),
|
||||
// 规格
|
||||
_cell(Text(item.spec, style: const TextStyle(fontSize: 12, color: AppTheme.textSecondary))),
|
||||
_cell(Text(item.spec,
|
||||
style:
|
||||
const TextStyle(fontSize: 12, color: AppTheme.textSecondary))),
|
||||
// 单价
|
||||
_cell(Text(price > 0 ? '¥${price.toStringAsFixed(2)}' : '-', style: const TextStyle(fontSize: 13))),
|
||||
_cell(Text(price > 0 ? '¥${price.toStringAsFixed(2)}' : '-',
|
||||
style: const TextStyle(fontSize: 13))),
|
||||
// 数量
|
||||
Padding(padding: const EdgeInsets.all(4), child: _qtyField(item)),
|
||||
// 金额
|
||||
_cell(Text('¥${amount.toStringAsFixed(2)}', style: const TextStyle(fontSize: 13, fontWeight: FontWeight.w500))),
|
||||
_cell(Text('¥${amount.toStringAsFixed(2)}',
|
||||
style: const TextStyle(fontSize: 13, fontWeight: FontWeight.w500))),
|
||||
// 操作
|
||||
Padding(
|
||||
padding: const EdgeInsets.symmetric(horizontal: 4, vertical: 4),
|
||||
child: IconButton(
|
||||
icon: const Icon(Icons.delete_outline, size: 18, color: AppTheme.danger),
|
||||
icon: const Icon(Icons.delete_outline,
|
||||
size: 18, color: AppTheme.danger),
|
||||
onPressed: () => _removeItem(index),
|
||||
tooltip: '删除',
|
||||
padding: EdgeInsets.zero,
|
||||
@@ -676,7 +769,9 @@ class _StockOutFormScreenState extends ConsumerState<StockOutFormScreen> {
|
||||
decoration: const InputDecoration(hintText: '0', isDense: true),
|
||||
style: const TextStyle(fontSize: 13),
|
||||
keyboardType: const TextInputType.numberWithOptions(decimal: true),
|
||||
inputFormatters: [FilteringTextInputFormatter.allow(RegExp(r'^\d+\.?\d{0,2}'))],
|
||||
inputFormatters: [
|
||||
FilteringTextInputFormatter.allow(RegExp(r'^\d+\.?\d{0,2}'))
|
||||
],
|
||||
onChanged: (_) => setState(() {}),
|
||||
validator: (v) {
|
||||
if (v == null || v.isEmpty) return '不能为空';
|
||||
@@ -695,9 +790,11 @@ class _StockOutFormScreenState extends ConsumerState<StockOutFormScreen> {
|
||||
|
||||
return MobileListCard(
|
||||
title: Text(item.productName),
|
||||
subtitle: item.productCode.isNotEmpty ? Text('编码 ${item.productCode}') : null,
|
||||
subtitle:
|
||||
item.productCode.isNotEmpty ? Text('编码 ${item.productCode}') : null,
|
||||
trailing: IconButton(
|
||||
icon: const Icon(Icons.delete_outline, size: 20, color: AppTheme.danger),
|
||||
icon:
|
||||
const Icon(Icons.delete_outline, size: 20, color: AppTheme.danger),
|
||||
onPressed: () => _removeItem(index),
|
||||
tooltip: '删除',
|
||||
visualDensity: VisualDensity.compact,
|
||||
@@ -719,7 +816,8 @@ class _StockOutFormScreenState extends ConsumerState<StockOutFormScreen> {
|
||||
|
||||
Widget _buildInventoryCell(int? productId, [double? available]) {
|
||||
if (productId == null) {
|
||||
return _cell(const Text('-', style: TextStyle(color: AppTheme.textSecondary, fontSize: 13)));
|
||||
return _cell(const Text('-',
|
||||
style: TextStyle(color: AppTheme.textSecondary, fontSize: 13)));
|
||||
}
|
||||
final qty = available ?? _inventoryMap[productId];
|
||||
final text = qty != null
|
||||
@@ -730,18 +828,9 @@ class _StockOutFormScreenState extends ConsumerState<StockOutFormScreen> {
|
||||
: qty <= 0
|
||||
? AppTheme.danger
|
||||
: AppTheme.primary;
|
||||
return _cell(Text(text, style: TextStyle(fontSize: 13, fontWeight: FontWeight.w700, color: color)));
|
||||
}
|
||||
|
||||
Future<void> _pickDate() async {
|
||||
final date = await showDatePicker(
|
||||
context: context,
|
||||
initialDate: _orderDate,
|
||||
firstDate: DateTime(2020),
|
||||
lastDate: DateTime(2030),
|
||||
locale: const Locale('zh', 'CN'),
|
||||
);
|
||||
if (date != null) setState(() => _orderDate = date);
|
||||
return _cell(Text(text,
|
||||
style: TextStyle(
|
||||
fontSize: 13, fontWeight: FontWeight.w700, color: color)));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -763,9 +852,7 @@ class _FormField extends StatelessWidget {
|
||||
// 窄屏(手机)字段占满整行,便于点选;宽屏沿用固定宽度配合 Wrap 多列。
|
||||
final effectiveWidth = width == double.infinity
|
||||
? double.infinity
|
||||
: (context.isMobile
|
||||
? MediaQuery.sizeOf(context).width - 64
|
||||
: width);
|
||||
: (context.isMobile ? MediaQuery.sizeOf(context).width - 64 : width);
|
||||
return SizedBox(
|
||||
width: effectiveWidth,
|
||||
child: Column(
|
||||
@@ -774,9 +861,11 @@ class _FormField extends StatelessWidget {
|
||||
Row(
|
||||
children: [
|
||||
if (required)
|
||||
const Text('*', style: TextStyle(color: AppTheme.danger, fontSize: 13)),
|
||||
const Text('*',
|
||||
style: TextStyle(color: AppTheme.danger, fontSize: 13)),
|
||||
Text(label,
|
||||
style: const TextStyle(fontSize: 13, color: AppTheme.textSecondary)),
|
||||
style: const TextStyle(
|
||||
fontSize: 13, color: AppTheme.textSecondary)),
|
||||
],
|
||||
),
|
||||
const SizedBox(height: 6),
|
||||
@@ -820,7 +909,8 @@ class _InventoryPickerDialogState extends State<_InventoryPickerDialog> {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final filtered = _filtered;
|
||||
final allSelected = filtered.isNotEmpty && filtered.every((e) => _selected.contains(e.productId));
|
||||
final allSelected = filtered.isNotEmpty &&
|
||||
filtered.every((e) => _selected.contains(e.productId));
|
||||
|
||||
return Dialog(
|
||||
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(8)),
|
||||
@@ -835,16 +925,19 @@ class _InventoryPickerDialogState extends State<_InventoryPickerDialog> {
|
||||
child: Row(
|
||||
children: [
|
||||
const Text('选择商品',
|
||||
style: TextStyle(fontSize: 15, fontWeight: FontWeight.w600)),
|
||||
style:
|
||||
TextStyle(fontSize: 15, fontWeight: FontWeight.w600)),
|
||||
const SizedBox(width: 8),
|
||||
Text('已选 ${_selected.length} 个',
|
||||
style: const TextStyle(fontSize: 13, color: AppTheme.textSecondary)),
|
||||
style: const TextStyle(
|
||||
fontSize: 13, color: AppTheme.textSecondary)),
|
||||
const Spacer(),
|
||||
IconButton(
|
||||
icon: const Icon(Icons.close, size: 20),
|
||||
onPressed: () => Navigator.pop(context),
|
||||
padding: EdgeInsets.zero,
|
||||
constraints: const BoxConstraints(minWidth: 32, minHeight: 32),
|
||||
constraints:
|
||||
const BoxConstraints(minWidth: 32, minHeight: 32),
|
||||
),
|
||||
],
|
||||
),
|
||||
@@ -859,7 +952,8 @@ class _InventoryPickerDialogState extends State<_InventoryPickerDialog> {
|
||||
hintText: '搜索商品编码、名称或系列',
|
||||
prefixIcon: Icon(Icons.search, size: 18),
|
||||
isDense: true,
|
||||
contentPadding: EdgeInsets.symmetric(horizontal: 12, vertical: 10),
|
||||
contentPadding:
|
||||
EdgeInsets.symmetric(horizontal: 12, vertical: 10),
|
||||
),
|
||||
onChanged: (v) => setState(() => _search = v),
|
||||
),
|
||||
@@ -978,7 +1072,8 @@ class _InventoryPickerDialogState extends State<_InventoryPickerDialog> {
|
||||
? null
|
||||
: () {
|
||||
final result = widget.items
|
||||
.where((item) => _selected.contains(item.productId))
|
||||
.where((item) =>
|
||||
_selected.contains(item.productId))
|
||||
.toList();
|
||||
Navigator.pop(context, result);
|
||||
},
|
||||
@@ -1002,7 +1097,8 @@ class _InventoryPickerDialogState extends State<_InventoryPickerDialog> {
|
||||
color: AppTheme.primaryDark)),
|
||||
);
|
||||
|
||||
Widget _dataCell(String text, double width, {Color? color, bool bold = false}) =>
|
||||
Widget _dataCell(String text, double width,
|
||||
{Color? color, bool bold = false}) =>
|
||||
SizedBox(
|
||||
width: width,
|
||||
child: Text(
|
||||
|
||||
@@ -0,0 +1,179 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import '../core/theme/app_theme.dart';
|
||||
import '../core/utils/date_util.dart';
|
||||
|
||||
/// 年/月/日 三个可编辑下拉框的日期选择组件,替代原生 showDatePicker。
|
||||
///
|
||||
/// - 每个下拉是 Material 3 `DropdownMenu`:点开可选,键入数字即过滤定位
|
||||
/// (年/月/日均为有界域,条目覆盖全范围,等价于「手动输入数字」)。
|
||||
/// - 改月/年时把超出当月的「日」自动 clamp 回当月最大值。
|
||||
/// - 值以 `yyyy-MM-dd` 字符串进出([value] / [onChanged]);三者未填齐时回调 null。
|
||||
class DatePickerField extends StatefulWidget {
|
||||
final String? value; // yyyy-MM-dd
|
||||
final ValueChanged<String?> onChanged;
|
||||
final bool isRequired;
|
||||
final String? label;
|
||||
|
||||
const DatePickerField({
|
||||
super.key,
|
||||
this.value,
|
||||
required this.onChanged,
|
||||
this.isRequired = false,
|
||||
this.label,
|
||||
});
|
||||
|
||||
@override
|
||||
State<DatePickerField> createState() => _DatePickerFieldState();
|
||||
}
|
||||
|
||||
class _DatePickerFieldState extends State<DatePickerField> {
|
||||
int? _year;
|
||||
int? _month;
|
||||
int? _day;
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
_parse(widget.value);
|
||||
}
|
||||
|
||||
@override
|
||||
void didUpdateWidget(DatePickerField old) {
|
||||
super.didUpdateWidget(old);
|
||||
if (old.value != widget.value) {
|
||||
_parse(widget.value);
|
||||
}
|
||||
}
|
||||
|
||||
void _parse(String? v) {
|
||||
final d = parseYmd(v);
|
||||
_year = d?.year;
|
||||
_month = d?.month;
|
||||
_day = d?.day;
|
||||
}
|
||||
|
||||
int get _daysInMonth {
|
||||
final y = _year ?? DateTime.now().year;
|
||||
final m = _month ?? 1;
|
||||
return DateTime(y, m + 1, 0).day; // 下月第 0 天 = 当月最后一天
|
||||
}
|
||||
|
||||
String? get _composed => composeYmd(_year, _month, _day);
|
||||
|
||||
void _emit(FormFieldState<String> field) {
|
||||
// 改月/年后把超界的日 clamp 回当月最大值(与 composeYmd 一致,State 同步显示)
|
||||
if (_day != null && _day! > _daysInMonth) {
|
||||
_day = _daysInMonth;
|
||||
}
|
||||
final v = _composed;
|
||||
field.didChange(v);
|
||||
widget.onChanged(v);
|
||||
setState(() {});
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final now = DateTime.now();
|
||||
final years = [for (var y = now.year - 20; y <= now.year + 5; y++) y];
|
||||
final months = [for (var m = 1; m <= 12; m++) m];
|
||||
final days = [for (var d = 1; d <= _daysInMonth; d++) d];
|
||||
|
||||
// 每个下拉用 Expanded 撑满分得的宽度(expandedInsets:zero 让 DropdownMenu 填满父级),
|
||||
// trailingIcon 用紧凑小箭头,避免默认大图标按钮挤掉数字(曾导致「2026」被裁成「007」)。
|
||||
Widget menu({
|
||||
required String label,
|
||||
required int? value,
|
||||
required List<int> items,
|
||||
required ValueChanged<int?> onSel,
|
||||
required FormFieldState<String> field,
|
||||
}) {
|
||||
return DropdownMenu<int>(
|
||||
initialSelection: value,
|
||||
label: Text(label, style: const TextStyle(fontSize: 11)),
|
||||
enableFilter: true,
|
||||
requestFocusOnTap: true,
|
||||
textStyle: const TextStyle(fontSize: 13),
|
||||
menuHeight: 280,
|
||||
expandedInsets: EdgeInsets.zero,
|
||||
trailingIcon: const Icon(Icons.arrow_drop_down, size: 18),
|
||||
selectedTrailingIcon: const Icon(Icons.arrow_drop_up, size: 18),
|
||||
inputDecorationTheme: const InputDecorationTheme(
|
||||
isDense: true,
|
||||
contentPadding: EdgeInsets.symmetric(horizontal: 6, vertical: 8),
|
||||
),
|
||||
dropdownMenuEntries: [
|
||||
for (final i in items) DropdownMenuEntry<int>(value: i, label: '$i'),
|
||||
],
|
||||
onSelected: onSel,
|
||||
);
|
||||
}
|
||||
|
||||
return FormField<String>(
|
||||
initialValue: widget.value,
|
||||
validator: widget.isRequired
|
||||
? (v) => (_composed == null ? '请选择日期' : null)
|
||||
: null,
|
||||
builder: (field) {
|
||||
return Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: [
|
||||
Row(
|
||||
children: [
|
||||
Expanded(
|
||||
flex: 5,
|
||||
child: menu(
|
||||
label: '年',
|
||||
value: _year,
|
||||
items: years,
|
||||
field: field,
|
||||
onSel: (v) {
|
||||
_year = v;
|
||||
_emit(field);
|
||||
},
|
||||
),
|
||||
),
|
||||
const SizedBox(width: 6),
|
||||
Expanded(
|
||||
flex: 4,
|
||||
child: menu(
|
||||
label: '月',
|
||||
value: _month,
|
||||
items: months,
|
||||
field: field,
|
||||
onSel: (v) {
|
||||
_month = v;
|
||||
_emit(field);
|
||||
},
|
||||
),
|
||||
),
|
||||
const SizedBox(width: 6),
|
||||
Expanded(
|
||||
flex: 4,
|
||||
child: menu(
|
||||
label: '日',
|
||||
value: _day,
|
||||
items: days,
|
||||
field: field,
|
||||
onSel: (v) {
|
||||
_day = v;
|
||||
_emit(field);
|
||||
},
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
if (field.errorText != null)
|
||||
Padding(
|
||||
padding: const EdgeInsets.only(left: 12, top: 4),
|
||||
child: Text(
|
||||
field.errorText!,
|
||||
style: const TextStyle(fontSize: 11, color: AppTheme.danger),
|
||||
),
|
||||
),
|
||||
],
|
||||
);
|
||||
},
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -13,8 +13,9 @@ class OptionItem {
|
||||
late final String _initials;
|
||||
|
||||
OptionItem({required this.id, required this.name, this.code}) {
|
||||
_fullPinyin = PinyinHelper.getPinyinE(name, separator: '', defPinyin: '').toLowerCase();
|
||||
_initials = PinyinHelper.getShortPinyin(name).toLowerCase();
|
||||
_fullPinyin = PinyinHelper.getPinyinE(name, separator: '', defPinyin: '')
|
||||
.toLowerCase();
|
||||
_initials = PinyinHelper.getShortPinyin(name).toLowerCase();
|
||||
}
|
||||
|
||||
bool matches(String kw) {
|
||||
@@ -36,6 +37,10 @@ class SearchableOptionField extends StatelessWidget {
|
||||
final bool isRequired;
|
||||
final bool isDense;
|
||||
|
||||
/// 可选:搜索无匹配时「新增到基础数据」。回调收到当前关键字(用户可在确认框里改),
|
||||
/// 创建成功返回新选项 id(自动选中),失败/取消返回 null。为空则不显示新增入口。
|
||||
final Future<int?> Function(String keyword)? onCreate;
|
||||
|
||||
const SearchableOptionField({
|
||||
super.key,
|
||||
required this.options,
|
||||
@@ -45,6 +50,7 @@ class SearchableOptionField extends StatelessWidget {
|
||||
required this.onChanged,
|
||||
this.isRequired = false,
|
||||
this.isDense = true,
|
||||
this.onCreate,
|
||||
});
|
||||
|
||||
String get _displayText {
|
||||
@@ -59,6 +65,7 @@ class SearchableOptionField extends StatelessWidget {
|
||||
title: dialogTitle,
|
||||
options: options,
|
||||
selectedId: selectedId,
|
||||
onCreate: onCreate,
|
||||
),
|
||||
);
|
||||
// result == -1 means "clear selection"
|
||||
@@ -86,9 +93,11 @@ class SearchableOptionField extends StatelessWidget {
|
||||
suffixIcon: selected
|
||||
? GestureDetector(
|
||||
onTap: () => onChanged(null),
|
||||
child: const Icon(Icons.close, size: 14, color: AppTheme.textSecondary),
|
||||
child: const Icon(Icons.close,
|
||||
size: 14, color: AppTheme.textSecondary),
|
||||
)
|
||||
: const Icon(Icons.arrow_drop_down, size: 16, color: AppTheme.textSecondary),
|
||||
: const Icon(Icons.arrow_drop_down,
|
||||
size: 16, color: AppTheme.textSecondary),
|
||||
),
|
||||
isEmpty: !selected,
|
||||
child: Text(
|
||||
@@ -110,7 +119,13 @@ class _SearchDialog extends StatefulWidget {
|
||||
final String title;
|
||||
final List<OptionItem> options;
|
||||
final int? selectedId;
|
||||
const _SearchDialog({required this.title, required this.options, this.selectedId});
|
||||
final Future<int?> Function(String keyword)? onCreate;
|
||||
const _SearchDialog({
|
||||
required this.title,
|
||||
required this.options,
|
||||
this.selectedId,
|
||||
this.onCreate,
|
||||
});
|
||||
|
||||
@override
|
||||
State<_SearchDialog> createState() => _SearchDialogState();
|
||||
@@ -119,6 +134,7 @@ class _SearchDialog extends StatefulWidget {
|
||||
class _SearchDialogState extends State<_SearchDialog> {
|
||||
final _ctrl = TextEditingController();
|
||||
String _keyword = '';
|
||||
bool _creating = false;
|
||||
|
||||
@override
|
||||
void dispose() {
|
||||
@@ -126,11 +142,68 @@ class _SearchDialogState extends State<_SearchDialog> {
|
||||
super.dispose();
|
||||
}
|
||||
|
||||
/// 「新增到基础数据」流程:确认(名称可改)→ onCreate → 成功则带新 id 关闭搜索框。
|
||||
Future<void> _createFlow() async {
|
||||
final kw = _keyword.trim();
|
||||
if (widget.onCreate == null || kw.isEmpty) return;
|
||||
final nameCtrl = TextEditingController(text: kw);
|
||||
final confirmed = await showAppDialog<bool>(
|
||||
context: context,
|
||||
builder: (_) => AlertDialog(
|
||||
title: const Text('新增到基础数据', style: TextStyle(fontSize: 16)),
|
||||
content: SizedBox(
|
||||
width: context.dialogWidth(320),
|
||||
child: TextField(
|
||||
controller: nameCtrl,
|
||||
autofocus: true,
|
||||
decoration: const InputDecoration(labelText: '名称', isDense: true),
|
||||
),
|
||||
),
|
||||
actions: [
|
||||
TextButton(
|
||||
onPressed: () => Navigator.of(context).pop(false),
|
||||
child: const Text('取消'),
|
||||
),
|
||||
TextButton(
|
||||
onPressed: () => Navigator.of(context).pop(true),
|
||||
child: const Text('确认新增'),
|
||||
),
|
||||
],
|
||||
),
|
||||
);
|
||||
if (confirmed != true) return;
|
||||
final name = nameCtrl.text.trim();
|
||||
if (name.isEmpty) return;
|
||||
setState(() => _creating = true);
|
||||
try {
|
||||
final newId = await widget.onCreate!(name);
|
||||
if (!mounted) return;
|
||||
if (newId != null) {
|
||||
Navigator.of(context).pop(newId); // 回填并自动选中
|
||||
} else {
|
||||
setState(() => _creating = false);
|
||||
ScaffoldMessenger.of(context).showSnackBar(
|
||||
const SnackBar(content: Text('新增失败,请重试')),
|
||||
);
|
||||
}
|
||||
} catch (e) {
|
||||
if (!mounted) return;
|
||||
setState(() => _creating = false);
|
||||
ScaffoldMessenger.of(context).showSnackBar(
|
||||
SnackBar(content: Text('新增失败:$e')),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final filtered = _keyword.isEmpty
|
||||
? widget.options
|
||||
: widget.options.where((o) => o.matches(_keyword)).toList();
|
||||
final kw = _keyword.trim();
|
||||
final hasExact =
|
||||
widget.options.any((o) => o.name.toLowerCase() == kw.toLowerCase());
|
||||
final canCreate = widget.onCreate != null && kw.isNotEmpty && !hasExact;
|
||||
|
||||
return AlertDialog(
|
||||
title: Text(widget.title, style: const TextStyle(fontSize: 16)),
|
||||
@@ -153,8 +226,12 @@ class _SearchDialogState extends State<_SearchDialog> {
|
||||
const SizedBox(height: 8),
|
||||
Expanded(
|
||||
child: filtered.isEmpty
|
||||
? const Center(
|
||||
child: Text('无匹配结果', style: TextStyle(color: AppTheme.textSecondary)))
|
||||
? Center(
|
||||
child: Text(
|
||||
canCreate ? '无匹配结果,可新增到基础数据' : '无匹配结果',
|
||||
style: const TextStyle(color: AppTheme.textSecondary),
|
||||
),
|
||||
)
|
||||
: ListView.builder(
|
||||
itemCount: filtered.length,
|
||||
itemBuilder: (_, i) {
|
||||
@@ -162,17 +239,36 @@ class _SearchDialogState extends State<_SearchDialog> {
|
||||
final isSelected = opt.id == widget.selectedId;
|
||||
return ListTile(
|
||||
dense: true,
|
||||
title: Text(opt.name, style: const TextStyle(fontSize: 13)),
|
||||
title: Text(opt.name,
|
||||
style: const TextStyle(fontSize: 13)),
|
||||
subtitle: opt.code != null && opt.code!.isNotEmpty
|
||||
? Text(opt.code!, style: const TextStyle(fontSize: 11))
|
||||
? Text(opt.code!,
|
||||
style: const TextStyle(fontSize: 11))
|
||||
: null,
|
||||
selected: isSelected,
|
||||
selectedTileColor: AppTheme.primary.withValues(alpha: 0.08),
|
||||
selectedTileColor:
|
||||
AppTheme.primary.withValues(alpha: 0.08),
|
||||
onTap: () => Navigator.of(context).pop(opt.id),
|
||||
);
|
||||
},
|
||||
),
|
||||
),
|
||||
if (canCreate)
|
||||
Align(
|
||||
alignment: Alignment.centerLeft,
|
||||
child: TextButton.icon(
|
||||
onPressed: _creating ? null : _createFlow,
|
||||
icon: _creating
|
||||
? const SizedBox(
|
||||
width: 14,
|
||||
height: 14,
|
||||
child: CircularProgressIndicator(strokeWidth: 2),
|
||||
)
|
||||
: const Icon(Icons.add, size: 16),
|
||||
label: Text('新增「$kw」到基础数据',
|
||||
style: const TextStyle(fontSize: 12)),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
@@ -180,7 +276,8 @@ class _SearchDialogState extends State<_SearchDialog> {
|
||||
if (widget.selectedId != null)
|
||||
TextButton(
|
||||
onPressed: () => Navigator.of(context).pop(-1),
|
||||
child: const Text('清除选择', style: TextStyle(color: AppTheme.textSecondary)),
|
||||
child: const Text('清除选择',
|
||||
style: TextStyle(color: AppTheme.textSecondary)),
|
||||
),
|
||||
TextButton(
|
||||
onPressed: () => Navigator.of(context).pop(null),
|
||||
|
||||
@@ -0,0 +1,56 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_test/flutter_test.dart';
|
||||
import 'package:jiu_client/core/utils/date_util.dart';
|
||||
import 'package:jiu_client/widgets/date_picker_field.dart';
|
||||
|
||||
void main() {
|
||||
group('date_util', () {
|
||||
test('formatYmd 补零', () {
|
||||
expect(formatYmd(DateTime(2026, 6, 9)), '2026-06-09');
|
||||
expect(formatYmd(DateTime(2026, 12, 31)), '2026-12-31');
|
||||
});
|
||||
test('parseYmd 解析/容错', () {
|
||||
expect(parseYmd('2026-06-19'), DateTime(2026, 6, 19));
|
||||
expect(parseYmd('2026-06-19T08:00:00'), DateTime(2026, 6, 19));
|
||||
expect(parseYmd(null), isNull);
|
||||
expect(parseYmd(''), isNull);
|
||||
});
|
||||
test('composeYmd 正常组合', () {
|
||||
expect(composeYmd(2026, 6, 15), '2026-06-15');
|
||||
});
|
||||
test('composeYmd 把超界的日 clamp 回当月最大值', () {
|
||||
expect(composeYmd(2026, 2, 31), '2026-02-28'); // 平年 2 月
|
||||
expect(composeYmd(2024, 2, 31), '2024-02-29'); // 闰年 2 月
|
||||
expect(composeYmd(2026, 4, 31), '2026-04-30'); // 4 月 30 天
|
||||
});
|
||||
test('composeYmd 任一为空返回 null', () {
|
||||
expect(composeYmd(null, 6, 15), isNull);
|
||||
expect(composeYmd(2026, null, 15), isNull);
|
||||
expect(composeYmd(2026, 6, null), isNull);
|
||||
});
|
||||
});
|
||||
|
||||
group('DatePickerField', () {
|
||||
testWidgets('渲染三个年/月/日下拉框', (tester) async {
|
||||
await tester.pumpWidget(MaterialApp(
|
||||
home: Scaffold(
|
||||
body: DatePickerField(value: '2026-06-19', onChanged: (_) {}),
|
||||
),
|
||||
));
|
||||
await tester.pumpAndSettle();
|
||||
expect(find.byType(DropdownMenu<int>), findsNWidgets(3));
|
||||
});
|
||||
|
||||
testWidgets('初始值回显到三个下拉框', (tester) async {
|
||||
await tester.pumpWidget(MaterialApp(
|
||||
home: Scaffold(
|
||||
body: DatePickerField(value: '2026-06-19', onChanged: (_) {}),
|
||||
),
|
||||
));
|
||||
await tester.pumpAndSettle();
|
||||
expect(find.widgetWithText(DropdownMenu<int>, '2026'), findsOneWidget);
|
||||
expect(find.widgetWithText(DropdownMenu<int>, '6'), findsOneWidget);
|
||||
expect(find.widgetWithText(DropdownMenu<int>, '19'), findsOneWidget);
|
||||
});
|
||||
});
|
||||
}
|
||||
@@ -0,0 +1,59 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_test/flutter_test.dart';
|
||||
import 'package:jiu_client/widgets/searchable_option_field.dart';
|
||||
|
||||
void main() {
|
||||
Widget host({
|
||||
required ValueChanged<int?> onChanged,
|
||||
Future<int?> Function(String)? onCreate,
|
||||
}) {
|
||||
return MaterialApp(
|
||||
home: Scaffold(
|
||||
body: SearchableOptionField(
|
||||
options: [OptionItem(id: 1, name: '53度')],
|
||||
selectedId: null,
|
||||
hint: '选择系列',
|
||||
dialogTitle: '选择系列',
|
||||
onChanged: onChanged,
|
||||
onCreate: onCreate,
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
testWidgets('搜不到时显示「新增到基础数据」入口', (tester) async {
|
||||
await tester.pumpWidget(host(onChanged: (_) {}, onCreate: (_) async => 99));
|
||||
// 打开搜索对话框
|
||||
await tester.tap(find.byType(SearchableOptionField));
|
||||
await tester.pumpAndSettle();
|
||||
// 输入不存在的关键字
|
||||
await tester.enterText(find.byType(TextField).first, '52度');
|
||||
await tester.pumpAndSettle();
|
||||
expect(find.textContaining('新增「52度」到基础数据'), findsOneWidget);
|
||||
});
|
||||
|
||||
testWidgets('确认新增后回填选中新 id', (tester) async {
|
||||
int? selected;
|
||||
await tester.pumpWidget(
|
||||
host(onChanged: (v) => selected = v, onCreate: (_) async => 99));
|
||||
await tester.tap(find.byType(SearchableOptionField));
|
||||
await tester.pumpAndSettle();
|
||||
await tester.enterText(find.byType(TextField).first, '52度');
|
||||
await tester.pumpAndSettle();
|
||||
await tester.tap(find.textContaining('新增「52度」到基础数据'));
|
||||
await tester.pumpAndSettle();
|
||||
// 确认框
|
||||
await tester.tap(find.text('确认新增'));
|
||||
await tester.pumpAndSettle();
|
||||
expect(selected, 99);
|
||||
});
|
||||
|
||||
testWidgets('未提供 onCreate 时不显示新增入口', (tester) async {
|
||||
await tester.pumpWidget(host(onChanged: (_) {}));
|
||||
await tester.tap(find.byType(SearchableOptionField));
|
||||
await tester.pumpAndSettle();
|
||||
await tester.enterText(find.byType(TextField).first, '52度');
|
||||
await tester.pumpAndSettle();
|
||||
expect(find.textContaining('新增'), findsNothing);
|
||||
});
|
||||
}
|
||||
@@ -1,3 +1,9 @@
|
||||
# 粗粒度限流区(按客户端 IP):仅作未鉴权公开接口的最外层泄洪,阈值远高于正常使用,
|
||||
# 真正的多维限流在后端 Go 中间件。本文件以 conf.d 形式 include 进 http{} 上下文,
|
||||
# 故 limit_req_zone 放在 server{} 之外。10m 约可容纳 16 万个 IP 的状态。
|
||||
limit_req_zone $binary_remote_addr zone=jiu_pub:10m rate=10r/s;
|
||||
limit_req_status 429;
|
||||
|
||||
server {
|
||||
listen 127.0.0.1:8445 ssl;
|
||||
server_name jiu.51yanmei.com;
|
||||
@@ -24,6 +30,16 @@ server {
|
||||
proxy_read_timeout 300s;
|
||||
}
|
||||
|
||||
# 未鉴权公开/登录接口:加最外层 per-IP 限流(鉴权后的业务 API 不在此限,交后端按店限流)。
|
||||
# 须定义在通用 /api 正则之前(nginx 正则 location 按书写顺序首个命中者生效)。
|
||||
location ~ ^/api/v1/(public|auth)/ {
|
||||
limit_req zone=jiu_pub burst=20 nodelay;
|
||||
proxy_pass http://127.0.0.1:8080;
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_read_timeout 30s;
|
||||
}
|
||||
|
||||
# API 反向代理
|
||||
location ~ ^/(api|health|version) {
|
||||
proxy_pass http://127.0.0.1:8080;
|
||||
@@ -49,6 +65,7 @@ server {
|
||||
|
||||
# 公开商品详情页(扫码跳转)→ 后端注入 OG 标签后返回 Flutter index.html
|
||||
location ~ ^/product/ {
|
||||
limit_req zone=jiu_pub burst=20 nodelay;
|
||||
proxy_pass http://127.0.0.1:8080;
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
@@ -58,6 +75,7 @@ server {
|
||||
# Flutter 路由会把 /product/:id 重写为 /app/product/:id(base-href=/app/)
|
||||
# 分享此 URL 时微信爬虫也需要 OG 标签 → 去掉 /app 前缀后转发后端
|
||||
location ~ ^/app/product/ {
|
||||
limit_req zone=jiu_pub burst=20 nodelay;
|
||||
rewrite ^/app(/product/.+)$ $1 break;
|
||||
proxy_pass http://127.0.0.1:8080;
|
||||
proxy_set_header Host $host;
|
||||
|
||||
Reference in New Issue
Block a user