diff options
Diffstat (limited to 'src/services.js')
-rw-r--r-- | src/services.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/services.js b/src/services.js index f8e27cf..3e53c14 100644 --- a/src/services.js +++ b/src/services.js @@ -50,13 +50,11 @@ const services: ServiceParams[] = [ tableFields: [ { key: 'status', label: 'Статус', transform: status => waybillStatusNames[status] }, { key: 'operation', label: 'Операция', transform: op => operationNames[op] }, - { key: 'product.name', label: 'Товар' }, { key: 'contractor.name', label: 'Контрагент' }, - { key: 'quantity', label: 'Количество' }, ], default: { operation: 'in', - quantity: 1, + records: [], }, }, ]; |