summaryrefslogtreecommitdiff
path: root/src/services
diff options
context:
space:
mode:
Diffstat (limited to 'src/services')
-rw-r--r--src/services/waybills.service.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/services/waybills.service.ts b/src/services/waybills.service.ts
index 66225ac..84dba71 100644
--- a/src/services/waybills.service.ts
+++ b/src/services/waybills.service.ts
@@ -59,8 +59,8 @@ const reflectStatus = async (context: HookContext): Promise<HookContext> => {
const addFields = (item: WaybillSchema) => {
- const { operation, records, date } = item;
- const total = item.records.reduce((sum, record) => sum + record.price * record.quantity, 0);
+ const { operation, records } = item;
+ const total = records.reduce((sum, record) => sum + record.price * record.quantity, 0);
const op = operation === 'in' ? 'приход' : 'расход';
const name = `Накладная: ${op} ${total}р`;
return { ...item, name, total };