commit | 9fb3fb4c836aef1d05e9a8160baf7089cd3bb224 | [log] [tgz] |
---|---|---|
author | Sagar Sharma <sagarsharma.s312@gmail.com> | Tue Nov 01 10:38:33 2022 +0530 |
committer | Sagar Sharma <sagarsharma.s312@gmail.com> | Tue Nov 01 10:45:13 2022 +0530 |
tree | 4644183e16f52144128b6ef6bc80aab94c1d5e7a | |
parent | 1033d34964ebe1ea38d92526f5ff38f7f26a7842 [diff] |
fix: use `flt` instead of `cint` in `get_batch_no`
diff --git a/erpnext/stock/doctype/batch/batch.py b/erpnext/stock/doctype/batch/batch.py index 52854a0..f14288b 100644 --- a/erpnext/stock/doctype/batch/batch.py +++ b/erpnext/stock/doctype/batch/batch.py
@@ -291,7 +291,7 @@ batches = get_batches(item_code, warehouse, qty, throw, serial_no) for batch in batches: - if cint(qty) <= cint(batch.qty): + if flt(qty) <= flt(batch.qty): batch_no = batch.batch_id break