Example #1
0
    def get_context_data(self, **kwargs):
        application = get_object_or_404(Application, pk=self.args[0])

        kwargs['application'] = serialize(application, posthook=format_application)

        # if reissue
        if application.licence:
            kwargs['issue_licence_form'] = IssueLicenceForm(instance=application.licence)

            kwargs['extracted_fields'] = application.licence.extracted_fields
        else:
            purposes = '\n\n'.join(Assessment.objects.filter(application=application).values_list('purpose', flat=True))

            if hasattr(application.licence_type, 'returntype'):
                return_frequency = application.licence_type.returntype.month_frequency
            else:
                return_frequency = -1

            kwargs['issue_licence_form'] = IssueLicenceForm(purpose=purposes, is_renewable=application.licence_type.is_renewable,
                                                            return_frequency=return_frequency)

            kwargs['extracted_fields'] = extract_licence_fields(application.licence_type.application_schema, application.data)

        if application.proxy_applicant is None:
            to = application.applicant
        else:
            to = application.proxy_applicant

        kwargs['log_entry_form'] = ApplicationLogEntryForm(to=to.get_full_name(), fromm=self.request.user.get_full_name())

        kwargs['payment_status'] = payment_utils.PAYMENT_STATUSES.get(payment_utils.
                                                                      get_application_payment_status(application))

        return super(IssueLicenceView, self).get_context_data(**kwargs)
Example #2
0
    def get(self, request, *args, **kwargs):
        application = get_object_or_404(Application, pk=self.args[0])

        original_issue_date = None
        if application.licence is not None:
            issue_licence_form = IssueLicenceForm(request.GET, instance=application.licence, skip_required=True)
            original_issue_date = application.licence.issue_date
            extracted_fields = application.licence.extracted_fields
        else:
            issue_licence_form = IssueLicenceForm(request.GET, skip_required=True)
            extracted_fields = extract_licence_fields(application.licence_type.application_schema, application.data)

        if issue_licence_form.is_valid():
            licence = issue_licence_form.save(commit=False)
            licence.issue_date = date.today()
            licence.licence_type = application.licence_type
            licence.profile = application.applicant_profile
            licence.holder = application.applicant
            licence.extracted_fields = update_licence_fields(extracted_fields, request.GET)

            filename = '%s.pdf' % application.lodgement_number

            application.customer_status = 'approved'
            application.processing_status = 'issued'
            application.licence = licence

            response = HttpResponse(content_type='application/pdf')

            response.write(create_licence_pdf_bytes(filename, licence, application,
                                                    settings.WL_PDF_URL,
                                                    original_issue_date))

            return response
        else:
            return HttpResponse('<script type="text/javascript">window.close()</script>')
Example #3
0
    def get(self, request, *args, **kwargs):
        application = get_object_or_404(Application, pk=self.args[0])

        original_issue_date = None
        if application.licence is not None:
            issue_licence_form = IssueLicenceForm(request.GET, instance=application.licence, skip_required=True)
            original_issue_date = application.licence.issue_date
            extracted_fields = application.licence.extracted_fields
        else:
            issue_licence_form = IssueLicenceForm(request.GET, skip_required=True)
            extracted_fields = extract_licence_fields(application.licence_type.application_schema, application.data)

        licence = issue_licence_form.save(commit=False)
        licence.licence_type = application.licence_type
        licence.profile = application.applicant_profile
        licence.holder = application.applicant
        licence.extracted_fields = update_licence_fields(extracted_fields, request.GET)

        filename = '%s.pdf' % application.lodgement_number

        application.customer_status = 'approved'
        application.processing_status = 'issued'
        application.licence = licence

        response = HttpResponse(content_type='application/pdf')

        response.write(create_licence_pdf_bytes(filename, licence, application,
                                                request.build_absolute_uri(reverse('home')),
                                                original_issue_date))

        return response
Example #4
0
    def get(self, request, *args, **kwargs):
        application = get_object_or_404(Application, pk=self.args[0])

        original_issue_date = None
        if application.licence is not None:
            issue_licence_form = IssueLicenceForm(request.GET,
                                                  instance=application.licence,
                                                  skip_required=True)
            original_issue_date = application.licence.issue_date
            extracted_fields = application.licence.extracted_fields
        else:
            issue_licence_form = IssueLicenceForm(request.GET,
                                                  skip_required=True)
            extracted_fields = extract_licence_fields(
                application.licence_type.application_schema, application.data)

        if issue_licence_form.is_valid():
            licence = issue_licence_form.save(commit=False)
            licence.issue_date = date.today()
            licence.licence_type = application.licence_type
            licence.profile = application.applicant_profile
            licence.holder = application.applicant
            licence.extracted_fields = update_licence_fields(
                extracted_fields, request.GET)

            filename = '%s.pdf' % application.lodgement_number

            application.customer_status = 'approved'
            application.processing_status = 'issued'
            application.licence = licence

            response = HttpResponse(content_type='application/pdf')

            response.write(
                create_licence_pdf_bytes(filename, licence, application,
                                         settings.WL_PDF_URL,
                                         original_issue_date))

            return response
        else:
            return HttpResponse(
                '<script type="text/javascript">window.close()</script>')
Example #5
0
    def get_context_data(self, **kwargs):
        application = get_object_or_404(Application, pk=self.args[0])

        kwargs['application'] = serialize(application,
                                          posthook=format_application)

        if application.licence:
            kwargs['issue_licence_form'] = IssueLicenceForm(
                instance=application.licence)

            kwargs['extracted_fields'] = application.licence.extracted_fields
        else:
            purposes = '\n\n'.join(
                Assessment.objects.filter(application=application).values_list(
                    'purpose', flat=True))

            if hasattr(application.licence_type, 'returntype'):
                return_frequency = application.licence_type.returntype.month_frequency
            else:
                return_frequency = -1

            kwargs['issue_licence_form'] = IssueLicenceForm(
                purpose=purposes,
                is_renewable=application.licence_type.is_renewable,
                return_frequency=return_frequency)

            kwargs['extracted_fields'] = extract_licence_fields(
                application.licence_type.application_schema, application.data)

        if application.proxy_applicant is None:
            to = application.applicant
        else:
            to = application.proxy_applicant

        kwargs['log_entry_form'] = ApplicationLogEntryForm(
            to=to.get_full_name(), fromm=self.request.user.get_full_name())

        kwargs['payment_status'] = payment_utils.PAYMENT_STATUSES.get(
            payment_utils.get_application_payment_status(application))

        return super(IssueLicenceView, self).get_context_data(**kwargs)
Example #6
0
    def post(self, request, *args, **kwargs):
        application = get_object_or_404(Application, pk=self.args[0])

        is_save = request.POST.get('submissionType') == 'save'
        skip_required = is_save

        # get extract fields from licence if it exists, else extract from application data
        if application.licence is not None:
            issue_licence_form = IssueLicenceForm(request.POST,
                                                  instance=application.licence,
                                                  files=request.FILES,
                                                  skip_required=skip_required)
            extracted_fields = application.licence.extracted_fields
        else:
            issue_licence_form = IssueLicenceForm(request.POST,
                                                  files=request.FILES,
                                                  skip_required=skip_required)
            extracted_fields = extract_licence_fields(
                application.licence_type.application_schema, application.data)

        # update contents of extracted field based on posted data
        extracted_fields = update_licence_fields(extracted_fields,
                                                 request.POST)

        payment_status = payment_utils.get_application_payment_status(
            application)
        payment_status_verbose = payment_utils.PAYMENT_STATUSES.get(
            payment_status)

        log_entry_form = ApplicationLogEntryForm(
            to=get_log_entry_to(application),
            fromm=self.request.user.get_full_name())

        if issue_licence_form.is_valid():
            licence = issue_licence_form.save(commit=False)

            # save required fields that aren't contained in the form
            licence.licence_type = application.licence_type
            licence.profile = application.applicant_profile
            licence.holder = application.applicant
            licence.extracted_fields = extracted_fields
            licence.save()

            # clear re-form variants from application
            licence.variants.clear()
            for index, avl in enumerate(
                    application.variants.through.objects.filter(
                        application=application).order_by('order')):
                WildlifeLicenceVariantLink.objects.create(licence=licence,
                                                          variant=avl.variant,
                                                          order=index)

            # save m2m fields of licence (must be done after licence saved)
            issue_licence_form.save_m2m()

            application.licence = licence
            application.save()

            if is_save:
                messages.warning(request, 'Licence saved but not yet issued.')

                return render(
                    request,
                    self.template_name,
                    {
                        #'application': serialize(application, posthook=format_application),
                        'application':
                        serialize(
                            application,
                            posthook=format_application,
                            related={
                                'applicant': {
                                    'exclude': [
                                        'residential_address',
                                        'postal_address', 'billing_address'
                                    ]
                                },
                                'applicant_profile': {
                                    'fields':
                                    ['email', 'id', 'institution', 'name']
                                },
                                'previous_application': {
                                    'exclude': [
                                        'applicant', 'applicant_profile',
                                        'previous_application', 'licence'
                                    ]
                                },
                                'licence': {
                                    'related': {
                                        'holder': {
                                            'exclude': [
                                                'residential_address',
                                                'postal_address',
                                                'billing_address'
                                            ]
                                        },
                                        'issuer': {
                                            'exclude': [
                                                'residential_address',
                                                'postal_address',
                                                'billing_address'
                                            ]
                                        },
                                        'profile': {
                                            'related': {
                                                'user': {
                                                    'exclude': [
                                                        'residential_address',
                                                        'postal_address',
                                                        'billing_address'
                                                    ]
                                                }
                                            },
                                            'exclude': ['postal_address']
                                        }
                                    },
                                    'exclude': [
                                        'holder', 'issuer', 'profile',
                                        'licence_ptr'
                                    ]
                                }
                            }),
                        'issue_licence_form':
                        issue_licence_form,
                        'extracted_fields':
                        extracted_fields,
                        'payment_status':
                        payment_status_verbose,
                        'log_entry_form':
                        log_entry_form
                    })
            else:
                try:
                    self._issue_licence(request, application,
                                        issue_licence_form)
                except PaymentException as pe:
                    messages.error(request, pe.message)
                    return redirect(request.get_full_path())

                return redirect('wl_dashboard:home')
        else:
            messages.error(
                request,
                'Please fix the errors below before saving / issuing the licence.'
            )

            return render(
                request,
                self.template_name,
                {
                    #'application': serialize(application, posthook=format_application),
                    'application':
                    serialize(
                        application,
                        posthook=format_application,
                        related={
                            'applicant': {
                                'exclude': [
                                    'residential_address', 'postal_address',
                                    'billing_address'
                                ]
                            },
                            'applicant_profile': {
                                'fields':
                                ['email', 'id', 'institution', 'name']
                            },
                            'previous_application': {
                                'exclude': [
                                    'applicant', 'applicant_profile',
                                    'previous_application', 'licence'
                                ]
                            },
                            'licence': {
                                'related': {
                                    'holder': {
                                        'exclude': [
                                            'residential_address',
                                            'postal_address', 'billing_address'
                                        ]
                                    },
                                    'issuer': {
                                        'exclude': [
                                            'residential_address',
                                            'postal_address', 'billing_address'
                                        ]
                                    },
                                    'profile': {
                                        'related': {
                                            'user': {
                                                'exclude': [
                                                    'residential_address',
                                                    'postal_address',
                                                    'billing_address'
                                                ]
                                            }
                                        },
                                        'exclude': ['postal_address']
                                    }
                                },
                                'exclude':
                                ['holder', 'issuer', 'profile', 'licence_ptr']
                            }
                        }),
                    'issue_licence_form':
                    issue_licence_form,
                    'extracted_fields':
                    extracted_fields,
                    'payment_status':
                    payment_status_verbose,
                    'log_entry_form':
                    log_entry_form
                })
Example #7
0
    def get_context_data(self, **kwargs):
        application = get_object_or_404(Application, pk=self.args[0])

        #kwargs['application'] = serialize(application, posthook=format_application)
        kwargs['application'] = serialize(
            application,
            posthook=format_application,
            related={
                'applicant': {
                    'exclude': [
                        'residential_address', 'postal_address',
                        'billing_address'
                    ]
                },
                'applicant_profile': {
                    'fields': ['email', 'id', 'institution', 'name']
                },
                'previous_application': {
                    'exclude': [
                        'applicant', 'applicant_profile',
                        'previous_application', 'licence'
                    ]
                },
                'licence': {
                    'related': {
                        'holder': {
                            'exclude': [
                                'residential_address', 'postal_address',
                                'billing_address'
                            ]
                        },
                        'issuer': {
                            'exclude': [
                                'residential_address', 'postal_address',
                                'billing_address'
                            ]
                        },
                        'profile': {
                            'related': {
                                'user': {
                                    'exclude': [
                                        'residential_address',
                                        'postal_address', 'billing_address'
                                    ]
                                }
                            },
                            'exclude': ['postal_address']
                        }
                    },
                    'exclude': ['holder', 'issuer', 'profile', 'licence_ptr']
                }
            })

        if application.licence:
            kwargs['issue_licence_form'] = IssueLicenceForm(
                instance=application.licence)

            kwargs['extracted_fields'] = application.licence.extracted_fields
        else:
            licence_initial_data = {
                'is_renewable': application.licence_type.is_renewable,
                'default_period': application.licence_type.default_period,
            }

            if application.previous_application is not None and application.previous_application.licence is not None:
                previous_licence = application.previous_application.licence

                licence_initial_data['regions'] = previous_licence.regions.all(
                ).values_list('pk', flat=True)
                licence_initial_data['locations'] = previous_licence.locations
                licence_initial_data['purpose'] = previous_licence.purpose
                licence_initial_data[
                    'additional_information'] = previous_licence.additional_information
                licence_initial_data[
                    'cover_letter_message'] = previous_licence.cover_letter_message

                if application.application_type == 'amendment':
                    licence_initial_data[
                        'end_date'] = previous_licence.end_date

            if 'purpose' not in licence_initial_data or len(
                    licence_initial_data['purpose']) == 0:
                licence_initial_data['purpose'] = '\n\n'.join(
                    Assessment.objects.filter(
                        application=application).values_list('purpose',
                                                             flat=True))

            if hasattr(application.licence_type, 'returntype'):
                licence_initial_data[
                    'return_frequency'] = application.licence_type.returntype.month_frequency
            else:
                licence_initial_data['return_frequency'] = -1

            kwargs['issue_licence_form'] = IssueLicenceForm(
                **licence_initial_data)

            kwargs['extracted_fields'] = extract_licence_fields(
                application.licence_type.application_schema, application.data)

        if application.proxy_applicant is None:
            to = application.applicant
        else:
            to = application.proxy_applicant

        kwargs['log_entry_form'] = ApplicationLogEntryForm(
            to=to.get_full_name(), fromm=self.request.user.get_full_name())

        kwargs['payment_status'] = payment_utils.PAYMENT_STATUSES.get(
            payment_utils.get_application_payment_status(application))

        return super(IssueLicenceView, self).get_context_data(**kwargs)
Example #8
0
    def post(self, request, *args, **kwargs):
        application = get_object_or_404(Application, pk=self.args[0])

        is_save = request.POST.get('submissionType') == 'save'
        skip_required = is_save

        # get extract fields from licence if it exists, else extract from application data
        if application.licence is not None:
            issue_licence_form = IssueLicenceForm(request.POST, instance=application.licence, files=request.FILES,
                                                  skip_required=skip_required)
            extracted_fields = application.licence.extracted_fields
        else:
            issue_licence_form = IssueLicenceForm(request.POST, files=request.FILES,
                                                  skip_required=skip_required)
            extracted_fields = extract_licence_fields(application.licence_type.application_schema, application.data)

        # update contents of extracted field based on posted data
        extracted_fields = update_licence_fields(extracted_fields, request.POST)

        payment_status = payment_utils.get_application_payment_status(application)
        payment_status_verbose = payment_utils.PAYMENT_STATUSES.get(payment_status)

        log_entry_form = ApplicationLogEntryForm(to=get_log_entry_to(application), fromm=self.request.user.get_full_name())

        if issue_licence_form.is_valid():
            licence = issue_licence_form.save(commit=False)

            # save required fields that aren't contained in the form
            licence.licence_type = application.licence_type
            licence.profile = application.applicant_profile
            licence.holder = application.applicant
            licence.extracted_fields = extracted_fields
            licence.save()

            # clear re-form variants from application
            licence.variants.clear()
            for index, avl in enumerate(application.variants.through.objects.filter(application=application).
                                        order_by('order')):
                WildlifeLicenceVariantLink.objects.create(licence=licence, variant=avl.variant, order=index)

            # save m2m fields of licence (must be done after licence saved)
            issue_licence_form.save_m2m()

            application.licence = licence
            application.save()

            if is_save:
                messages.warning(request, 'Licence saved but not yet issued.')

                return render(request, self.template_name, {
                    #'application': serialize(application, posthook=format_application),
                    'application': serialize(application,posthook=format_application,
                                                related={
                                                    'applicant': {'exclude': ['residential_address','postal_address','billing_address']},
                                                    'applicant_profile':{'fields':['email','id','institution','name']},
                                                    'previous_application':{'exclude':['applicant','applicant_profile','previous_application','licence']},
                                                    'licence':{'related':{
                                                       'holder':{'exclude': ['residential_address','postal_address','billing_address']},
                                                       'issuer':{'exclude': ['residential_address','postal_address','billing_address']},
                                                       'profile':{'related': {'user': {'exclude': ['residential_address','postal_address','billing_address']}},
                                                           'exclude': ['postal_address']}
                                                       },'exclude':['holder','issuer','profile','licence_ptr']}
                                                }),
                    'issue_licence_form': issue_licence_form,
                    'extracted_fields': extracted_fields,
                    'payment_status': payment_status_verbose,
                    'log_entry_form': log_entry_form
                })
            else:
                try:
                    self._issue_licence(request, application, issue_licence_form)
                except PaymentException as pe:
                    messages.error(request, pe.message)
                    return redirect(request.get_full_path())

                return redirect('wl_dashboard:home')
        else:
            messages.error(request, 'Please fix the errors below before saving / issuing the licence.')

            return render(request, self.template_name, {
                #'application': serialize(application, posthook=format_application),
                'application': serialize(application,posthook=format_application,
                                            related={
                                                'applicant': {'exclude': ['residential_address','postal_address','billing_address']},
                                                'applicant_profile':{'fields':['email','id','institution','name']},
                                                'previous_application':{'exclude':['applicant','applicant_profile','previous_application','licence']},
                                                'licence':{'related':{
                                                   'holder':{'exclude': ['residential_address','postal_address','billing_address']},
                                                   'issuer':{'exclude': ['residential_address','postal_address','billing_address']},
                                                   'profile':{'related': {'user': {'exclude': ['residential_address','postal_address','billing_address']}},
                                                       'exclude': ['postal_address']}
                                                   },'exclude':['holder','issuer','profile','licence_ptr']}
                                            }),
                'issue_licence_form': issue_licence_form,
                'extracted_fields': extracted_fields,
                'payment_status': payment_status_verbose,
                'log_entry_form': log_entry_form
            })
Example #9
0
    def get_context_data(self, **kwargs):
        application = get_object_or_404(Application, pk=self.args[0])

        #kwargs['application'] = serialize(application, posthook=format_application)
        kwargs['application'] = serialize(application,posthook=format_application,
                                            related={
                                                'applicant': {'exclude': ['residential_address','postal_address','billing_address']},
                                                'applicant_profile':{'fields':['email','id','institution','name']},
                                                'previous_application':{'exclude':['applicant','applicant_profile','previous_application','licence']},
                                                'licence':{'related':{
                                                   'holder':{'exclude': ['residential_address','postal_address','billing_address']},
                                                   'issuer':{'exclude': ['residential_address','postal_address','billing_address']},
                                                   'profile':{'related': {'user': {'exclude': ['residential_address','postal_address','billing_address']}},
						       'exclude': ['postal_address']}
                                                   },'exclude':['holder','issuer','profile','licence_ptr']}
                                            })

        if application.licence:
            kwargs['issue_licence_form'] = IssueLicenceForm(instance=application.licence)

            kwargs['extracted_fields'] = application.licence.extracted_fields
        else:
            licence_initial_data = {
                'is_renewable': application.licence_type.is_renewable,
                'default_period': application.licence_type.default_period,
            }

            if application.previous_application is not None and application.previous_application.licence is not None:
                previous_licence = application.previous_application.licence

                licence_initial_data['regions'] = previous_licence.regions.all().values_list('pk', flat=True)
                licence_initial_data['locations'] = previous_licence.locations
                licence_initial_data['purpose'] = previous_licence.purpose
                licence_initial_data['additional_information'] = previous_licence.additional_information
                licence_initial_data['cover_letter_message'] = previous_licence.cover_letter_message

                if application.application_type == 'amendment':
                    licence_initial_data['end_date'] = previous_licence.end_date

            if 'purpose' not in licence_initial_data or len(licence_initial_data['purpose']) == 0:
                licence_initial_data['purpose'] = '\n\n'.join(Assessment.objects.filter(application=application).
                                                              values_list('purpose', flat=True))

            if hasattr(application.licence_type, 'returntype'):
                licence_initial_data['return_frequency'] = application.licence_type.returntype.month_frequency
            else:
                licence_initial_data['return_frequency'] = -1

            kwargs['issue_licence_form'] = IssueLicenceForm(**licence_initial_data)

            kwargs['extracted_fields'] = extract_licence_fields(application.licence_type.application_schema,
                                                                application.data)

        if application.proxy_applicant is None:
            to = application.applicant
        else:
            to = application.proxy_applicant

        kwargs['log_entry_form'] = ApplicationLogEntryForm(to=to.get_full_name(), fromm=self.request.user.get_full_name())

        kwargs['payment_status'] = payment_utils.PAYMENT_STATUSES.get(payment_utils.
                                                                      get_application_payment_status(application))

        return super(IssueLicenceView, self).get_context_data(**kwargs)
Example #10
0
    def post(self, request, *args, **kwargs):
        application = get_object_or_404(Application, pk=self.args[0])

        payment_status = payment_utils.get_application_payment_status(application)

        if payment_status == payment_utils.PAYMENT_STATUS_AWAITING:
            messages.error(request, 'Payment is required before licence can be issued')

            return redirect(request.get_full_path())

        original_issue_date = None
        if application.licence is not None:
            issue_licence_form = IssueLicenceForm(request.POST, instance=application.licence, files=request.FILES)
            original_issue_date = application.licence.issue_date
            extracted_fields = application.licence.extracted_fields
        else:
            issue_licence_form = IssueLicenceForm(request.POST, files=request.FILES)
            extracted_fields = extract_licence_fields(application.licence_type.application_schema, application.data)

        # update contents of extracted field based on posted data
        extracted_fields = update_licence_fields(extracted_fields, request.POST)

        if issue_licence_form.is_valid():
            licence = issue_licence_form.save(commit=False)

            licence.licence_type = application.licence_type

            licence.profile = application.applicant_profile
            licence.holder = application.applicant
            licence.issuer = request.user

            previous_licence = None
            if application.previous_application is not None:
                previous_licence = application.previous_application.licence
                licence.licence_number = previous_licence.licence_number

                # if licence is renewal, start with previous licence's sequence number
                if licence.licence_sequence == 0:
                    licence.licence_sequence = previous_licence.licence_sequence

            if not licence.licence_number:
                licence.save(no_revision=True)
                licence.licence_number = '%s-%s' % (str(licence.licence_type.pk).zfill(LICENCE_TYPE_NUM_CHARS),
                                                    str(licence.id).zfill(LICENCE_NUMBER_NUM_CHARS))

            licence.licence_sequence += 1

            licence.extracted_fields = extracted_fields

            # reset renewal_sent flag in case of reissue
            licence.renewal_sent = False

            licence_filename = 'licence-%s-%d.pdf' % (licence.licence_number, licence.licence_sequence)

            licence.licence_document = create_licence_pdf_document(licence_filename, licence, application,
                                                                   request.build_absolute_uri(reverse('home')),
                                                                   original_issue_date)

            cover_letter_filename = 'cover-letter-%s-%d.pdf' % (licence.licence_number, licence.licence_sequence)

            licence.cover_letter_document = create_cover_letter_pdf_document(cover_letter_filename, licence,
                                                                             request.build_absolute_uri(reverse('home')))

            licence.save()

            if previous_licence is not None:
                previous_licence.replaced_by = licence
                previous_licence.save()

            licence.variants.clear()
            for index, avl in enumerate(application.variants.through.objects.all().order_by('order')):
                WildlifeLicenceVariantLink.objects.create(licence=licence, variant=avl.variant, order=index)

            issue_licence_form.save_m2m()

            licence_issued.send(sender=self.__class__, wildlife_licence=licence)

            application.customer_status = 'approved'
            application.processing_status = 'issued'
            application.licence = licence

            application.save()

            application.log_user_action(
                ApplicationUserAction.ACTION_ISSUE_LICENCE_.format(licence),
                request
            )

            # do credit card payment if required
            if payment_status == payment_utils.PAYMENT_STATUS_CC_READY:
                payment_utils.invoke_credit_card_payment(application)

            # The licence should be emailed to the customer if they applied for it online. If an officer entered
            # the application on their behalf, the licence needs to be posted to the user.

            # CC's and attachments
            # Rules for emails:
            #  If application lodged by proxy officer and there's a CC list: send email to CCs (to recipients = CCs)
            #  else send the email to customer and if there are CCs put them into the bccs of the email
            ccs = None
            if 'ccs' in issue_licence_form.cleaned_data and issue_licence_form.cleaned_data['ccs']:
                ccs = re.split('[,;]', issue_licence_form.cleaned_data['ccs'])
            attachments = []
            if request.FILES and 'attachments' in request.FILES:
                for _file in request.FILES.getlist('attachments'):
                    doc = Document.objects.create(file=_file, name=_file.name)
                    attachments.append(doc)
            if application.proxy_applicant is None:
                # customer applied online
                messages.success(request, 'The licence has now been issued and sent as an email attachment to the '
                                 'licencee.')
                send_licence_issued_email(licence, application, request, bcc=ccs, additional_attachments=attachments)
            else:
                # customer applied offline
                messages.success(request, 'The licence has now been issued and must be posted to the licencee. Click '
                                 'this link to show the licence <a href="{0}" target="_blank">Licence PDF'
                                 '</a><img height="20px" src="{1}"></img> and this link to show the cover letter '
                                 '<a href="{2}" target="_blank">Cover Letter PDF</a><img height="20px" src="{3}">'
                                 '</img>'.format(licence.licence_document.file.url, static('wl/img/pdf.png'),
                                                 licence.cover_letter_document.file.url, static('wl/img/pdf.png')))
                if ccs:
                    send_licence_issued_email(licence, application, request, to=ccs, additional_attachments=attachments)
            return redirect('wl_dashboard:home')
        else:
            messages.error(request, issue_licence_form.errors)

            log_entry_form = ApplicationLogEntryForm(to=get_log_entry_to(application), fromm=self.request.user.get_full_name())

            payment_status = payment_utils.PAYMENT_STATUSES.get(payment_utils.get_application_payment_status(application))

            return render(request, self.template_name, {'application': serialize(application, posthook=format_application),
                                                        'issue_licence_form': issue_licence_form,
                                                        'extracted_fields': extracted_fields,
                                                        'payment_status': payment_status,
                                                        'log_entry_form': log_entry_form})