khushi8112
a48967b5ff
fix: test
2026-04-29 20:26:58 +05:30
Mihir Kandoi
a04c028522
fix: correct project filter in buying doctypes ( #54644 )
2026-04-29 11:27:47 +00:00
diptanilsaha
5c5a5361bc
fix(payment_entry): convert the date args to string type before escaping in get_outstanding_reference_documents ( #54639 )
2026-04-29 16:38:57 +05:30
Mihir Kandoi
060defcc2b
fix: dont show serial/batch button when PR is submitted ( #54642 )
2026-04-29 16:36:31 +05:30
Mihir Kandoi
d0d8cff48f
fix: py error on sales forecast doctype ( #54641 )
...
fix: py error on sales forecase doctype
2026-04-29 10:49:05 +00:00
Nishka Gosalia
844f3dbc0b
feat(ux): Naming series dialog ( #54554 )
2026-04-29 14:45:10 +05:30
Khushi Rawat
43937acd8b
fix(UX): Item master form cleanup ( #54538 )
...
* fix: UI improvements for item form
* fix: add descriptions and tooltips to all checkboxes
* feat: show toast notification when item price is created
* fix: do not use selling rate for opening stock entry
* fix: add descriptions and tooltips to item default fields
* fix(test): give valuation rate for opening stock entry creation
* fix: moving naming series toggle before the return
* refactor: more changes in the form UI
2026-04-29 14:44:55 +05:30
Mihir Kandoi
503b5bf140
perf: max recursion depth error in serial no ( #54629 )
2026-04-29 08:34:08 +00:00
rohitwaghchaure
3542087003
Merge pull request #54567 from barredterra/sn-ledger-status
...
fix: show correct status in Serial No Ledger
2026-04-29 12:42:54 +05:30
Pandiyan P
d68801e73a
fix(selling): blanket order ordered qty recalculation on sales order status change ( #54593 )
2026-04-29 11:57:40 +05:30
Nishka Gosalia
addec3aa8f
Merge pull request #53295 from aerele/project-not-copied-from-first-item-row
2026-04-29 11:38:07 +05:30
MochaMind
b001884f9d
fix: sync translations from crowdin ( #54607 )
2026-04-29 01:52:16 +05:30
Ravibharathi
d1a80d40c4
fix: avoid double reduction of pe reference outstanding ( #54193 )
...
Co-authored-by: diptanilsaha <diptanil@frappe.io >
2026-04-29 01:46:55 +05:30
Ravibharathi
a8030c9713
fix: filter overdue purchase order items by company ( #54099 )
2026-04-29 00:58:01 +05:30
Mihir Kandoi
54f20de7e3
fix: duplicate entries being shown in batch exists in future transact… ( #54604 )
...
fix: duplicate entries being shown in batch exists in future transactions msg
2026-04-28 16:28:53 +00:00
diptanilsaha
f8893b04d5
refactor(sms_center): replaced raw SQL queries with Query Builder ( #54600 )
2026-04-28 15:15:46 +00:00
Lakshit Jain
1bade56e37
Merge pull request #54362 from frappe/ignore-opening-check
...
fix: filter opening entries after closing voucher
2026-04-28 18:43:25 +05:30
Lakshit Jain
a2b96799ff
Merge pull request #54517 from vorasmit/exclude-pcv
...
fix: always exclude pcv entries except for closing account head
2026-04-28 18:42:42 +05:30
Smit Vora
d0f0e38e8d
Merge pull request #54479 from Abdeali099/cash-flow-fixes
2026-04-28 17:30:32 +05:30
Smit Vora
590f2ffe28
test: include both accounts to test sum = 0
2026-04-28 16:45:26 +05:30
diptanilsaha
084c7f72f0
fix(get_stock_balance): validate inventory dimension fieldnames ( #54587 )
2026-04-28 16:41:22 +05:30
Smit Vora
84aa54c540
test: pcv is excluded from PL accounts
2026-04-28 16:30:02 +05:30
Smit Vora
5fc3ca1d4b
test: opening entries after period closing
2026-04-28 16:02:32 +05:30
diptanilsaha
d62fa3c464
fix(payment_entry): escape arguments on invoice and order fetching sql queries ( #54582 )
2026-04-28 15:55:45 +05:30
diptanilsaha
07337ba9da
chore(sidebar): moved Inactive Customers from CRM to Selling Workspace Sidbar ( #54578 )
2026-04-28 09:31:51 +00:00
Mihir Kandoi
2088a01c19
fix: update status of quotation in patch ( #54577 )
2026-04-28 09:20:41 +00:00
ravibharathi656
68cc518497
fix: copy project to new item row from parent
2026-04-28 13:10:48 +05:30
Sudharsanan Ashok
6f9089dd5b
fix(manufacturing): remove conversion factor for stock qty ( #54525 )
2026-04-28 10:45:54 +05:30
Vinay Mishra
63edd5ddc6
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:
2026-04-28 05:12:49 +00:00
barredterra
2b3e047143
fix: show correct status in Serial No Ledger
2026-04-27 21:41:38 +02:00
barredterra
cb2e6e1e2e
refactor: extract SN status logic
2026-04-27 21:41:12 +02:00
MochaMind
37e3493ec4
fix: sync translations from crowdin ( #54520 )
2026-04-27 20:53:04 +02:00
Mihir Kandoi
601581d6f8
fix: debit credit not equal in purchase transactions for multi currency ( #54456 )
2026-04-27 20:30:41 +05:30
ruthra kumar
837cdc9cc3
Merge pull request #54509 from ruthra-kumar/hide_toggleable_fields
...
fix: hide feature flag controlled fields on install
2026-04-27 14:43:11 +05:30
Mihir Kandoi
5281d60f2d
fix: correct display depends on condition ( #54548 )
2026-04-27 09:07:36 +00:00
Mihir Kandoi
0aadd1e3a5
fix: make inv dimen reqd only in delivery note ( #54546 )
2026-04-27 08:28:55 +00:00
Pandiyan P
60a6b38c31
fix(stock): remove validation for transfer_qty field ( #54542 )
2026-04-27 06:56:30 +00:00
Mihir Kandoi
be2a4b7b2a
refactor: quality inspection item query ( #54511 )
2026-04-27 10:45:25 +05:30
MochaMind
5c839f60e4
chore: update POT file ( #54536 )
2026-04-26 18:55:27 +02:00
rohitwaghchaure
6e77a45c05
Merge pull request #54514 from aerele/fix/incoming-rate-issue
...
fix(stock): set incoming rate as zero for outward sle
2026-04-26 10:06:35 +05:30
rohitwaghchaure
2a6ddc7f67
Merge pull request #54530 from aerele/fix/support-#66029
...
fix(stock): show item code in serial and batch selector dialog
2026-04-26 10:04:41 +05:30
Sudharsanan11
fee5bcadb2
fix(stock): add stock entry in batch master connection
2026-04-26 00:05:19 +05:30
Sudharsanan11
f572bc51e1
fix(stock): show item code in serial and batch selector dialog
2026-04-26 00:05:19 +05:30
Nishka Gosalia
fba33b7e7a
refactor(UX): selling settings form ( #54412 )
...
refactor(UX): Selling settings form cleanup
2026-04-25 15:27:32 +05:30
diptanilsaha
ebca389136
fix(PCV): set correct filters of from_date and to_date on General Ledger Report on clicking Ledger button ( #54522 )
2026-04-25 00:03:38 +05:30
Smit Vora
c94b8c41f3
chore: comment
2026-04-24 19:32:00 +05:30
mahsem
e517eeaaa2
feat: danish_bosnian_address_template ( #54093 )
2026-04-24 14:54:37 +02:00
Khushi Rawat
c3931d4e29
Merge pull request #53843 from Shllokkk/ap-print-format
...
feat: Accounts Payable print template revamp and print format introduction
2026-04-24 17:51:45 +05:30
Khushi Rawat
0b9fdcd8cd
Merge pull request #53870 from Shllokkk/arap-summary-print-formats
...
feat: AR and AP summary reports print template revamp and print format introduction
2026-04-24 17:42:52 +05:30
Khushi Rawat
b4e941835b
Merge pull request #53822 from Shllokkk/ar-print-format
...
feat: Accounts Receivable print template revamp and print format introduction
2026-04-24 17:41:13 +05:30