Add column link for CORE Member batches

This commit is contained in:
Lance Edgar 2023-05-05 14:00:19 -05:00
parent eb5027e384
commit ecba911e4c

View file

@ -2,7 +2,7 @@
################################################################################ ################################################################################
# #
# Rattail -- Retail Software Framework # Rattail -- Retail Software Framework
# Copyright © 2010-2021 Lance Edgar # Copyright © 2010-2023 Lance Edgar
# #
# This file is part of Rattail. # This file is part of Rattail.
# #
@ -94,6 +94,11 @@ class CoreMemberBatchView(BatchMasterView):
'status_text', 'status_text',
] ]
def configure_grid(self, g):
super(CoreMemberBatchView, self).configure_grid(g)
g.set_link('input_file')
def configure_form(self, f): def configure_form(self, f):
super(CoreMemberBatchView, self).configure_form(f) super(CoreMemberBatchView, self).configure_form(f)