summaryrefslogtreecommitdiff
path: root/src/services/products/index.ts
blob: 7e1509a6f2ff8a0b41fc6af8e9858933a784c68f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import Form from './ProductForm';

const service = {
  route: 'products',
  name: 'Товары',
  nameSingular: 'Товар',
  tableFields: [
    { key: 'name', label: 'Название' },
    { key: 'price', label: 'Цена' },
    { key: 'quantity', label: 'На складе' },
  ],
  default: {
    name: '',
    price: '',
    quantity: 0,
  },
  Form,
};

export default service;