changes
Some checks failed
fusion_accounting CI / test (fusion_accounting_ai) (push) Has been cancelled
fusion_accounting CI / test (fusion_accounting_core) (push) Has been cancelled
fusion_accounting CI / test (fusion_accounting_migration) (push) Has been cancelled

This commit is contained in:
gsinghpal
2026-05-17 03:20:33 -04:00
parent f8586611c9
commit d3c5c25865
30 changed files with 712 additions and 183 deletions

View File

@@ -5,7 +5,7 @@
{
'name': 'Fusion Plating',
'version': '19.0.20.0.0',
'version': '19.0.20.1.0',
'category': 'Manufacturing/Plating',
'summary': 'Core plating / metal finishing ERP: facilities, processes, tanks, baths, jobs, operators.',
'description': """

View File

@@ -33,6 +33,11 @@ class FpProcessNode(models.Model):
_parent_name = 'parent_id'
_order = 'parent_path, sequence, id'
_rec_name = 'display_name'
# Search by both name and code in m2o autocomplete pickers (e.g. the
# Process / Recipe field on the direct-order wizard line). Without
# this, typing the recipe code (e.g. "ENP-STEEL-BASIC") didn't match
# because display_name composes from `name` alone for recipe roots.
_rec_names_search = ['name', 'code']
# ---- Identity & hierarchy ------------------------------------------------