feat(MR): Project and Cost Center in Connections (#36794)

This commit is contained in:
Raffael Meyer 2023-08-24 06:42:18 +02:00 committed by GitHub
parent 758ea7bfe1
commit 54ffe41b54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,6 +6,8 @@ def get_data():
"fieldname": "material_request",
"internal_links": {
"Sales Order": ["items", "sales_order"],
"Project": ["items", "project"],
"Cost Center": ["items", "cost_center"],
},
"transactions": [
{
@ -15,5 +17,6 @@ def get_data():
{"label": _("Stock"), "items": ["Stock Entry", "Purchase Receipt", "Pick List"]},
{"label": _("Manufacturing"), "items": ["Work Order"]},
{"label": _("Internal Transfer"), "items": ["Sales Order"]},
{"label": _("Accounting Dimensions"), "items": ["Project", "Cost Center"]},
],
}