Private
Public Access
1
0

fix addresses in pl

This commit is contained in:
2025-01-27 21:18:24 +01:00
parent a72ead8672
commit c0fba0502e
2 changed files with 5 additions and 3 deletions

View File

@@ -1 +0,0 @@
sander@rowsandall-2.17364:1733469196

View File

@@ -130,8 +130,11 @@ def billing_view(request):
if billingaddressform.is_valid():
cd = billingaddressform.cleaned_data
for attr, value in cd.items():
setattr(r, attr, value)
r.save()
try:
setattr(r, attr, value)
r.save()
except:
pass
if billingaddressform.is_valid():
if planselectform.is_valid():