| 12345678910111213141516 |
- export const IndexTable = [
- { field: 'transactionNumber', header: 'Id Transaksi' },
- { field: 'customer', header: 'Id Customer' },
- { field: 'price', header: 'Harga' },
- { field: 'outlet', header: 'Outlet' },
- { field: 'transactionStatusName', header: 'Status' },
- ]
-
- export const TransactionBasketTable = [
- { field: 'laundry', header: 'Tipe Laundry' },
- { field: 'discount', header: 'Diskon' },
- { field: 'quantity', header: 'Kuantitas' },
- { field: 'price', header: 'Harga' },
- { field: 'totalPrice', header: 'Total Harga' },
- ]
|