Add serial_number to barcode search #51
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
What: Barcode scanner should also find assets by serial number, not just machine_id and connect_id.
Change: Updated
GET /api/assets/searchto also matchserial_numbercolumn.Before:
WHERE machine_id = ? OR connect_id = ?After:
WHERE machine_id = ? OR connect_id = ? OR serial_number = ?All 7,488 assets have serial_number populated from the MSFS import. Most are placeholder values (
**,00000) but real serial numbers like100065983now resolve to their asset.Commit:
e10e226