add project template into estimate creation to help project generation flow

This commit is contained in:
Casey 2026-01-07 16:12:31 -06:00
parent 8f90ef09fb
commit 54ae6d14f8
8 changed files with 118 additions and 66 deletions

View file

@ -191,7 +191,17 @@ fixtures = [
"dt": "Custom Field",
"filters": [
["dt", "=", "Quotation"],
["fieldname", "=", "custom_quotation_template"]
["fieldname", "in", [
"custom_quotation_template",
"custom_project_template"
]]
]
},
{
"dt": "Custom Field",
"filters": [
["dt", "=", "Sales Order"],
["fieldname", "=", "custom_project_template"]
]
},
{
@ -200,6 +210,13 @@ fixtures = [
["dt", "=", "Lead"],
["fieldname", "=", "custom_customer_name"]
]
},
{
"dt": "Custom Field",
"filters": [
["dt", "=", "Project Template"],
["fieldname", "=", "company"]
]
}
]