mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-01 11:19:09 +00:00
feat: Provision to send Accounts Receivable Reports using Process SOA (#35789)
* feat: Provision to send Accounts Receivable Reports using Process Statement of Accounts Issue #35707 (cherry picked from commitb3d565c91f) # Conflicts: # erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py * fix: add patch for setting default value of report field (cherry picked from commit555c126eb9) # Conflicts: # erpnext/patches.txt * fix: modify patch (cherry picked from commitcde82bc0cc) * chore: update typo in patch (cherry picked from commit4de7a4c571) * chore: Resolve conflicts --------- Co-authored-by: Gursheen Anand <gursheen@frappe.io> Co-authored-by: Deepesh Garg <deepeshgarg6@gmail.com>
This commit is contained in:
10
erpnext/patches/v14_0/set_report_in_process_SOA.py
Normal file
10
erpnext/patches/v14_0/set_report_in_process_SOA.py
Normal file
@@ -0,0 +1,10 @@
|
||||
# Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and Contributors
|
||||
# License: MIT. See LICENSE
|
||||
|
||||
import frappe
|
||||
|
||||
|
||||
def execute():
|
||||
process_soa = frappe.qb.DocType("Process Statement Of Accounts")
|
||||
q = frappe.qb.update(process_soa).set(process_soa.report, "General Ledger")
|
||||
q.run()
|
||||
Reference in New Issue
Block a user