mirror of
https://github.com/frappe/erpnext.git
synced 2026-08-13 06:31:48 +00:00
chore(release): Bumped to Version 15.119.1
## [15.119.1](https://github.com/frappe/erpnext/compare/v15.119.0...v15.119.1) (2026-08-11) ### Bug Fixes * **accounts receivable:** made territory field multi select (backport [#57322](https://github.com/frappe/erpnext/issues/57322)) ([#57808](https://github.com/frappe/erpnext/issues/57808)) ([69c00b3](69c00b3362)) * allow selecting a warehouse for new items in the update items dialog ([#57876](https://github.com/frappe/erpnext/issues/57876)) ([76f485b](76f485ba43)) * clear deferred revenue/expense fields on uncheck (backport [#57140](https://github.com/frappe/erpnext/issues/57140)) ([ce898a9](ce898a9695)) * **coa_importer:** added server-side validations for importing chart of accounts (backport [#58065](https://github.com/frappe/erpnext/issues/58065)) ([#58067](https://github.com/frappe/erpnext/issues/58067)) ([d0ef967](d0ef967890)) * **coa_importer:** allow importing COA through `import_coa` only for `Accounts Manager` (backport [#56132](https://github.com/frappe/erpnext/issues/56132)) ([#58064](https://github.com/frappe/erpnext/issues/58064)) ([00d8dc7](00d8dc73b9)) * convert hours to minutes in workstation complete_job ([5e753ec](5e753ec6e4)) * escape `customer_details` on lead creation from appointment (backport [#57947](https://github.com/frappe/erpnext/issues/57947)) ([#57948](https://github.com/frappe/erpnext/issues/57948)) ([2ca71f1](2ca71f16c4)) * field validation and perm checks on `get_stock_reservation_entries_for_voucher` (backport [#57968](https://github.com/frappe/erpnext/issues/57968)) ([#57986](https://github.com/frappe/erpnext/issues/57986)) ([a0d1561](a0d156120b)) * get_valuation_method takes no company argument on version-15 ([c45ea35](c45ea3545d)) * guard reconciliation table deletes when tables are missing ([140e06d](140e06dfa4)) * incorrect entry detection in Stock Ledger Invariant Check ([#57886](https://github.com/frappe/erpnext/issues/57886)) ([529ff25](529ff251fb)) * keep asset repair downtime in sync with entered dates ([0e9c08d](0e9c08d494)) * **manufacturing:** avoid child BOM cache lookups ([5c2123f](5c2123f6ed)) * **manufacturing:** correct nested BOM quantities ([a310346](a3103469e2)) * **manufacturing:** keep item code searchable when a barcode matches the same text ([0310db2](0310db22ec)) * optimize product bundle item search ([52a1b12](52a1b124b2)) * preserve custom title on new JV (backport [#57987](https://github.com/frappe/erpnext/issues/57987)) ([#57988](https://github.com/frappe/erpnext/issues/57988)) ([713af31](713af31eda)) * purchase return of batchwise valuation batch valued at original receipt rate instead of batch avg rate (version-15-hotfix) ([#57837](https://github.com/frappe/erpnext/issues/57837)) ([e2ded11](e2ded11e09)) * re-check future sle before queuing repost on submit ([#57664](https://github.com/frappe/erpnext/issues/57664)) ([#57960](https://github.com/frappe/erpnext/issues/57960)) ([d510978](d510978a44)) * reflect in-invoice receivable settlements in Sales Register ledger view ([91afc04](91afc04d9f)) * repost read stale sibling SLE rate for moving average returns ([5738cfc](5738cfce79)) * require material transfer before job card time logs ([2e5ae18](2e5ae188d6)) * resolve version-15 backport conflicts ([b25a2f2](b25a2f2cdf)) * **selling:** bill re-delivered sales order quantities ([47c6274](47c6274b13)) * **selling:** reset stale item details on item change (backport [#58051](https://github.com/frappe/erpnext/issues/58051)) ([#58052](https://github.com/frappe/erpnext/issues/58052)) ([01372cf](01372cf295)) * set `restrict_globals=True` in `frappe.render_template` (backport [#57899](https://github.com/frappe/erpnext/issues/57899)) ([#57901](https://github.com/frappe/erpnext/issues/57901)) ([af7953a](af7953a933)) * **setup:** fetch driver address by supplier link ([2a4a9ff](2a4a9fff3d)) * skip incoming rate calc when serial no qty is zero (backport [#57427](https://github.com/frappe/erpnext/issues/57427)) ([#57956](https://github.com/frappe/erpnext/issues/57956)) ([f9a09f0](f9a09f0ac4)) * **stock:** grant account access in blanket order role test ([5e78603](5e7860362e)) * **stock:** handle multi-item opening balance in Stock Ledger report (backport [#57591](https://github.com/frappe/erpnext/issues/57591)) ([#57795](https://github.com/frappe/erpnext/issues/57795)) ([ebdc0cd](ebdc0cdf7f)) * **stock:** scope over deliver/receive role check to delivery and receipt overflow ([328c72d](328c72da18)) * **stock:** validate new warehouse inventory account after naming ([5e3d094](5e3d0947c8)) * **stock:** validate over delivery/receipt allowance in stock settings ([7be8a99](7be8a99a23)) * **stock:** validate warehouse accounts when used ([d620720](d620720445)) * **subscription:** don't reactivate a cancelled subscription (backport [#57774](https://github.com/frappe/erpnext/issues/57774)) ([#57780](https://github.com/frappe/erpnext/issues/57780)) ([edc8daa](edc8daae21)), closes [#57761](https://github.com/frappe/erpnext/issues/57761) [#57761](https://github.com/frappe/erpnext/issues/57761) * sync open reference forms after Quality Inspection updates them ([c1d198d](c1d198d205)) * tolerate floating-point drift in sales team allocated percentage ([262fbc5](262fbc52d8)) * use stock settings for warehouse defaults ([d4ed207](d4ed2074d5)) * validate webform for project ([680ce70](680ce70c35)) * zero-rate repost fallback could still read sibling SLE ([8131af9](8131af9405))
This commit is contained in:
@@ -4,7 +4,7 @@ import inspect
|
||||
import frappe
|
||||
from frappe.utils.user import is_website_user
|
||||
|
||||
__version__ = "15.119.0"
|
||||
__version__ = "15.119.1"
|
||||
|
||||
|
||||
def get_default_company(user=None):
|
||||
|
||||
Reference in New Issue
Block a user