diff options
author | eug-vs <eug-vs@keemail.me> | 2021-03-14 15:43:27 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2021-03-14 15:43:27 +0300 |
commit | 7c2f2f2835ac7a8a13704bbc9fd706128243286a (patch) | |
tree | 98903182fc12cdf0aa1ecb3bcc9dfd374e77d1df /src/services.js | |
parent | c243612c1a282706e76315406033520b47fbabf4 (diff) | |
download | commercel-ui-7c2f2f2835ac7a8a13704bbc9fd706128243286a.tar.gz |
feat: add Delete button
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: { |