Skip to content

Commit

Permalink
tweak(Inventory/js): add inventory id field to edit dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
ccheng-dev committed Jan 6, 2025
1 parent 6d87d38 commit c4b4d97
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions tine20/Inventory/js/InventoryItemEditDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ Tine.Inventory.InventoryItemEditDialog = Ext.extend(Tine.widgets.dialog.EditDial
relationType: 'EMPLOYEE',
relationDegree: 'sibling',
modelUnique: true,
}, ]
}]
]
},
{
Expand Down Expand Up @@ -225,8 +225,14 @@ Tine.Inventory.InventoryItemEditDialog = Ext.extend(Tine.widgets.dialog.EditDial
fieldLabel: this.app.i18n._('Status'),
name: 'status',
columnWidth: 0.333
})
]
})],
[{
columnWidth: 1,
xtype: 'tw-uidtriggerfield',
fieldLabel: this.app.i18n._('ID'),
name: 'inventory_id',
maxLength: 100
}]
]
}]

Expand Down

0 comments on commit c4b4d97

Please sign in to comment.