修改出入库补单

This commit is contained in:
lewis 2025-03-17 17:31:15 +08:00
parent 4d89794a05
commit 712409b41b

View File

@ -119,7 +119,7 @@ class ProductSourceLinkLogic extends BaseLogic
*/
public static function outbound(array $info)
{
$query = ProductSourceLinkInfo::where('product_id', $info['product']['product_id'])->where('current_nums', '>', 0);
$query = ProductSourceLinkInfo::where('product_id', $info['product']['product_id'])->where('warehouse_id', 1)->where('current_nums', '>', 0);
if (!empty($info['is_store_order']) && $info['store_id']) {
$query->where('store_id', $info['store_id'])->whereIn('types', [ProductSourceLinkInfo::TypeStoreIn, ProductSourceLinkInfo::TypeS2S]);
} else {