summaryrefslogtreecommitdiff
path: root/src/services/waybills/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/services/waybills/index.ts')
-rw-r--r--src/services/waybills/index.ts27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/services/waybills/index.ts b/src/services/waybills/index.ts
new file mode 100644
index 0000000..f8a4be6
--- /dev/null
+++ b/src/services/waybills/index.ts
@@ -0,0 +1,27 @@
+import Form from './WaybillForm';
+import Panel from './WaybillPanel';
+import { waybillStatusNames, operationNames } from '../constants';
+
+const service = {
+ route: 'waybills',
+ name: 'Накладные',
+ nameSingular: 'Накладная',
+ tableFields: [
+ {
+ key: 'status',
+ label: 'Статус',
+ transform: (status: 'waiting' | 'executed' | 'cancelled') => waybillStatusNames[status],
+ },
+ { key: 'operation', label: 'Операция', transform: (op: 'in' | 'out') => operationNames[op] },
+ { key: 'total', label: 'Сумма' },
+ { key: 'contractor.name', label: 'Контрагент' },
+ ],
+ default: {
+ operation: 'in',
+ records: [],
+ },
+ Form,
+ Panel,
+};
+
+export default service;