From 14f3b215c449bebdfd6db4efeb9c242210049c44 Mon Sep 17 00:00:00 2001 From: caoqianming Date: Fri, 4 Jul 2025 13:22:45 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20BatchSt.g=5Fcreate=E5=8F=96=E6=B6=88?= =?UTF-8?q?=E4=BC=A0=E5=85=A5check=5Fmat?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/inm/services.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/inm/services.py b/apps/inm/services.py index 78bde6bf..010ee51f 100644 --- a/apps/inm/services.py +++ b/apps/inm/services.py @@ -278,7 +278,7 @@ class InmService: else: for item in MIOItem.objects.filter(mio=instance): BatchSt.g_create( - batch=item.batch, mio=instance, material_start=item.material, check_mat_start=True) + batch=item.batch, mio=instance, material_start=item.material) from apps.pum.services import PumService if is_reverse: cls.update_mb(instance, -1) @@ -291,7 +291,7 @@ class InmService: else: for item in MIOItem.objects.filter(mio=instance): BatchSt.g_create( - batch=item.batch, mio=instance, material_start=item.material, check_mat_start=True) + batch=item.batch, mio=instance, material_start=item.material) if is_reverse: cls.update_mb(instance, -1) else: