-
Notifications
You must be signed in to change notification settings - Fork 7.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Consistent accounting dimensions across Sales and Purchase docs
(cherry picked from commit 82a0635) # Conflicts: # erpnext/patches.txt # erpnext/selling/doctype/sales_order/sales_order.json
- Loading branch information
1 parent
8738368
commit 5df5058
Showing
7 changed files
with
145 additions
and
7 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
39 changes: 39 additions & 0 deletions
39
erpnext/patches/v13_0/create_accounting_dimensions_in_orders.py
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
import frappe | ||
from frappe.custom.doctype.custom_field.custom_field import create_custom_field | ||
|
||
|
||
def execute(): | ||
accounting_dimensions = frappe.db.get_all( | ||
"Accounting Dimension", fields=["fieldname", "label", "document_type", "disabled"] | ||
) | ||
|
||
if not accounting_dimensions: | ||
return | ||
|
||
count = 1 | ||
for d in accounting_dimensions: | ||
|
||
if count % 2 == 0: | ||
insert_after_field = "dimension_col_break" | ||
else: | ||
insert_after_field = "accounting_dimensions_section" | ||
|
||
for doctype in ["Purchase Order", "Purchase Receipt", "Sales Order"]: | ||
|
||
field = frappe.db.get_value("Custom Field", {"dt": doctype, "fieldname": d.fieldname}) | ||
|
||
if field: | ||
continue | ||
|
||
df = { | ||
"fieldname": d.fieldname, | ||
"label": d.label, | ||
"fieldtype": "Link", | ||
"options": d.document_type, | ||
"insert_after": insert_after_field, | ||
} | ||
|
||
create_custom_field(doctype, df, ignore_validate=False) | ||
frappe.clear_cache(doctype=doctype) | ||
|
||
count += 1 |
This file contains 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
This file contains 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
This file contains 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