1
|
|
|
# -*- coding: utf-8 -*- |
2
|
|
|
# |
3
|
|
|
# This file is part of SENAITE.HEALTH. |
4
|
|
|
# |
5
|
|
|
# SENAITE.HEALTH is free software: you can redistribute it and/or modify it |
6
|
|
|
# under the terms of the GNU General Public License as published by the Free |
7
|
|
|
# Software Foundation, version 2. |
8
|
|
|
# |
9
|
|
|
# This program is distributed in the hope that it will be useful, but WITHOUT |
10
|
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
11
|
|
|
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more |
12
|
|
|
# details. |
13
|
|
|
# |
14
|
|
|
# You should have received a copy of the GNU General Public License along with |
15
|
|
|
# this program; if not, write to the Free Software Foundation, Inc., 51 |
16
|
|
|
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
17
|
|
|
# |
18
|
|
|
# Copyright 2018-2019 by it's authors. |
19
|
|
|
# Some rights reserved, see README and LICENSE. |
20
|
|
|
|
21
|
|
|
from Products.Five.browser.pagetemplatefile import ViewPageTemplateFile |
22
|
|
|
from bika.health import utils |
23
|
|
|
from bika.lims.browser.analysisrequest import InvoiceCreate as BaseInvoiceCreate |
24
|
|
|
from bika.lims.browser.analysisrequest import \ |
25
|
|
|
InvoicePrintView as BaseInvoicePrintView |
26
|
|
|
from bika.lims.browser.analysisrequest import InvoiceView as BaseInvoiceView |
27
|
|
|
|
28
|
|
|
|
29
|
|
|
class InvoiceView(BaseInvoiceView): |
30
|
|
|
""" Rewriting the class to add the insurance company stuff in the invoice. |
31
|
|
|
""" |
32
|
|
|
content = ViewPageTemplateFile("templates/analysisrequest_invoice_content.pt") |
33
|
|
|
|
34
|
|
|
@property |
35
|
|
|
def insurance_number(self): |
36
|
|
|
"""Returns the Patient's insurance number |
37
|
|
|
""" |
38
|
|
|
return utils.get_field_value(self.context, "InsuranceNumber", "") |
39
|
|
|
|
40
|
|
|
|
41
|
|
|
class InvoicePrintView(BaseInvoicePrintView): |
42
|
|
|
|
43
|
|
|
content = ViewPageTemplateFile("templates/analysisrequest_invoice_content.pt") |
44
|
|
|
|
45
|
|
|
@property |
46
|
|
|
def insurance_number(self): |
47
|
|
|
"""Returns the Patient's insurance number |
48
|
|
|
""" |
49
|
|
|
return utils.get_field_value(self.context, "InsuranceNumber", "") |
50
|
|
|
|
51
|
|
|
|
52
|
|
|
class InvoiceCreate(BaseInvoiceCreate): |
53
|
|
|
|
54
|
|
|
content = ViewPageTemplateFile("templates/analysisrequest_invoice_content.pt") |
55
|
|
|
|
56
|
|
|
@property |
57
|
|
|
def insurance_number(self): |
58
|
|
|
"""Returns the Patient's insurance number |
59
|
|
|
""" |
60
|
|
|
return utils.get_field_value(self.context, "InsuranceNumber", "") |
61
|
|
|
|