From 916511ef1a599aa66ddf86801651c5f66497b096 Mon Sep 17 00:00:00 2001 From: Frappe PR Bot Date: Tue, 3 Jun 2025 11:54:42 +0000 Subject: [PATCH] chore(release): Bumped to Version 15.64.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # [15.64.0](https://github.com/frappe/erpnext/compare/v15.63.0...v15.64.0) (2025-06-03) ### Bug Fixes * Accounts receivable shouldn't fetch DN for employees ([9f5cfdd](https://github.com/frappe/erpnext/commit/9f5cfdd65bba076ed3f1e82d19eb6a9432c52242)) * add company filter to cost center and project in process statement of accounts ([5ebf1b9](https://github.com/frappe/erpnext/commit/5ebf1b9cc4a803698c05695747a9da836a4ec68e)) * add internal link field in Sales Order connections for internal transactions ([3c697e9](https://github.com/frappe/erpnext/commit/3c697e90a3a04327d5b4d8b0193e48278a38e26c)) * calculate discount percentage if discount amount is specified ([#47806](https://github.com/frappe/erpnext/issues/47806)) ([ba8a316](https://github.com/frappe/erpnext/commit/ba8a316b06a58aabd3f4f86191c8caaeedfeadd1)) * cash flow report fixes ([4a1966c](https://github.com/frappe/erpnext/commit/4a1966c6807800556d78ddba5880e229c5e6ca05)) * check return_against exists before api call ([8623a56](https://github.com/frappe/erpnext/commit/8623a5650bbfc9161a64ee63ec8132d7690a5d74)) * decimal issue ([#47839](https://github.com/frappe/erpnext/issues/47839)) ([34b62d2](https://github.com/frappe/erpnext/commit/34b62d226c5290158bc8baa37c21f4b1be817639)) * ensure backend response is awaited before saving ([5a23d7c](https://github.com/frappe/erpnext/commit/5a23d7cdca32431e3563a966acb5eaae8f9b4610)) * GL entries for rejected returned materials ([#47612](https://github.com/frappe/erpnext/issues/47612)) ([5bac652](https://github.com/frappe/erpnext/commit/5bac652b5fc8d3196a4e238b8ca60daea34df96a)) * Handle duplicate Items qty in Quotation ([4c1b415](https://github.com/frappe/erpnext/commit/4c1b415b9d8733a1cb611e4f91eb03b5d7163700)) * improved indexing for SLE queries. (backport [#47194](https://github.com/frappe/erpnext/issues/47194)) ([#47822](https://github.com/frappe/erpnext/issues/47822)) ([3879cbd](https://github.com/frappe/erpnext/commit/3879cbd86dfa75c665d122079cf366c1d372635e)) * incorrect actual qty in product bundle balance report (backport [#47791](https://github.com/frappe/erpnext/issues/47791)) ([#47814](https://github.com/frappe/erpnext/issues/47814)) ([9df3b9b](https://github.com/frappe/erpnext/commit/9df3b9b059daac6f799cc33e145035652d49b236)) * **Timesheet:** Only update to_time if it's more than 1 second off ([#47702](https://github.com/frappe/erpnext/issues/47702)) ([470534a](https://github.com/frappe/erpnext/commit/470534af7825402b20a72f96e46a7d25c0c2689d)) * use `query.walk() `for escaping special chars in receiable/payable report ([2e3ebec](https://github.com/frappe/erpnext/commit/2e3ebec53c95112b8008337d2a024a4b1882c282)) * use user default for company instead of global default in purchase order analysis report ([7d828dc](https://github.com/frappe/erpnext/commit/7d828dc17e68b86dde3c5d71b2beef462ac8289b)) ### Features * add column "Item Name" to "BOM Stock Report" (backport [#47116](https://github.com/frappe/erpnext/issues/47116)) ([#47485](https://github.com/frappe/erpnext/issues/47485)) ([9192913](https://github.com/frappe/erpnext/commit/91929138322bb584b868bbf5b7c5f39684e7b5e9)) * allow to set valuation rate for Rejected Materials (backport [#47582](https://github.com/frappe/erpnext/issues/47582)) ([#47869](https://github.com/frappe/erpnext/issues/47869)) ([3582b32](https://github.com/frappe/erpnext/commit/3582b32f0381ca45725d59183306c67dfe38526a)) * show item name for raw materials in BOM creator ([0c612be](https://github.com/frappe/erpnext/commit/0c612be6fe345ef6b9011c6bdd85efc900d19c38)) * specify expense account and cost center for raw materials in Su… (backport [#47756](https://github.com/frappe/erpnext/issues/47756)) ([#47861](https://github.com/frappe/erpnext/issues/47861)) ([01dd733](https://github.com/frappe/erpnext/commit/01dd7337a2964b6ffc762c7c25f0ee72dfa6540d)) --- erpnext/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/__init__.py b/erpnext/__init__.py index 0e8e3a9fd81..4a6da176b3a 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.63.0" +__version__ = "15.64.0" def get_default_company(user=None):