From 05d5dc53215783d31e9be2c8b4dbd7ff5cfa0766 Mon Sep 17 00:00:00 2001 From: Frappe PR Bot Date: Tue, 23 Sep 2025 14:00:33 +0000 Subject: [PATCH] chore(release): Bumped to Version 15.80.0 # [15.80.0](https://github.com/frappe/erpnext/compare/v15.79.2...v15.80.0) (2025-09-23) ### Bug Fixes * **accounts receivable:** exclude employee transactions ([c071107](https://github.com/frappe/erpnext/commit/c071107b277b8da126c76df2055854a7e5332231)) * **accounts:** dynamic zero cutoff (backport [#48899](https://github.com/frappe/erpnext/issues/48899)) ([#49552](https://github.com/frappe/erpnext/issues/49552)) ([5ef7a78](https://github.com/frappe/erpnext/commit/5ef7a7857ccdc34a65025582a1c6ceafabadfcc5)) * add condition for name ([65ce737](https://github.com/frappe/erpnext/commit/65ce737c2dbbd5e76bb152c3070d12be1e2f9e0d)) * add option for currency field (backport [#49572](https://github.com/frappe/erpnext/issues/49572)) ([#49594](https://github.com/frappe/erpnext/issues/49594)) ([1a4ea07](https://github.com/frappe/erpnext/commit/1a4ea07b783038bb3638b23367664af0b4e8c013)) * auto commit if too many writes reached ([0310172](https://github.com/frappe/erpnext/commit/0310172338778a2a2886cc791f1a118beaf17230)) * Consider non SABB batch qty in reserved batch validation ([7ed97e4](https://github.com/frappe/erpnext/commit/7ed97e47cc50511d0883343e527f7e2c8725c841)) * incorrect current qty calculation for the batch ([bf48cf0](https://github.com/frappe/erpnext/commit/bf48cf02e5ab6262bbc52d43cb4e44850109b03d)) * **item:** avoid inheriting item defaults from identically named items ([#49571](https://github.com/frappe/erpnext/issues/49571)) ([9e58a56](https://github.com/frappe/erpnext/commit/9e58a56b5cadeac82ba5e8e7745ba61d06793e0c)) * only show filters in print view if 'Include filters' is enabled ([79d4731](https://github.com/frappe/erpnext/commit/79d4731fe7bb56ebc2fc841a0f772bae2deb97bc)) * **payment-reconciliation:** apply field precision for allocated and difference amounts (backport [#49448](https://github.com/frappe/erpnext/issues/49448)) ([#49595](https://github.com/frappe/erpnext/issues/49595)) ([fbd62e7](https://github.com/frappe/erpnext/commit/fbd62e72f9b674ec223f91bde2a936b5b08e24e3)) * project accounting dimension and gl posting date column width (backport [#49563](https://github.com/frappe/erpnext/issues/49563)) ([#49591](https://github.com/frappe/erpnext/issues/49591)) ([bce22cb](https://github.com/frappe/erpnext/commit/bce22cb27bc1eef5e8c40c863e9f82b6e58695a2)) * **purchase order:** get party type based on supplier field ([3aebbf6](https://github.com/frappe/erpnext/commit/3aebbf6e920bfd1cea73621e41476160b0e405a1)) * restore auto_commit_on_many_writes flag ([5320782](https://github.com/frappe/erpnext/commit/53207821aa17e244eb67df2fd62ce50628acd329)) * set first_response_time on status change of issue ([0d5613c](https://github.com/frappe/erpnext/commit/0d5613ca4c9f1535032b46219f9ada4a99b5ba23)) * skip receivable/payable account validation in payroll entry if party is not available (backport [#49585](https://github.com/frappe/erpnext/issues/49585)) ([#49598](https://github.com/frappe/erpnext/issues/49598)) ([697f6ef](https://github.com/frappe/erpnext/commit/697f6ef086eb99342fca566399c1254ae203e103)) * **stock:** NoneType object error on stock entry ([de8c4ee](https://github.com/frappe/erpnext/commit/de8c4eec1b8190b9c5da6c28e2ae6ebda3233ad7)) * warehouse for batch validation ([cb94c4b](https://github.com/frappe/erpnext/commit/cb94c4b5f189e3fed9fbbe508490fa6d177a6ab7)) ### Features * add filters option in print view (backport [#49631](https://github.com/frappe/erpnext/issues/49631)) ([#49700](https://github.com/frappe/erpnext/issues/49700)) ([e9b29ed](https://github.com/frappe/erpnext/commit/e9b29ed544e41480f8fc4654d3d1d9b7b95372ce)) * populate available qty in pick list locations ([bc7f884](https://github.com/frappe/erpnext/commit/bc7f884ae12dccd443ff9a409708f7c95dae4b98)) --- erpnext/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/__init__.py b/erpnext/__init__.py index e5cdfe8aebc..c0c76f604c3 100644 --- a/erpnext/__init__.py +++ b/erpnext/__init__.py @@ -4,7 +4,7 @@ import inspect import frappe from frappe.utils.user import is_website_user -__version__ = "15.79.2" +__version__ = "15.80.0" def get_default_company(user=None):