Fix references to Department.see_id field

This commit is contained in:
Lance Edgar 2020-12-31 19:02:12 -06:00
parent cb03dea6c1
commit 6bed4db1f6
2 changed files with 4 additions and 4 deletions

View file

@ -39,7 +39,7 @@ class DepartmentView(CoreOfficeMasterView):
route_prefix = 'corepos.departments' route_prefix = 'corepos.departments'
labels = { labels = {
'dept_see_id': "See ID", 'see_id': "See ID",
'modified_by_id': "Modified by ID", 'modified_by_id': "Modified by ID",
} }
@ -51,7 +51,7 @@ class DepartmentView(CoreOfficeMasterView):
'limit', 'limit',
'minimum', 'minimum',
'discount', 'discount',
'dept_see_id', 'see_id',
'modified', 'modified',
'modified_by_id', 'modified_by_id',
'margin', 'margin',

View file

@ -57,7 +57,7 @@ class SuperDepartmentView(base.DepartmentView):
] ]
row_labels = { row_labels = {
'dept_see_id': "See ID", 'see_id': "See ID",
'modified_by_id': "Modified by ID", 'modified_by_id': "Modified by ID",
} }
@ -69,7 +69,7 @@ class SuperDepartmentView(base.DepartmentView):
'limit', 'limit',
'minimum', 'minimum',
'discount', 'discount',
'dept_see_id', 'see_id',
'modified', 'modified',
'modified_by_id', 'modified_by_id',
'margin', 'margin',