Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fb1e637ce4 | |||
| 7f3261a4a9 | |||
| bcc02a2f09 | |||
| 50b5c9fccb |
@@ -5,6 +5,12 @@ 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/),
|
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).
|
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-20
|
## [1.0.62] - 2026-06-20
|
||||||
|
|
||||||
### 改进
|
### 改进
|
||||||
|
|||||||
@@ -5,6 +5,25 @@
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
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).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [1.0.67] - 2026-06-20
|
||||||
|
|
||||||
|
### 修复
|
||||||
|
- 历史导入单审核入库后,库存里商品显示为「历史导入占位」、按真实名搜不到的问题:审核生成库存时改用单据明细自带的真实商品名/编码/系列/规格,库存列表也不再显示已删除的占位商品名
|
||||||
|
- 库存列表按真实商品名/编码即可搜到这些历史商品
|
||||||
|
|
||||||
|
### 新功能
|
||||||
|
- 入库单 / 出库单列表支持关键词搜索:按单号或往来单位名称即时筛选
|
||||||
|
|
||||||
|
## [1.0.66] - 2026-06-20
|
||||||
|
|
||||||
|
### 修复
|
||||||
|
- 入库/出库单据列表改为按业务日期(入库/出库日期)倒序排列:从旧系统迁入的历史单据按真实日期归位到列表顶部,不再因录入时间晚、被排到末尾分页而在首页遗漏
|
||||||
|
|
||||||
|
## [1.0.65] - 2026-06-20
|
||||||
|
|
||||||
|
### 修复
|
||||||
|
- 单据列表状态筛选支持一次查询多种状态,配合客户端修复让「入库审核 / 出库审核」标签页完整列出全部待审核单据,不再因分页只显示部分
|
||||||
|
|
||||||
## [1.0.64] - 2026-06-20
|
## [1.0.64] - 2026-06-20
|
||||||
|
|
||||||
### 改进
|
### 改进
|
||||||
|
|||||||
@@ -68,7 +68,7 @@ func (h *InventoryHandler) List(c *gin.Context) {
|
|||||||
specStr := c.Query("spec")
|
specStr := c.Query("spec")
|
||||||
|
|
||||||
if keyword != "" {
|
if keyword != "" {
|
||||||
baseWhere += " AND (COALESCE(NULLIF(p.name,''), inv.product_name) LIKE ? OR COALESCE(NULLIF(p.code,''), inv.product_code) LIKE ? OR p.name_pinyin LIKE ? OR p.name_initials LIKE ?)"
|
baseWhere += " AND (COALESCE(NULLIF(p.name,''), NULLIF(sii.product_name,''), inv.product_name) LIKE ? OR COALESCE(NULLIF(p.code,''), NULLIF(sii.product_code,''), inv.product_code) LIKE ? OR p.name_pinyin LIKE ? OR p.name_initials LIKE ?)"
|
||||||
like := "%" + keyword + "%"
|
like := "%" + keyword + "%"
|
||||||
args = append(args, like, like, like, like)
|
args = append(args, like, like, like, like)
|
||||||
}
|
}
|
||||||
@@ -101,7 +101,7 @@ func (h *InventoryHandler) List(c *gin.Context) {
|
|||||||
SELECT COUNT(*)
|
SELECT COUNT(*)
|
||||||
FROM inventories inv
|
FROM inventories inv
|
||||||
LEFT JOIN stock_in_items sii ON sii.id = inv.stock_in_item_id
|
LEFT JOIN stock_in_items sii ON sii.id = inv.stock_in_item_id
|
||||||
LEFT JOIN products p ON p.id = inv.product_id
|
LEFT JOIN products p ON p.id = inv.product_id AND p.deleted_at IS NULL
|
||||||
LEFT JOIN warehouses w ON w.id = inv.warehouse_id
|
LEFT JOIN warehouses w ON w.id = inv.warehouse_id
|
||||||
WHERE ` + baseWhere
|
WHERE ` + baseWhere
|
||||||
|
|
||||||
@@ -116,10 +116,10 @@ func (h *InventoryHandler) List(c *gin.Context) {
|
|||||||
SELECT
|
SELECT
|
||||||
inv.id, inv.shop_id, inv.warehouse_id, inv.product_id, inv.stock_in_item_id,
|
inv.id, inv.shop_id, inv.warehouse_id, inv.product_id, inv.stock_in_item_id,
|
||||||
inv.quantity,
|
inv.quantity,
|
||||||
COALESCE(NULLIF(p.code,''), inv.product_code, '') AS product_code,
|
COALESCE(NULLIF(p.code,''), NULLIF(sii.product_code,''), inv.product_code, '') AS product_code,
|
||||||
COALESCE(NULLIF(p.name,''), inv.product_name, '') AS product_name,
|
COALESCE(NULLIF(p.name,''), NULLIF(sii.product_name,''), inv.product_name, '') AS product_name,
|
||||||
COALESCE(NULLIF(p.series,''), inv.series, '') AS series,
|
COALESCE(NULLIF(p.series,''), NULLIF(sii.series,''), inv.series, '') AS series,
|
||||||
COALESCE(NULLIF(p.spec,''), inv.spec, '') AS spec,
|
COALESCE(NULLIF(p.spec,''), NULLIF(sii.spec,''), inv.spec, '') AS spec,
|
||||||
COALESCE(NULLIF(p.unit,''), inv.unit, '') AS unit,
|
COALESCE(NULLIF(p.unit,''), inv.unit, '') AS unit,
|
||||||
COALESCE(NULLIF(w.name,''), inv.warehouse_name, '') AS warehouse_name,
|
COALESCE(NULLIF(w.name,''), inv.warehouse_name, '') AS warehouse_name,
|
||||||
COALESCE(sii.unit_price, inv.unit_price) AS unit_price,
|
COALESCE(sii.unit_price, inv.unit_price) AS unit_price,
|
||||||
@@ -132,7 +132,7 @@ func (h *InventoryHandler) List(c *gin.Context) {
|
|||||||
inv.created_at
|
inv.created_at
|
||||||
FROM inventories inv
|
FROM inventories inv
|
||||||
LEFT JOIN stock_in_items sii ON sii.id = inv.stock_in_item_id
|
LEFT JOIN stock_in_items sii ON sii.id = inv.stock_in_item_id
|
||||||
LEFT JOIN products p ON p.id = inv.product_id
|
LEFT JOIN products p ON p.id = inv.product_id AND p.deleted_at IS NULL
|
||||||
LEFT JOIN warehouses w ON w.id = inv.warehouse_id
|
LEFT JOIN warehouses w ON w.id = inv.warehouse_id
|
||||||
WHERE ` + baseWhere + `
|
WHERE ` + baseWhere + `
|
||||||
ORDER BY inv.id DESC
|
ORDER BY inv.id DESC
|
||||||
|
|||||||
@@ -219,6 +219,52 @@ func TestInventoryHandler_List_HotelIsolation(t *testing.T) {
|
|||||||
assert.Equal(t, float64(0), respB["total"].(float64))
|
assert.Equal(t, float64(0), respB["total"].(float64))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 库存指向已软删的占位商品时,列表应回退到明细/库存快照真名,
|
||||||
|
// 而非占位商品名「历史导入占位」,且能按真名搜索到。
|
||||||
|
func TestInventoryHandler_List_DeletedProductFallsBackToSnapshot(t *testing.T) {
|
||||||
|
db := testutil.SetupTestDB()
|
||||||
|
shop := testutil.CreateTestShop(db, "INV009")
|
||||||
|
user := testutil.CreateTestUser(db, shop.ID, "admin", "pass", "admin")
|
||||||
|
warehouse := testutil.CreateTestWarehouse(db, shop.ID, "Warehouse")
|
||||||
|
placeholder := testutil.CreateTestProduct(db, shop.ID, "历史导入占位")
|
||||||
|
token := getAuthToken(user.ID, shop.ID, "admin")
|
||||||
|
r := setupProtectedRouter(db)
|
||||||
|
|
||||||
|
// 明细携带真实快照名
|
||||||
|
item := model.StockInItem{
|
||||||
|
ShopID: shop.ID,
|
||||||
|
ProductID: placeholder.ID,
|
||||||
|
ProductCode: "ZXZ029751",
|
||||||
|
ProductName: "贵州茅台酒2006",
|
||||||
|
Quantity: 10,
|
||||||
|
}
|
||||||
|
require.NoError(t, db.Create(&item).Error)
|
||||||
|
|
||||||
|
// 库存:product_id 指向占位商品,且 product_name 也是占位名(模拟旧脏数据)
|
||||||
|
require.NoError(t, db.Create(&model.Inventory{
|
||||||
|
ShopID: shop.ID,
|
||||||
|
WarehouseID: &warehouse.ID,
|
||||||
|
ProductID: &placeholder.ID,
|
||||||
|
StockInItemID: &item.ID,
|
||||||
|
ProductName: "历史导入占位",
|
||||||
|
Quantity: 10,
|
||||||
|
}).Error)
|
||||||
|
|
||||||
|
// 软删占位商品
|
||||||
|
require.NoError(t, db.Delete(&placeholder).Error)
|
||||||
|
|
||||||
|
// 列表:名称应回退到明细快照真名
|
||||||
|
w := makeRequest(r, "GET", "/api/v1/inventory", token, nil)
|
||||||
|
resp := parseResponse(w)
|
||||||
|
require.Equal(t, float64(1), resp["total"].(float64))
|
||||||
|
invItem := resp["data"].([]interface{})[0].(map[string]interface{})
|
||||||
|
assert.Equal(t, "贵州茅台酒2006", invItem["product_name"])
|
||||||
|
|
||||||
|
// 按真名可搜到
|
||||||
|
w = makeRequest(r, "GET", "/api/v1/inventory?keyword=茅台", token, nil)
|
||||||
|
assert.Equal(t, float64(1), parseResponse(w)["total"].(float64))
|
||||||
|
}
|
||||||
|
|
||||||
func TestInventoryHandler_AfterStockInApprove(t *testing.T) {
|
func TestInventoryHandler_AfterStockInApprove(t *testing.T) {
|
||||||
db := testutil.SetupTestDB()
|
db := testutil.SetupTestDB()
|
||||||
shop := testutil.CreateTestShop(db, "INV008")
|
shop := testutil.CreateTestShop(db, "INV008")
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"net/http"
|
"net/http"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
@@ -40,7 +41,7 @@ func (h *StockInHandler) List(c *gin.Context) {
|
|||||||
Where("shop_id = ? AND deleted_at IS NULL", shopID)
|
Where("shop_id = ? AND deleted_at IS NULL", shopID)
|
||||||
|
|
||||||
if status := c.Query("status"); status != "" {
|
if status := c.Query("status"); status != "" {
|
||||||
query = query.Where("status = ?", status)
|
query = query.Where("status IN ?", strings.Split(status, ","))
|
||||||
}
|
}
|
||||||
if startDate := c.Query("start_date"); startDate != "" {
|
if startDate := c.Query("start_date"); startDate != "" {
|
||||||
query = query.Where("order_date >= ?", startDate)
|
query = query.Where("order_date >= ?", startDate)
|
||||||
@@ -48,6 +49,13 @@ func (h *StockInHandler) List(c *gin.Context) {
|
|||||||
if endDate := c.Query("end_date"); endDate != "" {
|
if endDate := c.Query("end_date"); endDate != "" {
|
||||||
query = query.Where("order_date <= ?", endDate)
|
query = query.Where("order_date <= ?", endDate)
|
||||||
}
|
}
|
||||||
|
if kw := strings.TrimSpace(c.Query("keyword")); kw != "" {
|
||||||
|
like := "%" + kw + "%"
|
||||||
|
query = query.Where(
|
||||||
|
"order_no LIKE ? OR partner_id IN (SELECT id FROM partners WHERE shop_id = ? AND name LIKE ?)",
|
||||||
|
like, shopID, like,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
var total int64
|
var total int64
|
||||||
query.Count(&total)
|
query.Count(&total)
|
||||||
@@ -55,7 +63,7 @@ func (h *StockInHandler) List(c *gin.Context) {
|
|||||||
orders := make([]model.StockInOrder, 0)
|
orders := make([]model.StockInOrder, 0)
|
||||||
query.Preload("Warehouse").Preload("Partner").Preload("Operator").Preload("Reviewer").
|
query.Preload("Warehouse").Preload("Partner").Preload("Operator").Preload("Reviewer").
|
||||||
Offset((page - 1) * pageSize).Limit(pageSize).
|
Offset((page - 1) * pageSize).Limit(pageSize).
|
||||||
Order("id DESC").Find(&orders)
|
Order("order_date DESC, id DESC").Find(&orders)
|
||||||
|
|
||||||
c.JSON(http.StatusOK, gin.H{"data": orders, "total": total, "page": page, "page_size": pageSize})
|
c.JSON(http.StatusOK, gin.H{"data": orders, "total": total, "page": page, "page_size": pageSize})
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -308,6 +308,51 @@ func TestStockInHandler_Reject_NotPending(t *testing.T) {
|
|||||||
assert.Equal(t, http.StatusBadRequest, w.Code)
|
assert.Equal(t, http.StatusBadRequest, w.Code)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestStockInHandler_List_FilterByKeyword(t *testing.T) {
|
||||||
|
db := testutil.SetupTestDB()
|
||||||
|
shop := testutil.CreateTestShop(db, "SI011")
|
||||||
|
user := testutil.CreateTestUser(db, shop.ID, "admin", "pass", "admin")
|
||||||
|
warehouse := testutil.CreateTestWarehouse(db, shop.ID, "Warehouse")
|
||||||
|
product := testutil.CreateTestProduct(db, shop.ID, "Brandy")
|
||||||
|
token := getAuthToken(user.ID, shop.ID, "admin")
|
||||||
|
r := setupProtectedRouter(db)
|
||||||
|
|
||||||
|
// 往来单位:茅台供应商
|
||||||
|
partner := &model.Partner{Code: "P001", Name: "茅台供应商", Type: "supplier"}
|
||||||
|
partner.ShopID = shop.ID
|
||||||
|
require.NoError(t, db.Create(partner).Error)
|
||||||
|
|
||||||
|
// 单据1:挂往来单位
|
||||||
|
w := makeRequest(r, "POST", "/api/v1/stock-in/orders", token, map[string]interface{}{
|
||||||
|
"warehouse_id": warehouse.ID,
|
||||||
|
"partner_id": partner.ID,
|
||||||
|
"order_date": time.Now().Format(time.RFC3339),
|
||||||
|
"items": []map[string]interface{}{{"product_id": product.ID, "quantity": 5.0}},
|
||||||
|
})
|
||||||
|
require.Equal(t, http.StatusCreated, w.Code)
|
||||||
|
order1No := parseResponse(w)["data"].(map[string]interface{})["order_no"].(string)
|
||||||
|
|
||||||
|
// 单据2:无往来单位
|
||||||
|
w = makeRequest(r, "POST", "/api/v1/stock-in/orders", token, map[string]interface{}{
|
||||||
|
"warehouse_id": warehouse.ID,
|
||||||
|
"order_date": time.Now().Format(time.RFC3339),
|
||||||
|
"items": []map[string]interface{}{{"product_id": product.ID, "quantity": 3.0}},
|
||||||
|
})
|
||||||
|
require.Equal(t, http.StatusCreated, w.Code)
|
||||||
|
|
||||||
|
// 按往来单位名搜索 → 只命中单据1
|
||||||
|
w = makeRequest(r, "GET", "/api/v1/stock-in/orders?keyword=茅台", token, nil)
|
||||||
|
assert.Equal(t, float64(1), parseResponse(w)["total"].(float64))
|
||||||
|
|
||||||
|
// 按单号搜索 → 只命中单据1
|
||||||
|
w = makeRequest(r, "GET", "/api/v1/stock-in/orders?keyword="+order1No, token, nil)
|
||||||
|
assert.Equal(t, float64(1), parseResponse(w)["total"].(float64))
|
||||||
|
|
||||||
|
// 无关键词 → 两条都在
|
||||||
|
w = makeRequest(r, "GET", "/api/v1/stock-in/orders", token, nil)
|
||||||
|
assert.Equal(t, float64(2), parseResponse(w)["total"].(float64))
|
||||||
|
}
|
||||||
|
|
||||||
func TestStockInHandler_List_FilterByStatus(t *testing.T) {
|
func TestStockInHandler_List_FilterByStatus(t *testing.T) {
|
||||||
db := testutil.SetupTestDB()
|
db := testutil.SetupTestDB()
|
||||||
shop := testutil.CreateTestShop(db, "SI010")
|
shop := testutil.CreateTestShop(db, "SI010")
|
||||||
@@ -343,4 +388,9 @@ func TestStockInHandler_List_FilterByStatus(t *testing.T) {
|
|||||||
w = makeRequest(r, "GET", "/api/v1/stock-in/orders?status=draft", token, nil)
|
w = makeRequest(r, "GET", "/api/v1/stock-in/orders?status=draft", token, nil)
|
||||||
resp = parseResponse(w)
|
resp = parseResponse(w)
|
||||||
assert.Equal(t, float64(1), resp["total"].(float64))
|
assert.Equal(t, float64(1), resp["total"].(float64))
|
||||||
|
|
||||||
|
// 逗号分隔的多状态:pending + draft 应返回两条(审核标签页用法)
|
||||||
|
w = makeRequest(r, "GET", "/api/v1/stock-in/orders?status=pending,draft", token, nil)
|
||||||
|
resp = parseResponse(w)
|
||||||
|
assert.Equal(t, float64(2), resp["total"].(float64))
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ package handler
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
"strings"
|
||||||
|
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
"gorm.io/gorm"
|
"gorm.io/gorm"
|
||||||
@@ -33,7 +34,7 @@ func (h *StockOutHandler) List(c *gin.Context) {
|
|||||||
Where("shop_id = ? AND deleted_at IS NULL", shopID)
|
Where("shop_id = ? AND deleted_at IS NULL", shopID)
|
||||||
|
|
||||||
if status := c.Query("status"); status != "" {
|
if status := c.Query("status"); status != "" {
|
||||||
query = query.Where("status = ?", status)
|
query = query.Where("status IN ?", strings.Split(status, ","))
|
||||||
}
|
}
|
||||||
if startDate := c.Query("start_date"); startDate != "" {
|
if startDate := c.Query("start_date"); startDate != "" {
|
||||||
query = query.Where("order_date >= ?", startDate)
|
query = query.Where("order_date >= ?", startDate)
|
||||||
@@ -41,6 +42,13 @@ func (h *StockOutHandler) List(c *gin.Context) {
|
|||||||
if endDate := c.Query("end_date"); endDate != "" {
|
if endDate := c.Query("end_date"); endDate != "" {
|
||||||
query = query.Where("order_date <= ?", endDate)
|
query = query.Where("order_date <= ?", endDate)
|
||||||
}
|
}
|
||||||
|
if kw := strings.TrimSpace(c.Query("keyword")); kw != "" {
|
||||||
|
like := "%" + kw + "%"
|
||||||
|
query = query.Where(
|
||||||
|
"order_no LIKE ? OR partner_id IN (SELECT id FROM partners WHERE shop_id = ? AND name LIKE ?)",
|
||||||
|
like, shopID, like,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
var total int64
|
var total int64
|
||||||
query.Count(&total)
|
query.Count(&total)
|
||||||
@@ -48,7 +56,7 @@ func (h *StockOutHandler) List(c *gin.Context) {
|
|||||||
orders := make([]model.StockOutOrder, 0)
|
orders := make([]model.StockOutOrder, 0)
|
||||||
query.Preload("Warehouse").Preload("Partner").Preload("Operator").Preload("Reviewer").
|
query.Preload("Warehouse").Preload("Partner").Preload("Operator").Preload("Reviewer").
|
||||||
Offset((page - 1) * pageSize).Limit(pageSize).
|
Offset((page - 1) * pageSize).Limit(pageSize).
|
||||||
Order("id DESC").Find(&orders)
|
Order("order_date DESC, id DESC").Find(&orders)
|
||||||
|
|
||||||
c.JSON(http.StatusOK, gin.H{"data": orders, "total": total, "page": page, "page_size": pageSize})
|
c.JSON(http.StatusOK, gin.H{"data": orders, "total": total, "page": page, "page_size": pageSize})
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -133,6 +133,51 @@ func TestStockOutHandler_List(t *testing.T) {
|
|||||||
assert.Equal(t, float64(2), resp["total"].(float64))
|
assert.Equal(t, float64(2), resp["total"].(float64))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestStockOutHandler_List_FilterByKeyword(t *testing.T) {
|
||||||
|
db := testutil.SetupTestDB()
|
||||||
|
shop := testutil.CreateTestShop(db, "SO011")
|
||||||
|
user := testutil.CreateTestUser(db, shop.ID, "admin", "pass", "admin")
|
||||||
|
warehouse := testutil.CreateTestWarehouse(db, shop.ID, "Warehouse")
|
||||||
|
product := testutil.CreateTestProduct(db, shop.ID, "Beer")
|
||||||
|
token := getAuthToken(user.ID, shop.ID, "admin")
|
||||||
|
r := setupProtectedRouter(db)
|
||||||
|
|
||||||
|
// 往来单位:海底捞客户
|
||||||
|
partner := &model.Partner{Code: "C001", Name: "海底捞客户", Type: "customer"}
|
||||||
|
partner.ShopID = shop.ID
|
||||||
|
require.NoError(t, db.Create(partner).Error)
|
||||||
|
|
||||||
|
// 单据1:挂往来单位
|
||||||
|
w := makeRequest(r, "POST", "/api/v1/stock-out/orders", token, map[string]interface{}{
|
||||||
|
"warehouse_id": warehouse.ID,
|
||||||
|
"partner_id": partner.ID,
|
||||||
|
"order_date": time.Now().Format(time.RFC3339),
|
||||||
|
"items": []map[string]interface{}{{"product_id": product.ID, "quantity": 1.0}},
|
||||||
|
})
|
||||||
|
require.Equal(t, http.StatusCreated, w.Code)
|
||||||
|
order1No := parseResponse(w)["data"].(map[string]interface{})["order_no"].(string)
|
||||||
|
|
||||||
|
// 单据2:无往来单位
|
||||||
|
w = makeRequest(r, "POST", "/api/v1/stock-out/orders", token, map[string]interface{}{
|
||||||
|
"warehouse_id": warehouse.ID,
|
||||||
|
"order_date": time.Now().Format(time.RFC3339),
|
||||||
|
"items": []map[string]interface{}{{"product_id": product.ID, "quantity": 1.0}},
|
||||||
|
})
|
||||||
|
require.Equal(t, http.StatusCreated, w.Code)
|
||||||
|
|
||||||
|
// 按往来单位名搜索
|
||||||
|
w = makeRequest(r, "GET", "/api/v1/stock-out/orders?keyword=海底捞", token, nil)
|
||||||
|
assert.Equal(t, float64(1), parseResponse(w)["total"].(float64))
|
||||||
|
|
||||||
|
// 按单号搜索
|
||||||
|
w = makeRequest(r, "GET", "/api/v1/stock-out/orders?keyword="+order1No, token, nil)
|
||||||
|
assert.Equal(t, float64(1), parseResponse(w)["total"].(float64))
|
||||||
|
|
||||||
|
// 无关键词
|
||||||
|
w = makeRequest(r, "GET", "/api/v1/stock-out/orders", token, nil)
|
||||||
|
assert.Equal(t, float64(2), parseResponse(w)["total"].(float64))
|
||||||
|
}
|
||||||
|
|
||||||
func TestStockOutHandler_Reject(t *testing.T) {
|
func TestStockOutHandler_Reject(t *testing.T) {
|
||||||
db := testutil.SetupTestDB()
|
db := testutil.SetupTestDB()
|
||||||
shop := testutil.CreateTestShop(db, "SO004")
|
shop := testutil.CreateTestShop(db, "SO004")
|
||||||
|
|||||||
@@ -64,16 +64,26 @@ func (s *StockService) ApproveStockIn(shopID, orderID, reviewerID uint64) error
|
|||||||
unitPricePtr = &itemCopy.UnitPrice
|
unitPricePtr = &itemCopy.UnitPrice
|
||||||
}
|
}
|
||||||
|
|
||||||
productCode := ""
|
// 优先使用明细自带快照列(历史导入单的真实商品信息在此),
|
||||||
productName := ""
|
// Product 关联仅作兜底(普通 UI 录入单的明细快照为空)。
|
||||||
series := ""
|
productCode := itemCopy.ProductCode
|
||||||
spec := ""
|
productName := itemCopy.ProductName
|
||||||
|
series := itemCopy.Series
|
||||||
|
spec := itemCopy.Spec
|
||||||
unit := ""
|
unit := ""
|
||||||
if itemCopy.Product != nil {
|
if itemCopy.Product != nil {
|
||||||
productCode = itemCopy.Product.Code
|
if productCode == "" {
|
||||||
productName = itemCopy.Product.Name
|
productCode = itemCopy.Product.Code
|
||||||
series = itemCopy.Product.Series
|
}
|
||||||
spec = itemCopy.Product.Spec
|
if productName == "" {
|
||||||
|
productName = itemCopy.Product.Name
|
||||||
|
}
|
||||||
|
if series == "" {
|
||||||
|
series = itemCopy.Product.Series
|
||||||
|
}
|
||||||
|
if spec == "" {
|
||||||
|
spec = itemCopy.Product.Spec
|
||||||
|
}
|
||||||
unit = itemCopy.Product.Unit
|
unit = itemCopy.Product.Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -65,6 +65,47 @@ func TestStockService_ApproveStockIn_Success(t *testing.T) {
|
|||||||
assert.Equal(t, float64(10), logs[0].QtyAfter)
|
assert.Equal(t, float64(10), logs[0].QtyAfter)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 历史导入单:明细自带真实快照名,product_id 指向占位商品(名「历史导入占位」)。
|
||||||
|
// 审核生成的库存应使用明细快照真名,而非占位商品名。
|
||||||
|
func TestStockService_ApproveStockIn_PrefersItemSnapshot(t *testing.T) {
|
||||||
|
db := testutil.SetupTestDB()
|
||||||
|
shop := testutil.CreateTestShop(db, "STOCK009")
|
||||||
|
warehouse := testutil.CreateTestWarehouse(db, shop.ID, "Warehouse")
|
||||||
|
placeholder := testutil.CreateTestProduct(db, shop.ID, "历史导入占位")
|
||||||
|
user := testutil.CreateTestUser(db, shop.ID, "admin", "pass", "admin")
|
||||||
|
|
||||||
|
order := model.StockInOrder{
|
||||||
|
TenantBase: model.TenantBase{ShopID: shop.ID},
|
||||||
|
OrderNo: "IN20240101000009",
|
||||||
|
WarehouseID: warehouse.ID,
|
||||||
|
OperatorID: user.ID,
|
||||||
|
Status: "pending",
|
||||||
|
OrderDate: model.Date{Time: time.Now()},
|
||||||
|
Items: []model.StockInItem{
|
||||||
|
{
|
||||||
|
ShopID: shop.ID,
|
||||||
|
ProductID: placeholder.ID,
|
||||||
|
ProductCode: "ZXZ029751",
|
||||||
|
ProductName: "贵州茅台酒2006",
|
||||||
|
Series: "茅台",
|
||||||
|
Spec: "500ml",
|
||||||
|
Quantity: 10,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
require.NoError(t, db.Create(&order).Error)
|
||||||
|
|
||||||
|
svc := NewStockService(db)
|
||||||
|
require.NoError(t, svc.ApproveStockIn(shop.ID, order.ID, user.ID))
|
||||||
|
|
||||||
|
var inv model.Inventory
|
||||||
|
require.NoError(t, db.Where("shop_id = ? AND product_id = ?", shop.ID, placeholder.ID).First(&inv).Error)
|
||||||
|
assert.Equal(t, "贵州茅台酒2006", inv.ProductName)
|
||||||
|
assert.Equal(t, "ZXZ029751", inv.ProductCode)
|
||||||
|
assert.Equal(t, "茅台", inv.Series)
|
||||||
|
assert.Equal(t, "500ml", inv.Spec)
|
||||||
|
}
|
||||||
|
|
||||||
func TestStockService_ApproveStockIn_NotPending(t *testing.T) {
|
func TestStockService_ApproveStockIn_NotPending(t *testing.T) {
|
||||||
db := testutil.SetupTestDB()
|
db := testutil.SetupTestDB()
|
||||||
shop := testutil.CreateTestShop(db, "STOCK002")
|
shop := testutil.CreateTestShop(db, "STOCK002")
|
||||||
|
|||||||
@@ -60,6 +60,9 @@ class StockInListNotifier extends AsyncNotifier<PageResult<StockInOrder>> {
|
|||||||
reload();
|
reload();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// 当前服务端状态过滤值(供页面进入时对齐标签/下拉,避免重复拉取)
|
||||||
|
String get currentStatus => _status;
|
||||||
|
|
||||||
void setStatus(String status) {
|
void setStatus(String status) {
|
||||||
_status = status;
|
_status = status;
|
||||||
_page = 1;
|
_page = 1;
|
||||||
|
|||||||
@@ -60,6 +60,9 @@ class StockOutListNotifier extends AsyncNotifier<PageResult<StockOutOrder>> {
|
|||||||
reload();
|
reload();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// 当前服务端状态过滤值(供页面进入时对齐标签/下拉,避免重复拉取)
|
||||||
|
String get currentStatus => _status;
|
||||||
|
|
||||||
void setStatus(String status) {
|
void setStatus(String status) {
|
||||||
_status = status;
|
_status = status;
|
||||||
_page = 1;
|
_page = 1;
|
||||||
|
|||||||
@@ -61,6 +61,14 @@ class _StockInListScreenState extends ConsumerState<StockInListScreen> {
|
|||||||
ColumnPrefs.load(_screenId).then((saved) {
|
ColumnPrefs.load(_screenId).then((saved) {
|
||||||
if (saved != null && mounted) setState(() => _hiddenCols = saved);
|
if (saved != null && mounted) setState(() => _hiddenCols = saved);
|
||||||
});
|
});
|
||||||
|
// 进入页面时把服务端状态过滤对齐到当前标签/下拉(provider 持久化,State 会重建)
|
||||||
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
||||||
|
if (!mounted) return;
|
||||||
|
final tab = ref.read(stockInTabProvider);
|
||||||
|
final want = tab == 1 ? 'pending,draft' : _statusFilter;
|
||||||
|
final notifier = ref.read(stockInListProvider.notifier);
|
||||||
|
if (notifier.currentStatus != want) notifier.setStatus(want);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
String? get _startDate => _dateRange != null
|
String? get _startDate => _dateRange != null
|
||||||
@@ -89,7 +97,13 @@ class _StockInListScreenState extends ConsumerState<StockInListScreen> {
|
|||||||
return PageScaffold(
|
return PageScaffold(
|
||||||
title: '入库管理',
|
title: '入库管理',
|
||||||
initialTab: ref.read(stockInTabProvider),
|
initialTab: ref.read(stockInTabProvider),
|
||||||
onTabChanged: (i) => ref.read(stockInTabProvider.notifier).state = i,
|
onTabChanged: (i) {
|
||||||
|
ref.read(stockInTabProvider.notifier).state = i;
|
||||||
|
// 审核标签页按 pending+draft 服务端拉取;入库单页沿用下拉状态('' 为全部)
|
||||||
|
ref
|
||||||
|
.read(stockInListProvider.notifier)
|
||||||
|
.setStatus(i == 1 ? 'pending,draft' : _statusFilter);
|
||||||
|
},
|
||||||
tabs: const [
|
tabs: const [
|
||||||
Tab(text: '入库单'),
|
Tab(text: '入库单'),
|
||||||
Tab(text: '入库审核'),
|
Tab(text: '入库审核'),
|
||||||
@@ -124,15 +138,19 @@ class _StockInListScreenState extends ConsumerState<StockInListScreen> {
|
|||||||
),
|
),
|
||||||
data: (result) {
|
data: (result) {
|
||||||
final allOrders = result.data;
|
final allOrders = result.data;
|
||||||
|
// 状态过滤已改为服务端驱动(setStatus)。这里仅按标签做轻量显示守卫,
|
||||||
|
// 避免共用 provider 在标签切换、refetch 在途时短暂闪现他状态数据。
|
||||||
final List<StockInOrder> statusFiltered;
|
final List<StockInOrder> statusFiltered;
|
||||||
if (filterStatus == 'pending') {
|
if (filterStatus == 'pending') {
|
||||||
|
// 入库审核:服务端按 pending,draft 拉取
|
||||||
statusFiltered = allOrders
|
statusFiltered = allOrders
|
||||||
.where((o) => o.status == 'draft' || o.status == 'pending')
|
.where((o) => o.status == 'draft' || o.status == 'pending')
|
||||||
.toList();
|
.toList();
|
||||||
} else if (filterStatus == 'exclude_pending') {
|
} else if (filterStatus == 'exclude_pending') {
|
||||||
statusFiltered = allOrders
|
// 入库单:服务端按下拉状态拉取;'全部状态' 显示全部(含未审核)
|
||||||
.where((o) => o.status != 'draft' && o.status != 'pending')
|
statusFiltered = _statusFilter.isEmpty
|
||||||
.toList();
|
? allOrders
|
||||||
|
: allOrders.where((o) => o.status == _statusFilter).toList();
|
||||||
} else {
|
} else {
|
||||||
statusFiltered = allOrders;
|
statusFiltered = allOrders;
|
||||||
}
|
}
|
||||||
@@ -1041,6 +1059,7 @@ class _StatusFilterDropdown extends StatelessWidget {
|
|||||||
items: [
|
items: [
|
||||||
const DropdownMenuItem(value: '', child: Text('全部状态', style: TextStyle(fontSize: 13))),
|
const DropdownMenuItem(value: '', child: Text('全部状态', style: TextStyle(fontSize: 13))),
|
||||||
const DropdownMenuItem(value: 'draft', child: Text('草稿', style: TextStyle(fontSize: 13))),
|
const DropdownMenuItem(value: 'draft', child: Text('草稿', style: TextStyle(fontSize: 13))),
|
||||||
|
const DropdownMenuItem(value: 'pending', child: Text('待审核', style: TextStyle(fontSize: 13))),
|
||||||
const DropdownMenuItem(value: 'approved', child: Text('已审核', style: TextStyle(fontSize: 13))),
|
const DropdownMenuItem(value: 'approved', child: Text('已审核', style: TextStyle(fontSize: 13))),
|
||||||
const DropdownMenuItem(value: 'rejected', child: Text('已拒绝', style: TextStyle(fontSize: 13))),
|
const DropdownMenuItem(value: 'rejected', child: Text('已拒绝', style: TextStyle(fontSize: 13))),
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -47,6 +47,14 @@ class _StockOutListScreenState extends ConsumerState<StockOutListScreen> {
|
|||||||
ColumnPrefs.load(_screenId).then((saved) {
|
ColumnPrefs.load(_screenId).then((saved) {
|
||||||
if (saved != null && mounted) setState(() => _hiddenCols = saved);
|
if (saved != null && mounted) setState(() => _hiddenCols = saved);
|
||||||
});
|
});
|
||||||
|
// 进入页面时把服务端状态过滤对齐到当前标签/下拉(provider 持久化,State 会重建)
|
||||||
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
||||||
|
if (!mounted) return;
|
||||||
|
final tab = ref.read(stockOutTabProvider);
|
||||||
|
final want = tab == 1 ? 'pending,draft' : _statusFilter;
|
||||||
|
final notifier = ref.read(stockOutListProvider.notifier);
|
||||||
|
if (notifier.currentStatus != want) notifier.setStatus(want);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
static const _colDefs = [
|
static const _colDefs = [
|
||||||
@@ -89,7 +97,13 @@ class _StockOutListScreenState extends ConsumerState<StockOutListScreen> {
|
|||||||
return PageScaffold(
|
return PageScaffold(
|
||||||
title: '出库管理',
|
title: '出库管理',
|
||||||
initialTab: ref.read(stockOutTabProvider),
|
initialTab: ref.read(stockOutTabProvider),
|
||||||
onTabChanged: (i) => ref.read(stockOutTabProvider.notifier).state = i,
|
onTabChanged: (i) {
|
||||||
|
ref.read(stockOutTabProvider.notifier).state = i;
|
||||||
|
// 审核标签页按 pending+draft 服务端拉取;出库单页沿用下拉状态('' 为全部)
|
||||||
|
ref
|
||||||
|
.read(stockOutListProvider.notifier)
|
||||||
|
.setStatus(i == 1 ? 'pending,draft' : _statusFilter);
|
||||||
|
},
|
||||||
tabs: const [
|
tabs: const [
|
||||||
Tab(text: '出库单'),
|
Tab(text: '出库单'),
|
||||||
Tab(text: '出库审核'),
|
Tab(text: '出库审核'),
|
||||||
@@ -124,15 +138,19 @@ class _StockOutListScreenState extends ConsumerState<StockOutListScreen> {
|
|||||||
),
|
),
|
||||||
data: (result) {
|
data: (result) {
|
||||||
final allOrders = result.data;
|
final allOrders = result.data;
|
||||||
|
// 状态过滤已改为服务端驱动(setStatus)。这里仅按标签做轻量显示守卫,
|
||||||
|
// 避免共用 provider 在标签切换、refetch 在途时短暂闪现他状态数据。
|
||||||
final List<StockOutOrder> statusFiltered;
|
final List<StockOutOrder> statusFiltered;
|
||||||
if (filterStatus == 'pending') {
|
if (filterStatus == 'pending') {
|
||||||
|
// 出库审核:服务端按 pending,draft 拉取
|
||||||
statusFiltered = allOrders
|
statusFiltered = allOrders
|
||||||
.where((o) => o.status == 'draft' || o.status == 'pending')
|
.where((o) => o.status == 'draft' || o.status == 'pending')
|
||||||
.toList();
|
.toList();
|
||||||
} else if (filterStatus == 'exclude_pending') {
|
} else if (filterStatus == 'exclude_pending') {
|
||||||
statusFiltered = allOrders
|
// 出库单:服务端按下拉状态拉取;'全部状态' 显示全部(含未审核)
|
||||||
.where((o) => o.status != 'draft' && o.status != 'pending')
|
statusFiltered = _statusFilter.isEmpty
|
||||||
.toList();
|
? allOrders
|
||||||
|
: allOrders.where((o) => o.status == _statusFilter).toList();
|
||||||
} else {
|
} else {
|
||||||
statusFiltered = allOrders;
|
statusFiltered = allOrders;
|
||||||
}
|
}
|
||||||
@@ -950,6 +968,7 @@ class _StatusFilterDropdown extends StatelessWidget {
|
|||||||
items: const [
|
items: const [
|
||||||
DropdownMenuItem(value: '', child: Text('全部状态', style: TextStyle(fontSize: 13))),
|
DropdownMenuItem(value: '', child: Text('全部状态', style: TextStyle(fontSize: 13))),
|
||||||
DropdownMenuItem(value: 'draft', child: Text('草稿', style: TextStyle(fontSize: 13))),
|
DropdownMenuItem(value: 'draft', child: Text('草稿', style: TextStyle(fontSize: 13))),
|
||||||
|
DropdownMenuItem(value: 'pending', child: Text('待审核', style: TextStyle(fontSize: 13))),
|
||||||
DropdownMenuItem(value: 'approved', child: Text('已审核', style: TextStyle(fontSize: 13))),
|
DropdownMenuItem(value: 'approved', child: Text('已审核', style: TextStyle(fontSize: 13))),
|
||||||
DropdownMenuItem(value: 'rejected', child: Text('已拒绝', style: TextStyle(fontSize: 13))),
|
DropdownMenuItem(value: 'rejected', child: Text('已拒绝', style: TextStyle(fontSize: 13))),
|
||||||
],
|
],
|
||||||
|
|||||||
Reference in New Issue
Block a user