Allow update of row unit cost directly from receiving batch view

This commit is contained in:
Lance Edgar 2019-11-21 17:41:26 -06:00
parent b7c710cddd
commit c14cf3022c
4 changed files with 196 additions and 5 deletions

View file

@ -694,13 +694,12 @@ class BatchMasterView(MasterView):
if not batch.executed and not batch.complete:
# edit action
if self.rows_editable:
if self.rows_editable and self.has_perm('edit_row'):
icon = 'edit' if use_buefy else 'pencil'
actions.append(self.make_action('edit', icon=icon, url=self.row_edit_action_url))
# delete action
permission_prefix = self.get_permission_prefix()
if self.rows_deletable and self.request.has_perm('{}.delete_row'.format(permission_prefix)):
if self.rows_deletable and self.has_perm('delete_row'):
actions.append(self.make_action('delete', icon='trash', url=self.row_delete_action_url))
kwargs.setdefault('delete_speedbump', self.rows_deletable_speedbump)