config.js 865B

1234567891011121314151617181920212223242526272829303132333435363738
  1. export const indexTable = [
  2. { field: 'updatedAt', header: 'Terakhir Diperbaharui' },
  3. { field: 'productNumber', header: 'Nomor Produk' },
  4. { field: 'name', header: 'Nama Produk' },
  5. { field: 'price', header: 'Harga' },
  6. { field: 'qty', header: 'Kuantitas' },
  7. { field: 'unit', header: 'Satuan' },
  8. ]
  9. export const detailTable = [
  10. { field: 'createdAt', header: 'Tanggal' },
  11. { field: 'name', header: 'Nama Produk' },
  12. { field: 'price', header: 'Harga' },
  13. { field: 'qty', header: 'Kuantitas' },
  14. { field: 'ppn', header: 'PPN' },
  15. { field: 'unit', header: 'Satuan' },
  16. ]
  17. export const stockOptionCategory = [
  18. null,
  19. {
  20. label: 'Kuantitas lebih dari satu',
  21. value: 'not null',
  22. },
  23. ]
  24. export const filterOptionCategory = [
  25. null,
  26. {
  27. label: 'Penambahan Stok',
  28. value: 'PBN',
  29. },
  30. {
  31. label: 'Pengurangan Stok',
  32. value: 'PJN',
  33. },
  34. ]