Update stock translations

This commit is contained in:
Skia 2017-04-25 09:16:38 +02:00
parent df20bf6dde
commit 423313f008
5 changed files with 745 additions and 524 deletions

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -85,6 +85,7 @@ INSTALLED_APPS = (
'com',
'election',
'forum',
'stock',
)
MIDDLEWARE_CLASSES = (

View File

@ -373,7 +373,7 @@ class StockTakeItemsBaseFormView(CounterTabsMixin, CanEditMixin, DetailView, Bas
for i in self.stock.items.filter(type=t).order_by('name').all():
field_name = "item-%s" % (str(i.id))
fields[field_name] = forms.IntegerField(required=False, label=str(i), initial=0, min_value=0, max_value=i.effective_quantity,
help_text=_("(%(effective_quantity)s left" % {"effective_quantity": str(i.effective_quantity)}))
help_text=_("%(effective_quantity)s left" % {"effective_quantity": str(i.effective_quantity)}))
kwargs[field_name] = i.effective_quantity
kwargs['stock_id'] = self.stock.id
kwargs['counter_id'] = self.stock.counter.id