Merge branch 'master' into task/3774/update_stripe_subscription_on_vm_delete
This commit is contained in:
commit
979a62f120
4 changed files with 30 additions and 6 deletions
|
@ -1,6 +1,7 @@
|
||||||
Next:
|
Next:
|
||||||
* #3911: [dcl] Integrate resend activation link into dcl landing payment page
|
* #3911: [dcl] Integrate resend activation link into dcl landing payment page
|
||||||
* #3972: [hosting] Add ungleich company info to invoice footer
|
* #3972: [hosting] Add ungleich company info to invoice footer
|
||||||
|
* #3974: [hosting] Improve invoice number: Show 404 for invoice resources that do not belong to the user
|
||||||
1.2.13: 2017-12-09
|
1.2.13: 2017-12-09
|
||||||
* [cms] Introduce UngleichHeaderBackgroundImageAndTextSliderPlugin that allows to have scrolling images and texts
|
* [cms] Introduce UngleichHeaderBackgroundImageAndTextSliderPlugin that allows to have scrolling images and texts
|
||||||
* [cms] Remove <p> tag for ungleich cms customer item template
|
* [cms] Remove <p> tag for ungleich cms customer item template
|
||||||
|
|
|
@ -671,13 +671,25 @@ class OrdersHostingDetailView(LoginRequiredMixin,
|
||||||
permission_required = ['view_hostingorder']
|
permission_required = ['view_hostingorder']
|
||||||
model = HostingOrder
|
model = HostingOrder
|
||||||
|
|
||||||
def get_object(self):
|
def get_object(self, queryset=None):
|
||||||
return HostingOrder.objects.get(
|
order_id = self.kwargs.get('pk')
|
||||||
pk=self.kwargs.get('pk')) if self.kwargs.get('pk') else None
|
try:
|
||||||
|
hosting_order_obj = HostingOrder.objects.get(pk=order_id)
|
||||||
|
logger.debug("Found HostingOrder for id {order_id}".format(
|
||||||
|
order_id=order_id
|
||||||
|
))
|
||||||
|
except HostingOrder.DoesNotExist:
|
||||||
|
logger.debug("HostingOrder not found for id {order_id}".format(
|
||||||
|
order_id=order_id
|
||||||
|
))
|
||||||
|
hosting_order_obj = None
|
||||||
|
return hosting_order_obj
|
||||||
|
|
||||||
def get_context_data(self, **kwargs):
|
def get_context_data(self, **kwargs):
|
||||||
# Get context
|
# Get context
|
||||||
context = super(DetailView, self).get_context_data(**kwargs)
|
context = super(
|
||||||
|
OrdersHostingDetailView, self
|
||||||
|
).get_context_data(**kwargs)
|
||||||
obj = self.get_object()
|
obj = self.get_object()
|
||||||
owner = self.request.user
|
owner = self.request.user
|
||||||
stripe_api_cus_id = self.request.session.get('customer')
|
stripe_api_cus_id = self.request.session.get('customer')
|
||||||
|
@ -691,6 +703,17 @@ class OrdersHostingDetailView(LoginRequiredMixin,
|
||||||
context['page_header_text'] = _('Confirm Order')
|
context['page_header_text'] = _('Confirm Order')
|
||||||
else:
|
else:
|
||||||
context['page_header_text'] = _('Invoice')
|
context['page_header_text'] = _('Invoice')
|
||||||
|
if not self.request.user.has_perm(
|
||||||
|
self.permission_required[0], obj
|
||||||
|
):
|
||||||
|
logger.debug(
|
||||||
|
"User {user} does not have permission on HostingOrder "
|
||||||
|
"{order_id}. Raising 404 error now.".format(
|
||||||
|
user=self.request.user.email,
|
||||||
|
order_id=obj.id if obj else 'None'
|
||||||
|
)
|
||||||
|
)
|
||||||
|
raise Http404
|
||||||
|
|
||||||
if obj is not None:
|
if obj is not None:
|
||||||
# invoice for previous order
|
# invoice for previous order
|
||||||
|
|
|
@ -67,7 +67,7 @@ lxml==3.6.0
|
||||||
model-mommy==1.2.6
|
model-mommy==1.2.6
|
||||||
phonenumbers==7.4.0
|
phonenumbers==7.4.0
|
||||||
phonenumberslite==7.4.0
|
phonenumberslite==7.4.0
|
||||||
psycopg2==2.6.1
|
psycopg2==2.7.1
|
||||||
pycryptodome==3.4
|
pycryptodome==3.4
|
||||||
pylibmc==1.5.1
|
pylibmc==1.5.1
|
||||||
python-dateutil==2.5.3
|
python-dateutil==2.5.3
|
||||||
|
|
|
@ -22,7 +22,7 @@ msgid "Glasfaser menu"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "\"Sorry, we could not find the page you are looking for!\""
|
msgid "\"Sorry, we could not find the page you are looking for!\""
|
||||||
msgstr ""
|
msgstr "\"Leider konnten wir die von dir gesuchte Seite nicht finden!\""
|
||||||
|
|
||||||
msgid "Toggle navigation"
|
msgid "Toggle navigation"
|
||||||
msgstr "Umschalten"
|
msgstr "Umschalten"
|
||||||
|
|
Loading…
Reference in a new issue