1、修复零售订单批量导入时数据过多情况下阻塞的缺陷;

This commit is contained in:
chenlin 2025-02-21 16:28:56 +08:00
parent 6d9004e27d
commit 17c5ef654f

View File

@ -1575,7 +1575,7 @@ func checkOrderExcel(sheetCols [][]string, storeId int) error {
// 通道用于并发校验
var wg sync.WaitGroup
errCh := make(chan error, 10)
errCh := make(chan error, nMax)
// 限制最大并发数量
maxConcurrency := 10