From 307c699810c39714e82efac9de56f70b93a718a2 Mon Sep 17 00:00:00 2001 From: liujiandao <274878379@qq.com> Date: 星期二, 31 十月 2023 11:54:23 +0800 Subject: [PATCH] 重订货规则开发 --- models/operation_type.go | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/models/operation_type.go b/models/operation_type.go index 5c1c4b3..ed03f46 100644 --- a/models/operation_type.go +++ b/models/operation_type.go @@ -135,6 +135,10 @@ db = db.Where("warehouse_id = ?", slf.WarehouseId) } + if int(slf.BaseOperationType) != 0 { + db = db.Where("base_operation_type = ?", slf.BaseOperationType) + } + return db } -- Gitblit v1.8.0