Prevent mobile receiving actions for batch which is complete or executed
This commit is contained in:
parent
af0eea76e2
commit
72b2510681
|
@ -6,8 +6,10 @@
|
|||
${form.render()|n}
|
||||
<br />
|
||||
|
||||
% if not instance.executed and not instance.complete:
|
||||
${h.text('upc-search', class_='receiving-upc-search', placeholder="Enter UPC", autocomplete='off', **{'data-type': 'search', 'data-url': url('mobile.receiving.lookup', uuid=batch.uuid)})}
|
||||
<br />
|
||||
% endif
|
||||
|
||||
${grid.render_complete()|n}
|
||||
|
||||
|
|
|
@ -48,6 +48,7 @@
|
|||
% endfor
|
||||
% endif
|
||||
|
||||
% if not instance.batch.executed and not instance.batch.complete:
|
||||
<table id="receiving-quantity-keypad-thingy" data-changed="false">
|
||||
<tbody>
|
||||
<tr>
|
||||
|
@ -125,3 +126,4 @@ ${h.hidden('expiration_date')}
|
|||
</div>
|
||||
|
||||
${h.end_form()}
|
||||
% endif
|
||||
|
|
|
@ -208,7 +208,17 @@ class ReceivingBatchView(PurchasingBatchView):
|
|||
fs.configure(include=[
|
||||
fs.vendor.with_renderer(fa.TextFieldRenderer),
|
||||
fs.department.with_renderer(fa.TextFieldRenderer),
|
||||
fs.complete,
|
||||
fs.executed,
|
||||
fs.executed_by,
|
||||
])
|
||||
batch = fs.model
|
||||
if not batch.executed:
|
||||
del [fs.executed, fs.executed_by]
|
||||
if not batch.complete:
|
||||
del fs.complete
|
||||
else:
|
||||
del fs.complete
|
||||
|
||||
def get_mobile_row_data(self, batch):
|
||||
return super(ReceivingBatchView, self).get_mobile_row_data(batch)\
|
||||
|
|
Loading…
Reference in a new issue