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
Khushi Rawat
9132f0fc4a
Merge pull request #53762 from Shllokkk/gl-print-format
...
feat: General ledger print template revamp and print format introduction
2026-04-24 17:39:45 +05:30
Sudharsanan11
ce37530e70
fix(stock): set incoming rate as zero for outward sle
2026-04-24 17:29:13 +05:30
ruthra kumar
889fdf2f11
fix: hide feature flag controlled fields on install
2026-04-24 17:13:36 +05:30
Smit Vora
5518e8c99f
Merge pull request #54480 from ljain112/fix-change-customer
2026-04-24 13:19:32 +05:30
Smit Vora
419b9b3279
Merge pull request #54476 from ljain112/fix-tds-threshhold
...
fix: ensure tax withholding entries respect date range of category
2026-04-24 13:18:25 +05:30
Khushi Rawat
a9e6f8efd8
Merge pull request #53314 from aerele/budget-validation-on-cancel
...
fix: skip budget validation when cancelling GL entries
2026-04-24 12:14:09 +05:30
Mihir Kandoi
0e20e35842
fix: preserve inventory dimensions when raw materials are reset ( #54440 )
...
* fix: preserve inventory dimensions when raw materials are reset
* test: add test case
2026-04-23 17:16:12 +00:00
Raffael Meyer
b4107b8fd5
test(Code List): check content, not filename ( #54490 )
2026-04-23 15:40:22 +00:00
Raffael Meyer
a165b240a7
fix(edi): hardcode "Code List" DocType in importer ( #54488 )
2026-04-23 13:48:18 +00:00
Abdeali Chharchhodawala
f6639db0e9
feat: enhance account category with root type ( #53190 )
2026-04-23 17:34:37 +05:30
Abdeali Chharchhodawala
c35221852a
feat: Add XLSX styling support to custom financial report templates ( #52612 )
2026-04-23 17:15:41 +05:30
Abdeali Chharchhoda
3854d2cbf6
chore: minor fix
2026-04-23 17:13:01 +05:30
Sudharsanan Ashok
ab19b16fe2
fix(stock): show available qty in warehouse link field ( #54474 )
2026-04-23 17:08:54 +05:30