Build [v1.5.0] - Box Management & Label Printing
This commit is contained in:
@@ -11,6 +11,7 @@ export interface Item {
|
||||
quantity: number;
|
||||
min_quantity: number;
|
||||
image_url?: string;
|
||||
box_label?: string;
|
||||
labels_data?: string;
|
||||
serial_number?: string;
|
||||
type?: string;
|
||||
@@ -33,8 +34,8 @@ export class InventoryDatabase extends Dexie {
|
||||
|
||||
constructor() {
|
||||
super('InventoryDatabase');
|
||||
this.version(3).stores({
|
||||
items: '++id, barcode, name, category, part_number, color',
|
||||
this.version(4).stores({
|
||||
items: '++id, barcode, name, category, part_number, color, box_label',
|
||||
pendingOperations: '++id, barcode, timestamp, synced, uuid'
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user