Compare commits
2 commits
f25e597ff5
...
6d884bccc3
Author | SHA1 | Date | |
---|---|---|---|
![]() |
6d884bccc3 | ||
![]() |
778a34bfab |
|
@ -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"
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue