Compare commits

...

2 commits

Author SHA1 Message Date
Lance Edgar 6d884bccc3 fix: hide local customer when not applicable, for order view 2025-01-13 17:04:24 -06:00
Lance Edgar 778a34bfab docs: tweak trove classifiers 2025-01-13 17:03:54 -06:00
2 changed files with 5 additions and 1 deletions

View file

@ -27,6 +27,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Office/Business",
]
license = {text = "GNU General Public License v3+"}
requires-python = ">= 3.8"

View file

@ -778,6 +778,9 @@ class OrderView(MasterView):
order = f.model_instance
# local_customer
if order.customer_id and not order.local_customer:
f.remove('local_customer')
else:
f.set_node('local_customer', LocalCustomerRef(self.request))
# pending_customer