chore: release v15#54584
Merged
diptanilsaha merged 30 commits intoversion-15from Apr 28, 2026
Merged
Conversation
(cherry picked from commit d9b255b)
(cherry picked from commit 9eeb819) # Conflicts: # erpnext/accounts/doctype/payment_entry/test_payment_entry.py
…-54307 fix(accounts): fetch project name from payment entry to journal entry (backport #54307)
…port #54440) (#54492) * fix: preserve inventory dimensions when raw materials are reset (#54440) * fix: preserve inventory dimensions when raw materials are reset * test: add test case (cherry picked from commit 0e20e35) # Conflicts: # erpnext/patches.txt # erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js # erpnext/subcontracting/doctype/subcontracting_receipt/test_subcontracting_receipt.py * chore: resolve conflicts * chore: resolve conflicts * chore: resolve conflicts --------- Co-authored-by: Mihir Kandoi <kandoimihir@gmail.com>
…54571) fix: negative quantity check in validate_item_qty (#54559) Fix negative quantity check in validate_item_qty When saving a Blanket Order with a blank qty field in the items table, the following error is raised: TypeError: '<' not supported between instances of 'NoneType' and 'int' Root cause: The validate_item_qty method compares d.qty < 0 directly. When the qty field is left empty, its value is None, and Python cannot compare None with an integer. Fix Wrap d.qty with flt(), which safely converts None (and any non-numeric value) to 0.0 before the comparison. # Before if d.qty < 0: # After if flt(d.qty) < 0: (cherry picked from commit 63edd5d) Co-authored-by: Vinay Mishra <39999379+vinaymishraofficial@users.noreply.github.com>
) (#54612) * fix: avoid double reduction of pe reference outstanding (#54193) Co-authored-by: diptanilsaha <diptanil@frappe.io> (cherry picked from commit d1a80d4) # Conflicts: # erpnext/accounts/utils.py * chore: resolved conflict * chore: remove unused import of DateTimeLikeObject --------- Co-authored-by: Ravibharathi <131471282+ravibharathi656@users.noreply.github.com> Co-authored-by: diptanilsaha <diptanil@frappe.io>
Collaborator
Author
|
🎉 This PR is included in version 15.106.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Automated weekly release.