From 61547fff44aa36fe4c8461d3f5fd78f50903b2b1 Mon Sep 17 00:00:00 2001 From: rohitwaghchaure Date: Wed, 13 May 2026 14:05:55 +0530 Subject: [PATCH] chore: fixed test case --- erpnext/stock/serial_batch_bundle.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/erpnext/stock/serial_batch_bundle.py b/erpnext/stock/serial_batch_bundle.py index cdaf77ef3ef..4949e389b48 100644 --- a/erpnext/stock/serial_batch_bundle.py +++ b/erpnext/stock/serial_batch_bundle.py @@ -11,7 +11,6 @@ from erpnext.stock.deprecated_serial_batch import ( DeprecatedBatchNoValuation, DeprecatedSerialNoValuation, ) -from erpnext.stock.utils import get_combine_datetime from erpnext.stock.valuation import round_off_if_near_zero CONSUMED_SERIAL_NO_STOCK_ENTRY_PURPOSES = ( @@ -1073,10 +1072,6 @@ class SerialBatchCreation: def set_other_details(self): from erpnext.stock.utils import get_combine_datetime - if not self.get("posting_datetime"): - if self.get("posting_date") and self.get("posting_time"): - self.posting_datetime = get_combine_datetime(self.posting_date, self.posting_time) - if not self.get("posting_datetime"): if self.get("posting_date") and self.get("posting_time"): self.posting_datetime = get_combine_datetime(self.posting_date, self.posting_time)