diff options
Diffstat (limited to 'src/services.js')
-rw-r--r-- | src/services.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/services.js b/src/services.js index bebf07f..f8e27cf 100644 --- a/src/services.js +++ b/src/services.js @@ -48,10 +48,10 @@ const services: ServiceParams[] = [ name: 'Накладные', nameSingular: 'Накладная', tableFields: [ + { key: 'status', label: 'Статус', transform: status => waybillStatusNames[status] }, { key: 'operation', label: 'Операция', transform: op => operationNames[op] }, { key: 'product.name', label: 'Товар' }, - { key: 'contractor.name', label: 'Поставщик' }, - { key: 'status', label: 'Статус', transform: status => waybillStatusNames[status] }, + { key: 'contractor.name', label: 'Контрагент' }, { key: 'quantity', label: 'Количество' }, ], default: { |