Skip to content

Commit

Permalink
fix: validation for serial no (#44133)
Browse files Browse the repository at this point in the history
(cherry picked from commit 93c8b4c)

# Conflicts:
#	erpnext/stock/doctype/stock_entry/test_stock_entry.py
  • Loading branch information
rohitwaghchaure authored and mergify[bot] committed Nov 15, 2024
1 parent 8ee7e7d commit f3c6b77
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -749,10 +749,6 @@ def validate_serial_batch_no(self, serial_batches):
)

def validate_incorrect_serial_nos(self, serial_nos):
if self.voucher_type == "Stock Entry" and self.voucher_no:
if frappe.get_cached_value("Stock Entry", self.voucher_no, "purpose") == "Repack":
return

incorrect_serial_nos = frappe.get_all(
"Serial No",
filters={"name": ("in", serial_nos), "item_code": ("!=", self.item_code)},
Expand Down
3 changes: 3 additions & 0 deletions erpnext/stock/doctype/stock_entry/test_stock_entry.py
Original file line number Diff line number Diff line change
Expand Up @@ -970,6 +970,7 @@ def test_nagative_stock_for_batch(self):

self.assertRaises(frappe.ValidationError, ste.submit)

<<<<<<< HEAD
def test_same_serial_nos_in_repack_or_manufacture_entries(self):
s1 = make_serialized_item(target_warehouse="_Test Warehouse - _TC")
serial_nos = get_serial_nos_from_bundle(s1.get("items")[0].serial_and_batch_bundle)
Expand Down Expand Up @@ -1025,6 +1026,8 @@ def test_same_serial_nos_in_repack_or_manufacture_entries(self):
s2.cancel()
frappe.flags.use_serial_and_batch_fields = False

=======
>>>>>>> 93c8b4c39a (fix: validation for serial no (#44133))
def test_quality_check(self):
item_code = "_Test Item For QC"
if not frappe.db.exists("Item", item_code):
Expand Down

0 comments on commit f3c6b77

Please sign in to comment.