Updated Asset Entry and Views

This commit is contained in:
2026-06-03 14:12:32 -05:00
parent 2f13b8c590
commit 8335f1af1b
9 changed files with 620 additions and 73 deletions

View File

@@ -2,6 +2,23 @@ export const bookItems = ['GAAP', 'FEDERAL', 'STATE', 'AMT', 'ACE', 'USER'];
export const statusItems = ['in_service', 'cip', 'reserved', 'checked_out', 'disposed', 'retired'];
export const conventionItems = [
{ title: 'Half-year', value: 'half_year' },
{ title: 'Mid-quarter', value: 'mid_quarter' },
{ title: 'Mid-month', value: 'mid_month' },
{ title: 'Full-month', value: 'full_month' },
{ title: 'None', value: 'none' }
];
export const newUsedItems = [
{ title: 'New', value: 'new' },
{ title: 'Used', value: 'used' }
];
export const taskTypeItems = ['maintenance', 'inspection', 'calibration', 'renewal', 'compliance', 'other'];
export const conditionItems = ['excellent', 'good', 'fair', 'poor', 'out_of_service'];
export const customFieldTypes = [
{ title: 'Text', value: 'text' },
{ title: 'Number', value: 'numeric' },