| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- export const optionStatus = [
- {
- label: 'pending',
- value: 'pending',
- },
- {
- label: 'success',
- value: 'success',
- },
- ]
-
- export const filterOptionStatus = [
- null,
- {
- label: 'pending',
- value: 'pending',
- },
- {
- label: 'success',
- value: 'success',
- },
- ]
-
- export const indexTable = [
- { field: 'updatedAt', header: 'Tanggal' },
- { field: 'name', header: 'Nama Supplier' },
- { field: 'phone', header: 'No HP Supplier' },
- { field: 'email', header: 'Email Supplier' },
- { field: 'price', header: 'Total Harga' },
- { field: 'status', header: 'Status' },
- ]
-
- export const cartTable = [
- { field: 'number', header: 'Nomor Produk' },
- { field: 'name', header: 'Produk' },
- { field: 'price', header: 'Harga' },
- { field: 'qty', header: 'Kuantitas' },
- { field: 'unit', header: 'Satuan' },
- ]
-
- export const reportTable = [
- { field: 'updatedAt', header: 'Tanggal' },
- { field: 'totalPrice', header: 'Total Harga' },
- { field: 'qty', header: 'Kuantitas' },
- { field: 'status', header: 'Status' },
- ]
|