From 58814a5454bfc182c2c3de98a794024732167777 Mon Sep 17 00:00:00 2001 From: PekopT Date: Mon, 19 Sep 2016 13:01:10 +0300 Subject: [PATCH] texts --- wallets/signals.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wallets/signals.py b/wallets/signals.py index 42b6cfd..e974cab 100644 --- a/wallets/signals.py +++ b/wallets/signals.py @@ -65,7 +65,7 @@ def reserve_stages(sender, instance, created, **kwargs): stage.save() inv_history = InvoiceHistory() - inv_history.comment = 'Резервирование средств за этапы ' + ' , '.join(stages_names) + ' заказа' + str(order) + inv_history.comment = 'Резервирование средств за этап(ы) ' + ' , '.join(stages_names) + ' заказа ' + str(order) inv_history.sum = instance.sum inv_history.user = instance.customer inv_history.type = "history" @@ -89,7 +89,7 @@ def reserve_stages_from_score(sender, instance, created, **kwargs): stage.save() inv_history = InvoiceHistory() - inv_history.comment = 'Резервирование средств за этапы ' + ' , '.join(stages_names) + ' заказа' + str(order) + inv_history.comment = 'Резервирование средств за этап(ы) ' + ' , '.join(stages_names) + ' заказа ' + str(order) inv_history.sum = -instance.sum inv_history.user = instance.customer inv_history.type = "score"