Do not require Wave ID by default, for customer record
This commit is contained in:
parent
f1959a9b9e
commit
e7514d2bd1
|
@ -2,7 +2,7 @@
|
||||||
################################################################################
|
################################################################################
|
||||||
#
|
#
|
||||||
# Rattail -- Retail Software Framework
|
# Rattail -- Retail Software Framework
|
||||||
# Copyright © 2010-2022 Lance Edgar
|
# Copyright © 2010-2023 Lance Edgar
|
||||||
#
|
#
|
||||||
# This file is part of Rattail.
|
# This file is part of Rattail.
|
||||||
#
|
#
|
||||||
|
@ -52,6 +52,7 @@ class CustomerViewSupplement(ViewSupplement):
|
||||||
|
|
||||||
def configure_form(self, f):
|
def configure_form(self, f):
|
||||||
f.append('wave_id')
|
f.append('wave_id')
|
||||||
|
f.set_required('wave_id', False)
|
||||||
|
|
||||||
def get_xref_buttons(self, customer):
|
def get_xref_buttons(self, customer):
|
||||||
model = self.model
|
model = self.model
|
||||||
|
|
Loading…
Reference in a new issue