1.修复零售订单批量导入时,检查门店名称时越界的缺陷;

This commit is contained in:
chenlin 2025-01-16 15:17:07 +08:00
parent 3641db246d
commit 02a094445c

View File

@ -618,7 +618,7 @@ func hasDuplicateStore(sheetCols [][]string) (string, bool) {
storeMap := make(map[string]struct{})
var storeName string
for row := 1; row < len(sheetCols); row++ {
for row := 1; row < len(sheetCols[4]); row++ {
// 获取当前行的门店名称
currentStore := sheetCols[4][row] // 第5列门店名称