Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
e24ab72
fix: copy project from first row to new rows (backport #53295) (#54620)
mergify[bot] Apr 29, 2026
9db03bc
fix(selling): blanket order ordered qty recalculation on sales order …
mergify[bot] Apr 29, 2026
d6f2ff6
fix: show correct status in Serial No Ledger (backport #54567) (#54626)
mergify[bot] Apr 29, 2026
808214f
perf: max recursion depth error in serial no (backport #54629) (#54631)
mergify[bot] Apr 29, 2026
48ebb4c
feat(ux): Naming series dialog (#54554)
nishkagosalia Apr 29, 2026
2e43801
Merge pull request #54635 from frappe/mergify/bp/version-16-hotfix/pr…
nishkagosalia Apr 29, 2026
7bd360a
fix: py error on sales forecast doctype (backport #54641) (#54643)
mergify[bot] Apr 29, 2026
6dbc17d
fix: dont show serial/batch button when PR is submitted (backport #54…
mergify[bot] Apr 29, 2026
19a8ebe
fix(payment_entry): convert the date args to string type before escap…
mergify[bot] Apr 29, 2026
86cf256
fix: correct project filter in buying doctypes (backport #54644) (#54…
mergify[bot] Apr 29, 2026
b300159
fix: use RecoverableErrors isinstance check for repost timeout status…
mergify[bot] Apr 29, 2026
d3c893d
fix: skip depreciation rescheduling when asset is fully depreciated o…
khushi8112 Apr 29, 2026
07a957c
fix: skip rescheduling only for asset being disposed
khushi8112 Apr 29, 2026
bd932da
feat: copy terms attachments to transactions (backport #53403) (#54661)
mergify[bot] Apr 29, 2026
c232f1f
Merge pull request #54659 from frappe/mergify/bp/version-16-hotfix/pr…
khushi8112 Apr 30, 2026
d27cf48
fix: show in and out qty in the stock ledger report for stock recos
rohitwaghchaure Apr 30, 2026
38cfeb1
fix: correct titles set to {customer_name} or {supplier_name} text st…
mergify[bot] Apr 30, 2026
2422237
Merge pull request #54671 from frappe/mergify/bp/version-16-hotfix/pr…
rohitwaghchaure Apr 30, 2026
288cdf3
fix(project): use user.email for invitations and skip disabled users.…
mergify[bot] Apr 30, 2026
126e13b
fix: mark item tax templates as not applicable (backport #54673) (#54…
mergify[bot] Apr 30, 2026
a22d773
fix: Backfill `not_applicable` on Item Tax Template Details for Germa…
mergify[bot] May 1, 2026
0dade2c
fix: incorrect expense account book in purchase return (backport #546…
mergify[bot] May 1, 2026
bca893a
fix: add missing fields in set_currency_labels (backport #54689) (#54…
mergify[bot] May 1, 2026
bbb4e79
fix: set valid_from in created Item Price (backport #54696) (#54700)
mergify[bot] May 2, 2026
18006b9
chore: update POT file (#54710)
frappe-pr-bot May 3, 2026
982810a
fix: accounts and account types in German CoA "SKR 03" (backport #547…
mergify[bot] May 3, 2026
2cd4c1a
fix: error when creating quotation from CRM (backport #54722) (#54725)
mergify[bot] May 4, 2026
e60490d
fix: hide payment and payment request buttons based on permissions in…
mergify[bot] May 5, 2026
0f27881
fix: Remove bom stock report link from manufacturing workspace
nishkagosalia May 5, 2026
c985f94
Merge pull request #54743 from frappe/mergify/bp/version-16-hotfix/pr…
nishkagosalia May 5, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: dont show serial/batch button when PR is submitted (backport #54642
) (#54646)

fix: dont show serial/batch button when PR is submitted (#54642)

(cherry picked from commit 060defc)

Co-authored-by: Mihir Kandoi <kandoimihir@gmail.com>
  • Loading branch information
mergify[bot] and mihir-kandoi authored Apr 29, 2026
commit 6dbc17d71abc36e19cb80580f1d4d10719f86389
Original file line number Diff line number Diff line change
Expand Up @@ -1049,7 +1049,7 @@
"search_index": 1
},
{
"depends_on": "eval:doc.use_serial_batch_fields === 0",
"depends_on": "eval:doc.use_serial_batch_fields === 0 && parent.docstatus == 0",
"fieldname": "add_serial_batch_for_rejected_qty",
"fieldtype": "Button",
"label": "Add Serial / Batch No (Rejected Qty)"
Expand All @@ -1064,7 +1064,7 @@
"fieldtype": "Column Break"
},
{
"depends_on": "eval:doc.use_serial_batch_fields === 0",
"depends_on": "eval:doc.use_serial_batch_fields === 0 && parent.docstatus == 0",
"fieldname": "add_serial_batch_bundle",
"fieldtype": "Button",
"label": "Add Serial / Batch No"
Expand Down Expand Up @@ -1149,7 +1149,7 @@
"idx": 1,
"istable": 1,
"links": [],
"modified": "2026-04-07 15:40:47.032889",
"modified": "2026-04-29 16:01:34.154697",
"modified_by": "Administrator",
"module": "Stock",
"name": "Purchase Receipt Item",
Expand Down