TableHeader.js 549B

12345678910111213141516
  1. export const IndexTable = [
  2. { field: "transactionNumber", header: "Id Transaksi" },
  3. { field: "customer", header: "Id Customer" },
  4. { field: "price", header: "Total Harga" },
  5. { field: "outlet", header: "Outlet" },
  6. { field: "transactionStatusName", header: "Status" },
  7. ];
  8. export const TransactionBasketTable = [
  9. { field: "laundry", header: "Tipe Laundry" },
  10. { field: "discount", header: "Diskon" },
  11. { field: "quantity", header: "Kuantitas" },
  12. { field: "price", header: "Harga" },
  13. { field: "totalPrice", header: "Total Harga" },
  14. ];