fix: skip drop ship items (#47670)

This commit is contained in:
rohitwaghchaure
2025-05-25 11:36:51 +05:30
committed by GitHub
parent 874750f9ce
commit 67c86ec028

View File

@@ -166,6 +166,9 @@ class TransactionBase(StatusUpdater):
child_table_values = set()
for row in self.get(child_table):
if default_field == "set_warehouse" and row.get("delivered_by_supplier"):
continue
child_table_values.add(row.get(child_table_field))
if len(child_table_values) > 1: