diff --git a/netforce_clinic/layouts/clinic_report_hd_monthly.xml b/netforce_clinic/layouts/clinic_report_hd_monthly.xml deleted file mode 100644 index 7249176..0000000 --- a/netforce_clinic/layouts/clinic_report_hd_monthly.xml +++ /dev/null @@ -1,3 +0,0 @@ -
diff --git a/netforce_clinic/models/clinic_round.py b/netforce_clinic/models/clinic_round.py deleted file mode 100644 index 40854ec..0000000 --- a/netforce_clinic/models/clinic_round.py +++ /dev/null @@ -1,27 +0,0 @@ -from netforce.model import Model, fields - -class ClinicRound(Model): - _name="clinic.round" - _string="Round" - - _fields={ - "name": fields.Char("Name",required=True,search=True), - } - - def get_data(self,context={}): - lines=[] - for i in range(10): - line={ - 'no': i, - 'doctor': 'Doctor %s'%i, - #...... - } - lines.append(line) - - data={ - 'lines': lines, - } - print('data ', data) - return data - -ClinicRound.register() diff --git a/netforce_clinic/templates/report_hd_dialy.hbs b/netforce_clinic/templates/report_hd_dialy.hbs deleted file mode 100644 index 5056fd3..0000000 --- a/netforce_clinic/templates/report_hd_dialy.hbs +++ /dev/null @@ -1,84 +0,0 @@ -- Cycle - | -- Patient - | -- Doctor - | -- Patient Type - | -- HD Fee - | -- RC.No - | -- Dialyzer - | -- Nurse - | -||
---|---|---|---|---|---|---|---|---|---|
- {{cycle}} - | -|||||||||
TOTAL | -{{no_patient}} | - {{else}} -- | {{patient}} | - {{/if}} -- {{doctor}} - | -- {{patient_type}} - | -- {{total}} - | -- {{rc_no}} - | -- {{dialyzer_name}} - | -- {{nurse}} - | -