← Back to team overview

openerp-community-reviewer team mailing list archive

[Merge] lp:~the-clone-master/oemedical/oemedical_module_split into lp:oemedical

 

Mario Arias has proposed merging lp:~the-clone-master/oemedical/oemedical_module_split into lp:oemedical.

Requested reviews:
  OEmedical Commiter (oemedical-commiter)

For more details, see:
https://code.launchpad.net/~the-clone-master/oemedical/oemedical_module_split/+merge/196469

OeMedical monolithic module split, to ease management and support (see "separate-main-module" blueprint for details)

oemedical and oemedical_emr module split complete.  All others are WIP and were marked as "installable":False

Only history for python and xml files was preserved, as all others (like module definitions and inits) had to be created to match new structure.

Modified python files to new 'from openerp import xxxx' standard
Replaced osv.osv by orm.Model in all modules

added basic oemedical security groups and rules

added file to keep common constants like list of days / hours / minutes, and replaced values where needed

removed all translation files, only kept l18n folder.

oemedical_surgery clean-up - but still not integrated to oemedical:
  *Updated oemedical_surgery module filenames to oemedical naming convention

Patient and Physician models cleanup
 *Removed Patient SSN field as redundant: field 'ref' from partner already overwriten as SSN
 *ref can not be a sequence in Patient\nRedundant photo field for patient as partner already has image field
 *Physician and Patient made to inherit from User, in preparation to online web access to oemedical using new website CMS modules in trunk !
 *Please help with form layouts for Patient and Physician... ;-)
 *Created patient - medical center relation, so a patient can be related to several medical centers and not just one
 *Created physician agenda template, so each doctor can define own working hours

Appointment cleanup
*Created workflow file with sample from account. Not integrated yet to oemedical
-- 
The attached diff has been truncated due to its size.
https://code.launchpad.net/~the-clone-master/oemedical/oemedical_module_split/+merge/196469
Your team OEmedical Commiter is requested to review the proposed merge of lp:~the-clone-master/oemedical/oemedical_module_split into lp:oemedical.
=== modified file 'oemedical/__init__.py'
--- oemedical/__init__.py	2013-09-23 18:55:14 +0000
+++ oemedical/__init__.py	2013-11-25 05:38:52 +0000
@@ -20,50 +20,7 @@
 #
 ##############################################################################
 
-import oemedical_secondary_condition
-import oemedical_pathology_category
-import oemedical_signs_and_symptoms
-import product_product
-import oemedical_physician
-import oemedical_directions
-import oemedical_insurance
-import res_partner
-import oemedical_pathology
-import oemedical_operational_area
-import oemedical_ethnicity
-import oemedical_operational_sector
-import oemedical_prescription_order
-import oemedical_medicament_category
-import oemedical_insurance_plan
-import oemedical_diagnostic_hypothesis
-import oemedical_procedure
-import oemedical_medication_template
-import oemedical_vaccination
-import oemedical_medication_dosage
-import oemedical_family_member
-import oemedical_hospital_ward
-import oemedical_hospital_or
-import oemedical_drug_form
-import oemedical_patient_medication
-import oemedical_patient_evaluation
-import oemedical_hospital_building
-import oemedical_patient
-import oemedical_prescription_line
-import oemedical_patient_disease
-import oemedical_drug_route
-import oemedical_hospital_unit
-import oemedical_appointment
-import oemedical_specialty
-import oemedical_family
-import oemedical_hospital_bed
-import oemedical_occupation
-import oemedical_disease_group_members
-import oemedical_medicament
-import oemedical_pathology_group
-import oemedical_gynecology_and_obstetrics
-import oemedical_lifestyle
-import oemedical_genetics
-import oemedical_socioeconomics
-import oemedical_lab
+import oemedical_constants
+import models
 
 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== modified file 'oemedical/__openerp__.py'
--- oemedical/__openerp__.py	2013-09-23 18:29:30 +0000
+++ oemedical/__openerp__.py	2013-11-25 05:38:52 +0000
@@ -38,7 +38,7 @@
     'version': '1.0',
     'author': "OeMEdical Team",
     'category': 'Generic Modules/Others',
-    'depends': ['base', 'sale', 'purchase', 'account', 'product'],
+    'depends': ['base', 'product'],
     'application': True,
     'description': """
 
@@ -90,69 +90,25 @@
     "website": "http://launchpad.net/oemedical";,
     "licence": "AGPL v3",
     "data": [
-        'sequence/oemedical_sequence.xml',
-        'oemedical_secondary_condition/oemedical_secondary_condition_view.xml',
-        'oemedical_pathology_category/oemedical_pathology_category_view.xml',
-        'oemedical_signs_and_symptoms/oemedical_signs_and_symptoms_view.xml',
-        'product_product/product_product_view.xml',
-        'oemedical_physician/oemedical_physician_view.xml',
-        'oemedical_directions/oemedical_directions_view.xml',
-        'oemedical_insurance/oemedical_insurance_view.xml',
-        'res_partner/res_partner_view.xml',
-        'oemedical_pathology/oemedical_pathology_view.xml',
-        'oemedical_operational_area/oemedical_operational_area_view.xml',
-        'oemedical_ethnicity/oemedical_ethnicity_view.xml',
-        'oemedical_operational_sector/oemedical_operational_sector_view.xml',
-        'oemedical_prescription_order/oemedical_prescription_order_view.xml',
-        'oemedical_medicament_category/oemedical_medicament_category_view.xml',
-        'oemedical_insurance_plan/oemedical_insurance_plan_view.xml',
-        'oemedical_diagnostic_hypothesis/'
-        'oemedical_diagnostic_hypothesis_view.xml',
-        'oemedical_procedure/oemedical_procedure_view.xml',
-        'oemedical_medication_template/oemedical_medication_template_view.xml',
-        'oemedical_vaccination/oemedical_vaccination_view.xml',
-        'oemedical_medication_dosage/oemedical_medication_dosage_view.xml',
-        'oemedical_family_member/oemedical_family_member_view.xml',
-        'oemedical_hospital_ward/oemedical_hospital_ward_view.xml',
-        'oemedical_hospital_or/oemedical_hospital_or_view.xml',
-        'oemedical_drug_form/oemedical_drug_form_view.xml',
-        'oemedical_patient_medication/oemedical_patient_medication_view.xml',
-        'oemedical_patient_evaluation/oemedical_patient_evaluation_view.xml',
-        'oemedical_hospital_building/oemedical_hospital_building_view.xml',
-        'oemedical_patient/oemedical_patient_view.xml',
-        'oemedical_prescription_line/oemedical_prescription_line_view.xml',
-        'oemedical_patient_disease/oemedical_patient_disease_view.xml',
-        'oemedical_drug_route/oemedical_drug_route_view.xml',
-        'oemedical_hospital_unit/oemedical_hospital_unit_view.xml',
-        'oemedical_appointment/oemedical_appointment_view.xml',
-        'oemedical_specialty/oemedical_specialty_view.xml',
-        'oemedical_family/oemedical_family_view.xml',
-        'oemedical_hospital_bed/oemedical_hospital_bed_view.xml',
-        'oemedical_occupation/oemedical_occupation_view.xml',
-        'oemedical_disease_group_members/'
-        'oemedical_disease_group_members_view.xml',
-        'oemedical_medicament/oemedical_medicament_view.xml',
-        'oemedical_pathology_group/oemedical_pathology_group_view.xml',
-        'oemedical_gynecology_and_obstetrics/oemedical_gynecology_and_obstetrics_view.xml',
-        'oemedical_lifestyle/oemedical_lifestyle_view.xml',
-        'oemedical_lifestyle/data/recreational_drugs.xml',
-        'oemedical_genetics/oemedical_disease_gene_view.xml',
-        'oemedical_genetics/data/disease_genes.xml',
-        'oemedical_socioeconomics/oemedical_socioeconomics_view.xml',
-        'oemedical_lab/oemedical_lab_view.xml',
+        'views/oemedical_sequence.xml',
+        'views/product_product_view.xml',
+        'views/res_partner_view.xml',
+        'views/oemedical_physician_view.xml',
+        'views/oemedical_patient_view.xml',
+        'views/oemedical_appointment_view.xml',
+        'views/oemedical_specialty_view.xml',
+        'security/oemedical_security.xml',
         'security/ir.model.access.csv',
-        'oemedical_menu.xml',
+        'views/oemedical_menu.xml',
     ],
     "demo": [
 
     ],
-    'test':[
-            'test/physician.yml',
-            'test/patient.yml',
-            'test/partners.yml',
-            'test/insurance_plan.yml',
-            'test/insurance.yml',
-            'test/physician_speciality.yml'
+    'test': [
+            'tests/physician.yml',
+            'tests/patient.yml',
+            'tests/partners.yml',
+            'tests/physician_speciality.yml'
     ],
     'css': [
 

=== added directory 'oemedical/controllers'
=== added directory 'oemedical/data'
=== added directory 'oemedical/doc'
=== renamed file 'oemedical/i18n/ar.po' => 'oemedical/i18n/ar.po.THIS'
=== renamed file 'oemedical/i18n/es.po' => 'oemedical/i18n/es.po.THIS'
=== removed file 'oemedical/i18n/es_AR.po.THIS'
--- oemedical/i18n/es_AR.po.THIS	2013-10-23 03:02:27 +0000
+++ oemedical/i18n/es_AR.po.THIS	1970-01-01 00:00:00 +0000
@@ -1,3528 +0,0 @@
-# Spanish (Argentina) translation for oemedical
-# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
-# This file is distributed under the same license as the oemedical package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: oemedical\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2012-12-03 17:04+0000\n"
-"PO-Revision-Date: 2013-06-08 23:13+0000\n"
-"Last-Translator: Federico Manuel Echeverri Choux -  (  Vauxoo  ) "
-"<echeverrifm@xxxxxxxxx>\n"
-"Language-Team: Spanish (Argentina) <es_AR@xxxxxx>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-08-07 05:01+0000\n"
-"X-Generator: Launchpad (build 16721)\n"
-
-#. module: oemedical
-#: field:oemedical.patient.evaluation,mood:0
-msgid "Mood"
-msgstr "Estado de Animo"
-
-#. module: oemedical
-#: help:oemedical.prescription.line,short_comment:0
-msgid "Short comment on the specific drug"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_diagnostic_hypothesis_view
-msgid "Diagnostic Hypothesis"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_product_product
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,product:0
-msgid "Product"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medicament.category:0
-#: field:oemedical.medicament.category,parent_id:0
-msgid "Parent"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medication.template,end_treatment:0
-#: help:oemedical.medication.template,start_treatment:0
-msgid "Date of start of Treatment"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.hospital.bed,bed_type:0
-msgid "Low Air Loss"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.patient.evaluation,loc_verbal:0
-msgid "Glasgow - Verbal"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medication.dosage:0
-msgid "Oemedical Medication Dosage"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.prescription.line:0
-#: field:oemedical.prescription.line,quantity:0
-msgid "Quantity"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,respiratory_rate:0
-msgid "Respiratory Rate"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_physician_view
-#: view:oemedical.appointment:0
-#: field:oemedical.appointment,doctor:0
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,doctor:0
-#: view:oemedical.patient.medication:0
-#: field:oemedical.patient.medication,doctor:0
-msgid "Physician"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.insurance:0
-msgid "Oemedical Insurance"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_patient_disease
-msgid "oemedical.patient.disease"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_hospital_or_view
-msgid "Hospital Or"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_hospital_building
-msgid "oemedical.hospital.building"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,object_recognition:0
-msgid "Object Recognition"
-msgstr ""
-
-#. module: oemedical
-#: help:res.partner,is_insurance_company:0
-msgid "Check if the party is an Insurance Company"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,pregnancy_warning:0
-msgid "Pregnancy warning"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,vocabulary:0
-msgid ""
-"Check this box if the patient lacks basic intelectual capacity, when she/he "
-"can not describe elementary objects"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,dose:0
-msgid "Dose"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_res_partner
-msgid "Partner"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_medicament
-msgid "oemedical.medicament"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,is_infectious:0
-msgid "Infectious Disease"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_occupation_view
-msgid "Occupation"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.vaccination:0
-#: field:oemedical.vaccination,dose:0
-msgid "Dose #"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_medication_template
-msgid "oemedical.medication.template"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_specialty
-msgid " Specialty"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,status:0
-msgid "healed"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_eyes:0
-msgid "Opens eyes in response to painful stimuli"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.insurance,insurance_type:0
-#: selection:res.partner,insurance_company_type:0
-msgid "State"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,bpm:0
-msgid "Heart Rate"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,childbearing_age:0
-msgid "Potential for Childbearing"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medicament,active_component:0
-msgid "Active Component"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,therapeutic_action:0
-msgid "Therapeutic effect"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_patient_view
-#: view:oemedical.appointment:0
-#: field:oemedical.appointment,patient:0
-#: view:oemedical.patient:0
-#: field:oemedical.patient,patient:0
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,patient_id:0
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,patient:0
-#: view:oemedical.patient.medication:0
-#: field:oemedical.patient.medication,name:0
-#: field:oemedical.patient.medication,patient:0
-#: view:oemedical.prescription.order:0
-#: field:oemedical.prescription.order,patient:0
-#: view:oemedical.vaccination:0
-#: field:oemedical.vaccination,patient_id:0
-#: field:res.partner,is_patient:0
-msgid "Patient"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.drug.form:0
-#: field:oemedical.drug.form,name:0
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,form:0
-msgid "Form"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.pathology.category:0
-msgid "Oemedical Pathology Category"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medication.dosage,abbreviation:0
-msgid "Dosage abbreviation, such as tid in the US or tds in the UK"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.patient,vaccinations:0
-msgid "Vaccinations"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_patient_evaluation
-msgid " Patient Evaluation"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_procedure
-msgid "oemedical.procedure"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medication.template,frequency_prn:0
-msgid "Use it as needed, pro re nata"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,diagnosed_date:0
-msgid "Date of Diagnosis"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,ldl:0
-msgid "Last LDL"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.pathology.category:0
-#: field:oemedical.pathology.category,parent_id:0
-msgid "Parent Category"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,age:0
-msgid "Age"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,evaluation_type:0
-msgid "Periodic control"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.medication.template,duration_period:0
-#: selection:oemedical.medication.template,frequency_unit:0
-msgid "hours"
-msgstr ""
-
-#. module: oemedical
-#: field:res.partner,relative_id:0
-msgid "Contact"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.specialty:0
-msgid "Oemedical Specialty"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.medication.template,duration_period:0
-msgid "Treatment period"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.appointment:0
-#: field:oemedical.appointment,consultations:0
-#: help:oemedical.appointment,consultations:0
-msgid "Consultation Services"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_diagnostic_hypothesis
-msgid "oemedical.diagnostic_hypothesis"
-msgstr ""
-
-#. module: oemedical
-#: field:res.partner,lastname:0
-#: help:res.partner,lastname:0
-msgid "Last Name"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.hospital.ward,private:0
-msgid "Check this option for private room"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,adverse_reaction:0
-#: view:oemedical.patient.medication:0
-#: field:oemedical.patient.medication,adverse_reaction:0
-msgid "Adverse Reactions"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,tremor:0
-msgid ""
-"If associated  to a disease, please encode it on the patient disease history"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_operational_sector_view
-#: view:oemedical.family:0
-#: field:oemedical.family,operational_sector:0
-#: field:oemedical.operational_area,operational_sector:0
-msgid "Operational Sector"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,respiratory_rate:0
-msgid "Respiratory rate expressed in breaths per minute"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.insurance:0
-#: field:oemedical.insurance,owner:0
-msgid "Owner"
-msgstr ""
-
-#. module: oemedical
-#: constraint:product.product:0
-msgid ""
-"You provided an invalid \"EAN13 Barcode\" reference. You may use the "
-"\"Internal Reference\" field instead."
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.prescription.order:0
-#: field:oemedical.prescription.order,user_id:0
-msgid "Prescribing Doctor"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.insurance:0
-#: field:oemedical.insurance,category:0
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,category:0
-msgid "Category"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_prescription_order_view
-msgid "Prescription Order"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_pathology_category
-msgid "oemedical.pathology.category"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.disease_group.members:0
-#: field:oemedical.disease_group.members,disease_group_id:0
-msgid "Group"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.family_member,member:0
-msgid "Family Member Name"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.disease,is_infectious:0
-msgid "Check if the patient has an infectioustransmissible disease"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,doctor:0
-msgid "Doctor"
-msgstr ""
-
-#. module: oemedical
-#: help:res.partner,is_patient:0
-msgid "Check if the party is a patient"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.family_member,member:0
-msgid "Member"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,height:0
-msgid "Height in centimeters, eg 175"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_insurance
-msgid "oemedical.insurance"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.physician,health_professional:0
-msgid "Health Professional's Name, from the partner list"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.diagnostic_hypothesis:0
-#: field:oemedical.diagnostic_hypothesis,evaluation_id:0
-#: view:oemedical.directions:0
-#: field:oemedical.directions,evaluation_id:0
-#: view:oemedical.secondary_condition:0
-#: field:oemedical.secondary_condition,evaluation_id:0
-#: view:oemedical.signs_and_symptoms:0
-#: field:oemedical.signs_and_symptoms,evaluation_id:0
-msgid "Evaluation"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.drug.form:0
-msgid "Oemedical Drug Form"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_ethnicity
-msgid "oemedical.ethnicity"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.hospital.bed,state:0
-#: field:oemedical.hospital.ward,state:0
-msgid "Status"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.vaccination:0
-#: field:oemedical.vaccination,date:0
-msgid "Date"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.vaccination,institution:0
-msgid "Medical Center where the patient is being or was vaccinated"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,hba1c:0
-msgid "Last Glycated Hb level. Can be approximative."
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_motor:0
-msgid "Makes no movement"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medicament.category:0
-msgid "Oemedical Medicament Category"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_pathology_category
-msgid " Pathology Category"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_medication_template
-msgid " Medication Template"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.family,members:0
-msgid "Family Members"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient,general_info:0
-msgid "General information about the patient"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_operational_sector
-msgid " Operational Sector"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.bed:0
-#: field:oemedical.hospital.bed,name:0
-#: field:product.product,is_bed:0
-msgid "Bed"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_motor:0
-msgid "Flexion / Withdrawal to painful stimuli"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.pathology:0
-#: field:oemedical.pathology,protein:0
-msgid "Protein involved"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,signs_and_symptoms:0
-msgid ""
-"Enter the Signs and Symptoms                                         for the "
-"patient in this evaluation."
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.vaccination:0
-#: field:oemedical.vaccination,vaccine:0
-#: field:product.product,is_vaccine:0
-msgid "Vaccine"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,dose_unit:0
-msgid "dose unit"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_procedure_view
-#: view:oemedical.directions:0
-#: field:oemedical.directions,procedure_id:0
-msgid "Procedure"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,praxis:0
-msgid "Praxis"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_family_view
-#: view:oemedical.family:0
-#: field:oemedical.family,name:0
-#: view:oemedical.family_member:0
-#: field:oemedical.family_member,family_id:0
-#: view:oemedical.patient:0
-#: field:oemedical.patient,family:0
-msgid "Family"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.pathology,protein:0
-msgid "Name of the protein(s) affected"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,height:0
-msgid "Height"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.patient,marital_status:0
-msgid "Marital Status"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.pathology,groups:0
-msgid ""
-"Specify the groups this pathology belongs. Some automated processes act upon "
-"the code of the group"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.medicament.category,childs:0
-msgid "Children"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_ethnicity_view
-msgid "Ethnicity"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_drug_route_view
-msgid "Drug Route"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,storage:0
-msgid "Storage Conditions"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,allergy_type:0
-msgid "Misc Allergy"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,microwave:0
-msgid "Microwave"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_medicament
-msgid " Medicament"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.family_member:0
-msgid "Party"
-msgstr ""
-
-#. module: oemedical
-#: help:res.partner,internal_user:0
-msgid ""
-"In GNU Health is the user (doctor, nurse) that logins.When the party is a "
-"doctor or a health professional, it will be the user that maps the doctor's "
-"party name. It must be present."
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,composition:0
-msgid "Composition"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.directions:0
-msgid "Oemedical Directions"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.appointment,urgency:0
-msgid "Urgent"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medication.template,indication:0
-msgid ""
-"Choose a disease for this medicament from the disease list. It can be an "
-"existing disease of the patient or a prophylactic."
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.pathology,category:0
-msgid ""
-"Select the main category for this disease This is usuallyassociated to the "
-"standard. For instance, the chapter on the ICD-10will be the main category "
-"for de disease"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.ethnicity:0
-#: field:oemedical.ethnicity,notes:0
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,notes:0
-msgid "Notes"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.hospital.ward,gender:0
-msgid "Men Ward"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,tv:0
-msgid "Television"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medication.template,common_dosage:0
-msgid "Common / standard dosage frequency for this medicament"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_family
-msgid " Family"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.disease_group.members:0
-#: field:oemedical.disease_group.members,name:0
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,pathology:0
-#: help:oemedical.patient.disease,pathology:0
-msgid "Disease"
-msgstr ""
-
-#. module: oemedical
-#: field:res.partner,alias:0
-msgid "Alias"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.patient.disease,status:0
-msgid "Status of the disease"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medication.template,duration:0
-msgid ""
-"Period that the patient must take the medication. in minutes, hours, days, "
-"months, years or indefinately"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,status:0
-msgid "improving"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.operational_sector:0
-#: field:oemedical.operational_sector,name:0
-msgid "Op. Sector"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_ethnicity
-msgid " Ethnicity"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,cod:0
-msgid "Cause of Death"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,is_active:0
-msgid "Active disease"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,dob:0
-msgid "DoB"
-msgstr ""
-
-#. module: oemedical
-#: field:res.partner,internal_user:0
-msgid "Internal User"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_specialty
-msgid "oemedical.specialty"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_medicament_category
-msgid " Medicament Category"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.patient.evaluation,secondary_conditions:0
-msgid "Secondary Conditions"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_verbal:0
-msgid "Incomprehensible sounds"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.vaccination,vaccine:0
-msgid ""
-"Vaccine Name. Make sure that the vaccine (product) has all the proper "
-"information at product level. Information such as provider, supplier code, "
-"tracking number, etc.. This  information must always be present. If "
-"available, please copy / scan the vaccine leaflet and attach it to this "
-"record"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.vaccination:0
-#: field:oemedical.vaccination,next_dose_date:0
-msgid "Next Dose"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_patient_disease_view
-msgid "Patient Disease"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,head_circumference:0
-msgid "Head circumference"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,weight:0
-msgid "Weight in Kilos"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,treatment_description:0
-msgid "Treatment Description"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_directions
-msgid "oemedical.directions"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.appointment,patient:0
-#: help:oemedical.patient,patient:0
-msgid "Patient Name"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.medication.template,duration_period:0
-msgid "years"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.hospital.bed,telephone_number:0
-msgid "Telephone number / Extension"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.insurance.plan:0
-#: field:oemedical.insurance.plan,notes:0
-#: view:oemedical.physician:0
-#: field:oemedical.physician,info:0
-msgid "Extra info"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.patient.evaluation,signs_and_symptoms:0
-msgid "Signs and Symptoms"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,mood:0
-msgid "Disgust"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medicament:0
-msgid "Oemedical Medicament"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.patient,rh:0
-msgid "Rh"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,hip:0
-msgid "Hip"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_prescription_order
-msgid " Prescription Order"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,evaluation_type:0
-msgid "Emergency"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.hospital.ward,bio_hazard:0
-msgid "Check this option if there is biological hazard"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,frequency_prn:0
-msgid "PRN"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.insurance.plan:0
-#: field:oemedical.insurance.plan,is_default:0
-msgid "Default plan"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_specialty_view
-#: view:oemedical.appointment:0
-#: field:oemedical.appointment,speciality:0
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,specialty:0
-#: view:oemedical.physician:0
-#: field:oemedical.physician,specialty:0
-#: view:oemedical.specialty:0
-#: field:oemedical.specialty,name:0
-msgid "Specialty"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.medication.template,frequency_unit:0
-msgid "weeks"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_medication_dosage
-msgid "oemedical.medication.dosage"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.prescription.order,prescription_line:0
-msgid "Prescription line"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.patient.evaluation,diagnostic_hypothesis:0
-msgid "Hypotheses / DDx"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_patient
-msgid "oemedical.patient"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_prescription_line
-msgid "oemedical.prescription.line"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_drug_route
-msgid "oemedical.drug.route"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,whr:0
-msgid "Waist to hip ratio"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_drug_form
-msgid " Drug Form"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.insurance.plan,is_default:0
-msgid ""
-"Check if this is the default plan when assigning this insurance company to a "
-"patient"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medication.dosage:0
-#: field:oemedical.medication.dosage,abbreviation:0
-msgid "Abbreviation"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,disease_severity:0
-msgid "Mild"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medication.dosage,code:0
-msgid "Dosage Code,for example: SNOMED 229798009 = 3 times per day"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.ethnicity:0
-msgid "Oemedical Ethnicity"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.hospital.bed,bed_type:0
-msgid "Low Bed"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medicament,pregnancy_category:0
-msgid ""
-"** FDA Pregancy Categories ***\n"
-"CATEGORY A :Adequate and well-controlled human studies have failed to "
-"demonstrate a risk to the fetus in the first trimester of pregnancy (and "
-"there is no evidence of risk in later trimesters).\n"
-"\n"
-"CATEGORY B : Animal reproduction studies have failed todemonstrate a risk to "
-"the fetus and there are no adequate and well-controlled studies in pregnant "
-"women OR Animal studies have shown an adverse effect, but adequate and well-"
-"controlled studies in pregnant women have failed to demonstrate a risk to "
-"the fetus in any trimester.\n"
-"\n"
-"CATEGORY C : Animal reproduction studies have shown an adverse effect on the "
-"fetus and there are no adequate and well-controlled studies in humans, but "
-"potential benefits may warrant use of the drug in pregnant women despite "
-"potential risks. \n"
-"\n"
-" CATEGORY D : There is positive evidence of human fetal  risk based on "
-"adverse reaction data from investigational or marketing experience or "
-"studies in humans, but potential benefits may warrant use of the drug in "
-"pregnant women despite potential risks.\n"
-"\n"
-"CATEGORY X : Studies in animals or humans have demonstrated fetal "
-"abnormalities and/or there is positive evidence of human fetal risk based on "
-"adverse reaction data from investigational or marketing experience, and the "
-"risks involved in use of the drug in pregnant women clearly outweigh "
-"potential benefits.\n"
-"\n"
-"CATEGORY N : Not yet classified"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,end_treatment:0
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,date_stop_treatment:0
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,evaluation_endtime:0
-msgid "End"
-msgstr ""
-
-#. module: oemedical
-#: help:res.partner,is_doctor:0
-msgid "Check if the party is a health professional"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_pathology
-msgid "oemedical.pathology"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.family_member,family_id:0
-msgid "Family code"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medication.template:0
-msgid "Oemedical Medication Template"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,bio_hazard:0
-msgid "Bio Hazard"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.prescription.line:0
-#: field:oemedical.prescription.line,prnt:0
-msgid "Print"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_patient_evaluation_view
-msgid "Patient Evaluation"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_family_member_view
-msgid "Family Member"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.appointment,appointment_type:0
-#: field:oemedical.patient.evaluation,evaluation_type:0
-msgid "Type"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,mood:0
-msgid "Flat"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_insurance_plan
-msgid " Insurance Plan"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.hospital.or,name:0
-msgid "Name of the Operating Room"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,dosage:0
-msgid "Dosage Instructions"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.appointment,appointment_type:0
-msgid "Outpatient"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medicament,product:0
-msgid "Product Name"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.bed:0
-#: field:oemedical.hospital.bed,ward:0
-msgid "Ward"
-msgstr ""
-
-#. module: oemedical
-#: sql_constraint:oemedical.family:0
-msgid "Family Code must be unique!"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_hospital_ward
-msgid " Hospital Ward"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.operational_sector:0
-msgid "Oemedical Operational_Sector"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,reliable_info:0
-msgid "Reliable"
-msgstr ""
-
-#. module: oemedical
-#: field:res.partner,is_work:0
-msgid "Work"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.disease_group.members:0
-msgid "Oemedical Disease_Group Members"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.insurance,insurance_type:0
-#: field:res.partner,insurance_company_type:0
-msgid "Insurance Type"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient,sex:0
-msgid "Male"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_root
-#: model:ir.ui.menu,name:oemedical.oemedical_root_sub
-#: view:res.partner:0
-msgid "OeMedical"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,duration:0
-msgid "Treatment duration"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,calculation_ability:0
-msgid "Check this box if the patient can not do simple arithmetic problems"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.prescription.line:0
-#: field:oemedical.prescription.line,refills:0
-msgid "Refills #"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,evaluation_type:0
-msgid "Phone call"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_hospital_unit
-msgid "oemedical.hospital.unit"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.family:0
-msgid "Oemedical Family"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.medication.template,duration_period:0
-#: selection:oemedical.medication.template,frequency_unit:0
-msgid "days"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_vaccination
-msgid " Vaccination"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,allergy_type:0
-msgid "Misc Contraindication"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,ssn:0
-msgid "SSN"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_signs_and_symptoms
-msgid " Signs And Symptoms"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medicament,dosage:0
-msgid "Dosage / Indications"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.prescription.line:0
-#: field:oemedical.prescription.line,review:0
-msgid "Review"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,start_treatment:0
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,date_start_treatment:0
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,evaluation_start:0
-msgid "Start"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.patient,medications:0
-msgid "Medications"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,present_illness:0
-msgid "Present Illness"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.hospital.bed,bed_type:0
-msgid "Clinitron"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.medication,doctor:0
-msgid "Physician who prescribed the medicament"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.appointment:0
-#: field:oemedical.appointment,appointment_date:0
-msgid "Date and Time"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient,marital_status:0
-msgid "Separated"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_signs_and_symptoms
-msgid "oemedical.signs_and_symptoms"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,praxis:0
-msgid "Check this box if the patient is unable to make voluntarymovements"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,derived_from:0
-msgid "Derived from"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.hospital.building,name:0
-msgid "Name of the building within the institution"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,dehydration:0
-msgid ""
-"Check this box if the patient show signs of dehydration. If associated  to a "
-"disease, please encode the  correspondent disease on the patient disease "
-"history. For example, Volume Depletion, E86 in ICD-10 encoding"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient,primary_care_doctor:0
-msgid "Current primary care / family doctor"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.patient.evaluation,loc_eyes:0
-msgid "Glasgow - Eyes"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.hospital.ward,number_of_beds:0
-msgid "Number of patients per ward"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_family_member
-msgid " Family Member"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_verbal:0
-msgid "Confused, disoriented"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.pathology,name:0
-msgid "Disease name"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,diastolic:0
-msgid "Diastolic Pressure"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,hba1c:0
-msgid "Glycated Hemoglobin"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_prescription_line_view
-msgid "Prescription Line"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,loc:0
-msgid "Level of Consciousness"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.hospital.bed,state:0
-msgid "Reserved"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_dose_unit_view
-msgid "Dose Unit"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.pathology:0
-#: field:oemedical.pathology,gene:0
-msgid "Gene"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.medication:0
-#: field:oemedical.patient.medication,discontinued:0
-msgid "Discontinued"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_occupation
-msgid " Occupation"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.signs_and_symptoms,sign_or_symptom:0
-msgid "Sign"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,primary_care_doctor:0
-msgid "Primary Care Doctor"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.drug.form:0
-#: field:oemedical.drug.form,code:0
-#: view:oemedical.drug.route:0
-#: field:oemedical.drug.route,code:0
-#: view:oemedical.ethnicity:0
-#: field:oemedical.ethnicity,code:0
-#: view:oemedical.hospital.building:0
-#: field:oemedical.hospital.building,code:0
-#: view:oemedical.hospital.unit:0
-#: field:oemedical.hospital.unit,code:0
-#: view:oemedical.medication.dosage:0
-#: field:oemedical.medication.dosage,code:0
-#: view:oemedical.occupation:0
-#: field:oemedical.occupation,code:0
-#: view:oemedical.pathology:0
-#: field:oemedical.pathology,code:0
-#: view:oemedical.pathology.group:0
-#: field:oemedical.pathology.group,code:0
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,pcs_code:0
-#: view:oemedical.procedure:0
-#: field:oemedical.procedure,name:0
-#: view:oemedical.specialty:0
-#: field:oemedical.specialty,code:0
-msgid "Code"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient,current_insurance:0
-msgid ""
-"Insurance information. You may choose from the different insurances "
-"belonging to the patient"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,orientation:0
-msgid "Orientation"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,information_source:0
-msgid "Source"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient,critical_info:0
-msgid ""
-"Write any important information on the patient's disease, surgeries, "
-"allergies, ..."
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.patient,sex:0
-msgid "Sex"
-msgstr ""
-
-#. module: oemedical
-#: help:res.partner,is_pharmacy:0
-msgid "Check if the party is a Pharmacy"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_family
-msgid "oemedical.family"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medication.dosage:0
-#: field:oemedical.medication.dosage,name:0
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,common_dosage:0
-#: field:oemedical.medication.template,frequency:0
-msgid "Frequency"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.hospital.bed,bed_type:0
-msgid "Bed Type"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.medication:0
-#: field:oemedical.patient.medication,course_completed:0
-msgid "Course Completed"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.pathology.group,name:0
-msgid "Group name"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.drug.route:0
-#: field:oemedical.drug.route,name:0
-#: view:oemedical.hospital.or:0
-#: field:oemedical.hospital.or,unit:0
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,unit:0
-msgid "Unit"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,age:0
-msgid "Age when diagnosed"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,diagnostic_hypothesis:0
-msgid ""
-"Presumptive Diagnosis. If no diagnosis can be made, encode the main sign or "
-"symptom."
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.signs_and_symptoms,sign_or_symptom:0
-msgid "Subjective / Objective"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.hospital.ward,gender:0
-msgid "Unisex"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,status:0
-msgid "unchanged"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient,diseases:0
-msgid "Mark if the patient has died"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,active_component:0
-msgid "Active component"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_disease_group_members
-msgid " Disease Group Members"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.pathology.category,childs:0
-msgid "Children Category"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,user_id:0
-msgid "Last Changed by"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.prescription.order:0
-#: field:oemedical.prescription.order,notes:0
-msgid "Prescription Notes"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_operational_area
-msgid "oemedical.operational_area"
-msgstr ""
-
-#. module: oemedical
-#: help:res.partner,is_institution:0
-msgid "Check if the party is a Medical Center"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.vaccination,vaccine_lot:0
-msgid ""
-"Please check on the vaccine (product) production lot numberand tracking "
-"number when available !"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.patient.evaluation,loc_motor:0
-msgid "Glasgow - Motor"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-msgid "Oemedical Patient Evaluation"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.medication:0
-msgid "Oemedical Patient Medication"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_medicament_category
-msgid "oemedical.medicament.category"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.hospital.bed,bed_type:0
-msgid "Circo Electric"
-msgstr ""
-
-#. module: oemedical
-#: help:product.product,is_medicament:0
-msgid "Check if the product is a medicament"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,violent:0
-msgid "Check this box if the patient is agressive or violent at the moment"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.physician:0
-msgid "Oemedical Physician"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,status:0
-msgid "worsening"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.or:0
-msgid "Oemedical Hospital Or"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.prescription.order,prescription_id:0
-msgid "Type in the ID of this prescription"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.ethnicity:0
-#: field:oemedical.ethnicity,name:0
-#: view:oemedical.hospital.building:0
-#: field:oemedical.hospital.building,name:0
-#: view:oemedical.hospital.or:0
-#: field:oemedical.hospital.or,name:0
-#: view:oemedical.hospital.unit:0
-#: field:oemedical.hospital.unit,name:0
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,name:0
-#: field:oemedical.insurance,name:0
-#: field:oemedical.insurance.plan,name:0
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,name:0
-#: view:oemedical.medicament.category:0
-#: field:oemedical.medicament.category,name:0
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,name:0
-#: view:oemedical.occupation:0
-#: field:oemedical.occupation,name:0
-#: view:oemedical.operational_area:0
-#: field:oemedical.operational_area,name:0
-#: view:oemedical.pathology:0
-#: field:oemedical.pathology,name:0
-#: view:oemedical.pathology.group:0
-#: field:oemedical.pathology.group,name:0
-#: view:oemedical.patient:0
-#: field:oemedical.patient.evaluation,name:0
-#: view:oemedical.physician:0
-#: field:oemedical.physician,name:0
-#: view:oemedical.vaccination:0
-#: field:oemedical.vaccination,name:0
-msgid "Name"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_hospital_ward
-msgid "oemedical.hospital.ward"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,mood:0
-msgid "Rage"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_hospital_or
-msgid "oemedical.hospital.or"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.vaccination:0
-msgid "Oemedical Vaccination"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,malnutrition:0
-msgid ""
-"Check this box if the patient show signs of malnutrition. If associated  to "
-"a disease, please encode the correspondent disease on the patient disease "
-"history. For example, Moderate protein-energy malnutrition, E44.0 in ICD-10 "
-"encoding"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,refrigerator:0
-msgid "Refrigetator"
-msgstr ""
-
-#. module: oemedical
-#: help:product.product,is_vaccine:0
-msgid "Check if the product is a vaccine"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,disease_severity:0
-msgid "Severe"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,notes_complaint:0
-msgid "Complaint details"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.insurance,category:0
-msgid "Insurance company plan / category"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.pathology:0
-msgid "Oemedical Pathology"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.hospital.bed,state:0
-#: selection:oemedical.hospital.ward,state:0
-msgid "Not available"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,derived_from:0
-msgid "Physician who derived the case"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.patient.disease,disease_severity:0
-msgid "Severity"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.insurance:0
-#: field:oemedical.insurance,company:0
-#: view:oemedical.insurance.plan:0
-#: field:oemedical.insurance.plan,company:0
-#: field:res.partner,is_insurance_company:0
-msgid "Insurance Company"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.medication.template,duration_period:0
-#: selection:oemedical.medication.template,frequency_unit:0
-msgid "minutes"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.appointment:0
-#: field:oemedical.appointment,comments:0
-#: view:oemedical.diagnostic_hypothesis:0
-#: field:oemedical.diagnostic_hypothesis,comments:0
-#: view:oemedical.directions:0
-#: field:oemedical.directions,comments:0
-#: view:oemedical.secondary_condition:0
-#: field:oemedical.secondary_condition,comments:0
-#: view:oemedical.signs_and_symptoms:0
-#: field:oemedical.signs_and_symptoms,comments:0
-msgid "Comments"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.appointment:0
-#: view:oemedical.diagnostic_hypothesis:0
-#: view:oemedical.directions:0
-#: view:oemedical.disease_group.members:0
-#: view:oemedical.drug.form:0
-#: view:oemedical.drug.route:0
-#: view:oemedical.ethnicity:0
-#: view:oemedical.family:0
-#: view:oemedical.family_member:0
-#: view:oemedical.hospital.bed:0
-#: view:oemedical.hospital.building:0
-#: view:oemedical.hospital.or:0
-#: view:oemedical.hospital.unit:0
-#: view:oemedical.hospital.ward:0
-#: view:oemedical.insurance:0
-#: view:oemedical.insurance.plan:0
-#: view:oemedical.medicament:0
-#: view:oemedical.medicament.category:0
-#: view:oemedical.medication.dosage:0
-#: view:oemedical.medication.template:0
-#: view:oemedical.occupation:0
-#: view:oemedical.operational_area:0
-#: view:oemedical.operational_sector:0
-#: view:oemedical.pathology:0
-#: view:oemedical.pathology.category:0
-#: view:oemedical.pathology.group:0
-#: view:oemedical.patient:0
-#: view:oemedical.patient.disease:0
-#: view:oemedical.patient.evaluation:0
-#: view:oemedical.patient.medication:0
-#: view:oemedical.physician:0
-#: view:oemedical.prescription.line:0
-#: view:oemedical.prescription.order:0
-#: view:oemedical.procedure:0
-#: view:oemedical.secondary_condition:0
-#: view:oemedical.signs_and_symptoms:0
-#: view:oemedical.specialty:0
-#: view:oemedical.vaccination:0
-msgid "Group By..."
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.operational_sector,name:0
-msgid "Region included in an operational area"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.family_member:0
-#: field:oemedical.family_member,role:0
-msgid "Role"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_hospital_bed
-msgid " Hospital Bed"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_pathology_category_view
-msgid "Pathology Category"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,ac:0
-msgid "Air Conditioning"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_medication_template_view
-#: view:oemedical.patient.medication:0
-#: field:oemedical.patient.medication,template:0
-#: view:oemedical.prescription.line:0
-#: field:oemedical.prescription.line,template:0
-msgid "Medication Template"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_hospital_ward_view
-msgid "Hospital Ward"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_physician
-msgid " Physician"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,pregnancy:0
-msgid "Pregnancy and Lactancy"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.hospital.bed,state:0
-msgid "Free"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,tremor:0
-msgid "Tremor"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.prescription.order:0
-#: field:oemedical.prescription.order,pregnancy_warning:0
-msgid "Pregancy Warning"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medicament,therapeutic_action:0
-msgid "Therapeutic action"
-msgstr ""
-
-#. module: oemedical
-#: field:res.partner,is_doctor:0
-msgid "Health Prof"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_medication_dosage
-msgid " Medication Dosage"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.unit:0
-msgid "Oemedical Hospital Unit"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,allergy_type:0
-msgid "Drug Allergy"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_motor:0
-msgid "Obeys commands"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_pathology
-msgid " Pathology"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medication.template,route:0
-msgid "Drug administration route code."
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,ldl:0
-msgid "Last LDL Cholesterol reading. Can be approximative"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,info_diagnosis:0
-msgid "Presumptive Diagnosis: Extra Info"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,floor:0
-msgid "Floor Number"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.hospital.bed,name:0
-msgid "Bed Number"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient,current_address:0
-msgid ""
-"Contact information. You may choose from the different contacts and "
-"addresses this patient has."
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,cholesterol_total:0
-msgid "Last Cholesterol"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_hospital_unit
-msgid " Hospital Unit"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_motor:0
-msgid "Abnormal flexion to painful stimuli (decorticate response)"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.bed:0
-#: field:oemedical.hospital.bed,extra_info:0
-#: view:oemedical.hospital.building:0
-#: field:oemedical.hospital.building,extra_info:0
-#: view:oemedical.hospital.or:0
-#: field:oemedical.hospital.or,extra_info:0
-#: view:oemedical.hospital.unit:0
-#: field:oemedical.hospital.unit,extra_info:0
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,extra_info:0
-#: view:oemedical.insurance:0
-#: field:oemedical.insurance,notes:0
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,notes:0
-#: view:oemedical.pathology:0
-#: field:oemedical.pathology,info:0
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,extra_info:0
-#: view:oemedical.patient.medication:0
-#: field:oemedical.patient.medication,notes:0
-msgid "Extra Info"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient,sex:0
-msgid "Female"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_secondary_condition
-msgid "oemedical.secondary_condition"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_appointment
-msgid " Appointment"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,evaluation_summary:0
-msgid "Evaluation Summary"
-msgstr ""
-
-#. module: oemedical
-#: help:res.partner,activation_date:0
-msgid "Date of activation of the party"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,internet:0
-msgid "Internet Access"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,tag:0
-msgid "Last TAGs"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,ethnic_group:0
-msgid "Ethnic group"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,mood:0
-msgid "Euphoria"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,osat:0
-msgid "Oxygen Saturation(arterial)."
-msgstr ""
-
-#. module: oemedical
-#: field:res.partner,activation_date:0
-msgid "Activation date"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,violent:0
-msgid "Violent Behaviour"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_directions
-msgid " Directions"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.appointment:0
-#: field:oemedical.appointment,name:0
-#: field:oemedical.prescription.order,name:0
-msgid "Appointment ID"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.patient,blood_type:0
-msgid "Blood Type"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_verbal:0
-msgid "Makes no sounds"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.appointment,urgency:0
-msgid "Medical Emergency"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_hospital_or
-msgid " Hospital Or"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,is_on_treatment:0
-msgid "Currently on Treatment"
-msgstr ""
-
-#. module: oemedical
-#: field:res.partner,relationship:0
-msgid "Relationship"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.appointment:0
-#: field:oemedical.appointment,institution:0
-msgid "Health Center"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_insurance_plan
-msgid "oemedical.insurance.plan"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_motor:0
-msgid "Extension to painful stimuli - decerebrate response -"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.medication,discontinued_reason:0
-msgid "Short description for discontinuing the treatment"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.disease,short_comment:0
-msgid ""
-"Brief, one-line remark of the disease. Longer description will go on the "
-"Extra info field"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,orientation:0
-msgid "Check this box if the patient is disoriented in time and/or space"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.hospital.ward,state:0
-msgid "Full"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,temperature:0
-msgid "Temperature in celcius"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_medicament_category_view
-msgid "Medicament Category"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,osat:0
-msgid "Oxygen Saturation"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_insurance
-msgid " Insurance"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,secondary_conditions:0
-msgid "Other, Secondary conditions found on the patient"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,evaluation_type:0
-msgid "Telemedicine"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.appointment,speciality:0
-msgid "Medical Specialty / Sector"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,abstraction:0
-msgid ""
-"Check this box if the patient presents abnormalities in abstract reasoning"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,weeks_of_pregnancy:0
-msgid "Contracted in pregnancy week #"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,dehydration:0
-msgid "Dehydration"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient:0
-msgid "Oemedical Patient"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_prescription_line
-msgid " Prescription Line"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_pathology_group
-msgid " Pathology Group"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_dose_unit
-msgid " Dose Unit"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.hospital.bed,state:0
-msgid "Occupied"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,temperature:0
-msgid "Temperature"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_verbal:0
-msgid "Utters inappropriate words"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.disease,pcs_code:0
-msgid "Procedure code, for example, ICD-10-PCS Code 7-character string"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,disease_severity:0
-msgid "Moderate"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medication.template,qty:0
-msgid "Quantity of units (eg, 2 capsules) of the medicament"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,head_circumference:0
-msgid "Head Circumference"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_appointment_view
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,evaluation_date:0
-msgid "Appointment"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.hospital.bed,bed_type:0
-msgid "Electric"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_operational_area
-msgid " Operational Area"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,evaluation_type:0
-msgid "Pre-arranged appointment"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,telephone:0
-msgid "Telephone access"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.operational_area:0
-msgid "Oemedical Operational_Area"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,bpm:0
-msgid "Heart rate expressed in beats per minute"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_disease_group_members_view
-msgid "Disease Group Members"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.insurance:0
-#: field:oemedical.insurance,plan_id:0
-#: view:oemedical.insurance.plan:0
-#: field:oemedical.insurance.plan,plan:0
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,directions:0
-msgid "Plan"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.insurance.plan:0
-msgid "Oemedical Insurance Plan"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_eyes:0
-msgid "Opens eyes in response to voice"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.medication:0
-#: field:oemedical.patient.medication,is_active:0
-msgid "Active"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.prescription.line,prnt:0
-msgid "Check this box to print this line of the prescription."
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient,identification_code:0
-msgid ""
-"Patient Identifier provided by the Health Center.Is not the Social Security "
-"Number"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,route:0
-msgid "Administration Route"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,pregnancy_warning:0
-msgid "Pregnancy Warning"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.family:0
-#: field:oemedical.family,info:0
-#: view:oemedical.operational_area:0
-#: field:oemedical.operational_area,info:0
-#: view:oemedical.operational_sector:0
-#: field:oemedical.operational_sector,info:0
-msgid "Extra Information"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_operational_sector
-msgid "oemedical.operational_sector"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medication.template,form:0
-msgid "Drug form, such as tablet or gel"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medicament,indications:0
-msgid "Indications"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.prescription.line:0
-#: field:oemedical.prescription.line,prescription_order_id:0
-#: view:oemedical.prescription.order:0
-#: field:oemedical.prescription.order,prescription_id:0
-msgid "Prescription ID"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.insurance:0
-#: field:oemedical.insurance,number:0
-msgid "Number"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.drug.route:0
-msgid "Oemedical Drug Route"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,derived_to:0
-msgid "Physician to whom escalate / derive the case"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,actions:0
-msgid "Procedures / Actions to take"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_pathology_group
-msgid "oemedical.pathology.group"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.medicament,pregnancy_category:0
-msgid "Pregnancy Category"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.patient.disease,allergy_type:0
-msgid "Allergy type"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.prescription.order:0
-#: field:oemedical.prescription.order,prescription_warning_ack:0
-msgid "Prescription verified"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.medication.template,frequency_unit:0
-msgid "unit"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,knowledge_current_events:0
-msgid ""
-"Check this box if the patient can not respond to public notorious events"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,glycemia:0
-msgid "Last blood glucose level. Can be approximative."
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.appointment,institution:0
-#: help:oemedical.hospital.building,institution:0
-#: help:oemedical.hospital.or,institution:0
-#: help:oemedical.hospital.unit,institution:0
-#: help:oemedical.hospital.ward,institution:0
-msgid "Medical Center"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,abstraction:0
-msgid "Abstraction"
-msgstr ""
-
-#. module: oemedical
-#: help:res.partner,is_person:0
-msgid "Check if the party is a person."
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,diagnosis:0
-msgid "Presumptive Diagnosis"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,lastname:0
-msgid "Lastname"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,hdl:0
-msgid "Last HDL"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medication.template,admin_times:0
-msgid ""
-"Suggested administration hours. For example, at 08:00, 13:00 and 18:00 can "
-"be encoded like 08 13 18"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,current_address:0
-msgid "Address"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,short_comment:0
-msgid "Remarks"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.insurance,insurance_type:0
-#: selection:res.partner,insurance_company_type:0
-msgid "Labour Union / Syndical"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medication.template,dose_unit:0
-msgid "Unit of measure for the medication to be taken"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,abdominal_circ:0
-msgid "Waist"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,overdosage:0
-#: help:oemedical.medicament,overdosage:0
-msgid "Overdosage"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_drug_form_view
-msgid "Drug Form"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_hospital_unit_view
-msgid "Hospital Unit"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,indications:0
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,indication:0
-msgid "Indication"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.diagnostic_hypothesis:0
-msgid "Oemedical Diagnostic_Hypothesis"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,mood:0
-msgid "Sad"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.insurance:0
-#: field:oemedical.insurance,member_since:0
-msgid "Member since"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,identification_code:0
-#: view:oemedical.physician:0
-#: field:oemedical.physician,code:0
-msgid "ID"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,deceased:0
-msgid "Deceased"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.patient,diseases:0
-msgid "Diseases"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,derived_to:0
-msgid "Derived to"
-msgstr ""
-
-#. module: oemedical
-#: sql_constraint:oemedical.drug.form:0
-#: sql_constraint:oemedical.drug.route:0
-#: sql_constraint:oemedical.ethnicity:0
-#: sql_constraint:oemedical.hospital.or:0
-#: sql_constraint:oemedical.medication.dosage:0
-#: sql_constraint:oemedical.occupation:0
-#: sql_constraint:oemedical.operational_area:0
-#: sql_constraint:oemedical.operational_sector:0
-#: sql_constraint:oemedical.pathology:0
-#: sql_constraint:oemedical.specialty:0
-msgid "Name must be unique!"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient,marital_status:0
-msgid "Widowed"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.building:0
-msgid "Oemedical Hospital Building"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_eyes:0
-msgid "Does not Open Eyes"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient,family:0
-msgid "Family Code"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.secondary_condition:0
-msgid "Oemedical Secondary_Condition"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medicament,pregnancy_warning:0
-msgid "The drug represents risk to pregnancy or lactancy"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_hospital_bed
-msgid "oemedical.hospital.bed"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.appointment:0
-msgid "Oemedical Appointment"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.physician,institution:0
-msgid "Instituion where she/he works"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_hospital_bed_view
-msgid "Hospital Bed"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_disease_group_members
-msgid "oemedical.disease_group.members"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,evaluation_date:0
-msgid ""
-"Enter or select the date / ID of the appointment related to this evaluation"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,information_source:0
-msgid "Source ofInformation, eg : Self, relative, friend ..."
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_vaccination_view
-msgid "Vaccination"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_patient_medication_view
-msgid "Patient Medication"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.pathology.group:0
-#: field:oemedical.pathology.group,info:0
-msgid "Detailed information"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.signs_and_symptoms:0
-msgid "Oemedical Signs_And_Symptoms"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,mood:0
-msgid "Happy"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.procedure:0
-#: field:oemedical.procedure,description:0
-msgid "Long Text"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,allergy_type:0
-msgid "Food Allergy"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medication.template,duration_period:0
-msgid ""
-"Period that the patient must take the medication in minutes, hours, days, "
-"months, years or indefinately"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,reliable_info:0
-msgid ""
-"Uncheck this optionif the information provided by the source seems not "
-"reliable"
-msgstr ""
-
-#. module: oemedical
-#: help:product.product,is_bed:0
-msgid "Check if the product is a bed on the gnuhealth.center"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,chief_complaint:0
-#: help:oemedical.patient.evaluation,chief_complaint:0
-msgid "Chief Complaint"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.building:0
-#: field:oemedical.hospital.building,institution:0
-#: view:oemedical.hospital.or:0
-#: field:oemedical.hospital.or,institution:0
-#: view:oemedical.hospital.unit:0
-#: field:oemedical.hospital.unit,institution:0
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,institution:0
-#: view:oemedical.physician:0
-#: field:oemedical.physician,institution:0
-#: view:oemedical.vaccination:0
-#: field:oemedical.vaccination,institution:0
-#: field:res.partner,is_institution:0
-msgid "Institution"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.or:0
-#: field:oemedical.hospital.or,building:0
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,building:0
-msgid "Building"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.medication.template,frequency_unit:0
-msgid "when required"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.bed:0
-#: field:oemedical.hospital.bed,telephone_number:0
-msgid "Telephone Number"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_eyes:0
-msgid "Opens eyes spontaneously"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient,marital_status:0
-msgid "Married"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.disease:0
-msgid "Oemedical Patient Disease"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medicament,composition:0
-msgid "Components"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,status:0
-msgid "acute"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_secondary_condition_view
-msgid "Secondary Condition"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,whr:0
-msgid "WHR"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.family_member:0
-msgid "Oemedical Family_Member"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.hospital.bed,ward:0
-msgid "Ward or room"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_patient_disease
-msgid " Patient Disease"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.appointment,appointment_type:0
-#: selection:oemedical.patient.evaluation,evaluation_type:0
-msgid "Inpatient"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.disease,date_start_treatment:0
-msgid "Start of treatment date"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_signs_and_symptoms_view
-msgid "Signs And Symptoms"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medication.template,dose:0
-msgid "Amount of medication (eg, 250 mg) per dose"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,mood:0
-msgid "Fear"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,dod:0
-msgid "Date of Death"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_secondary_condition
-msgid " Secondary Condition"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.hospital.bed,bed_type:0
-msgid "Gatch Bed"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_patient
-msgid " Patient"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.insurance,plan_id:0
-#: help:oemedical.insurance.plan,name:0
-msgid "Insurance company plan"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.pathology,code:0
-msgid "Specific Code for the Disease (eg, ICD-10)"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.prescription.order:0
-#: field:oemedical.prescription.order,pharmacy:0
-#: field:res.partner,is_pharmacy:0
-msgid "Pharmacy"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.medication,is_active:0
-msgid "Check if the patient is currently taking the medication"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_hospital_building_view
-msgid "Hospital Building"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.pathology:0
-#: field:oemedical.pathology,category:0
-msgid "Main Category"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.appointment,doctor:0
-msgid "Physician's Name"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_drug_route
-msgid " Drug Route"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.medication.template,duration_period:0
-msgid "indefinite"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.prescription.line:0
-#: field:oemedical.prescription.line,allow_substitution:0
-msgid "Allow substitution"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.bed:0
-msgid "Oemedical Hospital Bed"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,glycemia:0
-msgid "Glycemia"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,number_of_beds:0
-msgid "Number of beds"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,object_recognition:0
-msgid ""
-"Check this box if the patient suffers from any sort of gnosia disorders, "
-"such as agnosia, prosopagnosia ..."
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.appointment,appointment_type:0
-#: selection:oemedical.patient.evaluation,evaluation_type:0
-msgid "Ambulatory"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.insurance:0
-#: field:oemedical.insurance,member_exp:0
-msgid "Expiration date"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.hospital.ward,gender:0
-msgid "Gender"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.family,name:0
-msgid "Family code within an operational sector"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,judgment:0
-msgid "Jugdment"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,bmi:0
-msgid "Body Mass Index"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.signs_and_symptoms:0
-#: field:oemedical.signs_and_symptoms,clinical_id:0
-msgid "Sign or Symptom"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_vaccination
-msgid "oemedical.vaccination"
-msgstr ""
-
-#. module: oemedical
-#: field:res.partner,is_school:0
-msgid "School"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medication.template,medicament:0
-msgid "Prescribed Medicament"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.physician:0
-#: field:oemedical.physician,health_professional:0
-msgid "Health Professional"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient,marital_status:0
-msgid "Divorced"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.medication.template,frequency_unit:0
-msgid "seconds"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,calculation_ability:0
-msgid "Calculation Ability"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,next_evaluation:0
-msgid "Next Appointment"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.medication,adverse_reaction:0
-msgid "Side effects or adverse reactions that the patient experienced"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,guest_sofa:0
-msgid "Guest sofa-bed"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.operational_area,name:0
-msgid "Operational Area of the city or region"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_pathology_view
-#: view:oemedical.diagnostic_hypothesis:0
-#: field:oemedical.diagnostic_hypothesis,pathology_id:0
-#: view:oemedical.secondary_condition:0
-#: field:oemedical.secondary_condition,pathology_id:0
-msgid "Pathology"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.prescription.line:0
-#: field:oemedical.prescription.line,short_comment:0
-msgid "Comment"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.hospital.bed,bed_type:0
-msgid "Stretcher"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,vocabulary:0
-msgid "Vocabulary"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,weight:0
-msgid "Weight"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.medication.template,duration_period:0
-msgid "months"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.occupation:0
-msgid "Oemedical Occupation"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,hip:0
-msgid "Hip circumference in centimeters, eg 100"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.appointment,urgency:0
-msgid "Urgency Level"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_insurance_plan_view
-msgid "Insurance Plan"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_operational_area_view
-#: view:oemedical.operational_sector:0
-#: field:oemedical.operational_sector,operational_area_id:0
-msgid "Operational Area"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,status:0
-msgid "chronic"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.pathology.category:0
-#: field:oemedical.pathology.category,name:0
-msgid "Category Name"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.prescription.order:0
-msgid "Oemedical Prescription Order"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.medication:0
-#: field:oemedical.patient.medication,discontinued_reason:0
-msgid "Reason for discontinuation"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,tag:0
-msgid "Triacylglycerol(triglicerides) level. Can be approximative"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.disease,date_stop_treatment:0
-msgid "End of treatment date"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.appointment,urgency:0
-#: selection:oemedical.patient.evaluation,mood:0
-msgid "Normal"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_medication_dosage_view
-msgid "Medication Dosage"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_hospital_building
-msgid " Hospital Building"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.hospital.ward,name:0
-msgid "Ward / Room code"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,admin_times:0
-msgid "Admin hours"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_directions_view
-msgid "Directions"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_procedure
-msgid " Procedure"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_diagnostic_hypothesis
-msgid " Diagnostic Hypothesis"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.procedure:0
-msgid "Oemedical Procedure"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.pathology,groups:0
-msgid "Groups"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.hospital.ward,state:0
-msgid "Beds available"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_patient_medication
-msgid " Patient Medication"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_pathology_group_view
-msgid "Pathology Group"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_patient_medication
-msgid "oemedical.patient.medication"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_patient_evaluation
-msgid "oemedical.patient.evaluation"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,critical_info:0
-msgid "Important disease, allergy or procedures information"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.disease,age:0
-msgid "Patient age at the moment of the diagnosis. Can be estimative"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,private_bathroom:0
-msgid "Private Bathroom"
-msgstr ""
-
-#. module: oemedical
-#: help:res.partner,alias:0
-msgid "Common name that the Party is reffered"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.prescription.order:0
-#: field:oemedical.prescription.order,prescription_date:0
-msgid "Prescription Date"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.patient,partner_id:0
-msgid "Related Partner"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,is_allergy:0
-msgid "Allergic Disease"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient,partner_id:0
-msgid "Partner-related data of the patient"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.vaccination:0
-#: field:oemedical.vaccination,vaccine_lot:0
-msgid "Lot Number"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,general_info:0
-msgid "General Information"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.signs_and_symptoms,sign_or_symptom:0
-msgid "Symptom"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.pathology:0
-#: field:oemedical.pathology,chromosome:0
-msgid "Affected Chromosome"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medicament,pregnancy:0
-msgid "Warnings for Pregnant Women"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_insurance_view
-#: view:oemedical.patient:0
-#: field:oemedical.patient,current_insurance:0
-msgid "Insurance"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,memory:0
-msgid ""
-"Check this box if the patient has problems in short or long term memory"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_physician
-msgid "oemedical.physician"
-msgstr ""
-
-#. module: oemedical
-#: constraint:oemedical.medicament.category:0
-#: constraint:oemedical.pathology.category:0
-msgid ""
-"Error ! You cannot create recursive \n"
-"Category."
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_appointment
-msgid "oemedical.appointment"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.vaccination:0
-#: field:oemedical.vaccination,observations:0
-msgid "Observations"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.pathology,chromosome:0
-msgid "chromosome number"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,memory:0
-msgid "Memory"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.pathology.group:0
-#: field:oemedical.pathology.group,desc:0
-msgid "Short Description"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,presentation:0
-msgid "Presentation"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_family_member
-msgid "oemedical.family_member"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient,marital_status:0
-msgid "Single"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_verbal:0
-msgid "Oriented, converses normally"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_prescription_order
-msgid "oemedical.prescription.order"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_medicament_view
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,medicament:0
-#: field:product.product,is_medicament:0
-msgid "Medicament"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.patient.evaluation,actions:0
-msgid "Procedures"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.hospital.ward,gender:0
-msgid "Women Ward"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.disease,doctor:0
-msgid "Physician who treated or diagnosed the patient"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient,blood_type:0
-msgid "AB"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.pathology.group:0
-msgid "Oemedical Pathology Group"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.patient,photo:0
-msgid "Picture"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,knowledge_current_events:0
-msgid "Knowledge of Current Events"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_motor:0
-msgid "Localizes painful stimuli"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_drug_form
-msgid "oemedical.drug.form"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.physician,specialty:0
-msgid "Specialty Code"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,malnutrition:0
-msgid "Malnutrition"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,systolic:0
-msgid "Systolic Pressure"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.pathology.group,code:0
-msgid ""
-"for example MDG6 code will contain the Millennium Development Goals # 6 "
-"diseases : Tuberculosis, Malaria and HIV/AIDS"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.hospital.unit,name:0
-msgid "Name of the unit, eg Neonatal, Intensive Care, ..."
-msgstr ""
-
-#. module: oemedical
-#: field:res.partner,is_person:0
-msgid "Person"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medication.template,frequency:0
-msgid ""
-"Time in between doses the patient must wait (ie, for 1 pill each 8 hours, "
-"put here 8 and select \"hours\" in the unit field"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,judgment:0
-msgid ""
-"Check this box if the patient can not interpret basic scenario solutions"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,private:0
-#: selection:oemedical.insurance,insurance_type:0
-#: selection:res.partner,insurance_company_type:0
-msgid "Private"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,healed_date:0
-msgid "Healed"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-msgid "Oemedical Hospital Ward"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.prescription.line:0
-msgid "Oemedical Prescription Line"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_occupation
-msgid "oemedical.occupation"
-msgstr ""

=== renamed file 'oemedical/i18n/es_BO.po' => 'oemedical/i18n/es_BO.po.THIS'
=== renamed file 'oemedical/i18n/es_CL.po' => 'oemedical/i18n/es_CL.po.THIS'
=== renamed file 'oemedical/i18n/es_EC.po' => 'oemedical/i18n/es_EC.po.THIS'
=== removed file 'oemedical/i18n/es_MX.po.THIS'
--- oemedical/i18n/es_MX.po.THIS	2013-10-23 03:02:27 +0000
+++ oemedical/i18n/es_MX.po.THIS	1970-01-01 00:00:00 +0000
@@ -1,3620 +0,0 @@
-# Translation of OpenERP Server.
-# This file contains the translation of the following modules:
-#	* oemedical
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: OpenERP Server 7.0\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-12-03 17:04+0000\n"
-"PO-Revision-Date: 2013-07-25 02:47+0000\n"
-"Last-Translator: Etziguery Martinez Diaz <etziguery@xxxxxxxxxxx>\n"
-"Language-Team: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-08-07 05:01+0000\n"
-"X-Generator: Launchpad (build 16721)\n"
-
-#. module: oemedical
-#: field:oemedical.patient.evaluation,mood:0
-msgid "Mood"
-msgstr "Estado de ánimo"
-
-#. module: oemedical
-#: help:oemedical.prescription.line,short_comment:0
-msgid "Short comment on the specific drug"
-msgstr "Breve comentario sobre un medicamento en específico"
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_diagnostic_hypothesis_view
-msgid "Diagnostic Hypothesis"
-msgstr "Diagnóstico hipotético"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_product_product
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,product:0
-msgid "Product"
-msgstr "Producto"
-
-#. module: oemedical
-#: view:oemedical.medicament.category:0
-#: field:oemedical.medicament.category,parent_id:0
-msgid "Parent"
-msgstr "Padre"
-
-#. module: oemedical
-#: help:oemedical.medication.template,end_treatment:0
-#: help:oemedical.medication.template,start_treatment:0
-msgid "Date of start of Treatment"
-msgstr "Día de inicio del tratamiento"
-
-#. module: oemedical
-#: selection:oemedical.hospital.bed,bed_type:0
-msgid "Low Air Loss"
-msgstr "Baja pérdida de aire"
-
-#. module: oemedical
-#: field:oemedical.patient.evaluation,loc_verbal:0
-msgid "Glasgow - Verbal"
-msgstr "Glasgow - Verbal"
-
-#. module: oemedical
-#: view:oemedical.medication.dosage:0
-msgid "Oemedical Medication Dosage"
-msgstr "Oemedical Medication Dosage"
-
-#. module: oemedical
-#: view:oemedical.prescription.line:0
-#: field:oemedical.prescription.line,quantity:0
-msgid "Quantity"
-msgstr "Cantidad"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,respiratory_rate:0
-msgid "Respiratory Rate"
-msgstr "Respiratory Rate"
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_physician_view
-#: view:oemedical.appointment:0
-#: field:oemedical.appointment,doctor:0
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,doctor:0
-#: view:oemedical.patient.medication:0
-#: field:oemedical.patient.medication,doctor:0
-msgid "Physician"
-msgstr "Physician"
-
-#. module: oemedical
-#: view:oemedical.insurance:0
-msgid "Oemedical Insurance"
-msgstr "Oemedical Insurance"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_patient_disease
-msgid "oemedical.patient.disease"
-msgstr "oemedical.patient.disease"
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_hospital_or_view
-msgid "Hospital Or"
-msgstr "Hospital Or"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_hospital_building
-msgid "oemedical.hospital.building"
-msgstr "oemedical.hospital.building"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,object_recognition:0
-msgid "Object Recognition"
-msgstr "Object Recognition"
-
-#. module: oemedical
-#: help:res.partner,is_insurance_company:0
-msgid "Check if the party is an Insurance Company"
-msgstr "Check if the party is an Insurance Company"
-
-#. module: oemedical
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,pregnancy_warning:0
-msgid "Pregnancy warning"
-msgstr "Pregnancy warning"
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,vocabulary:0
-msgid ""
-"Check this box if the patient lacks basic intelectual capacity, when she/he "
-"can not describe elementary objects"
-msgstr ""
-"Check this box if the patient lacks basic intelectual capacity, when she/he "
-"can not describe elementary objects"
-
-#. module: oemedical
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,dose:0
-msgid "Dose"
-msgstr "Dose"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_res_partner
-msgid "Partner"
-msgstr "Empresa"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_medicament
-msgid "oemedical.medicament"
-msgstr "oemedical.medicament"
-
-#. module: oemedical
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,is_infectious:0
-msgid "Infectious Disease"
-msgstr "Infectious Disease"
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_occupation_view
-msgid "Occupation"
-msgstr "Occupation"
-
-#. module: oemedical
-#: view:oemedical.vaccination:0
-#: field:oemedical.vaccination,dose:0
-msgid "Dose #"
-msgstr "Dose #"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_medication_template
-msgid "oemedical.medication.template"
-msgstr "oemedical.medication.template"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_specialty
-msgid " Specialty"
-msgstr " Especialidad"
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,status:0
-msgid "healed"
-msgstr "healed"
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_eyes:0
-msgid "Opens eyes in response to painful stimuli"
-msgstr "Opens eyes in response to painful stimuli"
-
-#. module: oemedical
-#: selection:oemedical.insurance,insurance_type:0
-#: selection:res.partner,insurance_company_type:0
-msgid "State"
-msgstr "State"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,bpm:0
-msgid "Heart Rate"
-msgstr "Heart Rate"
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,childbearing_age:0
-msgid "Potential for Childbearing"
-msgstr "Potential for Childbearing"
-
-#. module: oemedical
-#: help:oemedical.medicament,active_component:0
-msgid "Active Component"
-msgstr "Active Component"
-
-#. module: oemedical
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,therapeutic_action:0
-msgid "Therapeutic effect"
-msgstr "Therapeutic effect"
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_patient_view
-#: view:oemedical.appointment:0
-#: field:oemedical.appointment,patient:0
-#: view:oemedical.patient:0
-#: field:oemedical.patient,patient:0
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,patient_id:0
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,patient:0
-#: view:oemedical.patient.medication:0
-#: field:oemedical.patient.medication,name:0
-#: field:oemedical.patient.medication,patient:0
-#: view:oemedical.prescription.order:0
-#: field:oemedical.prescription.order,patient:0
-#: view:oemedical.vaccination:0
-#: field:oemedical.vaccination,patient_id:0
-#: field:res.partner,is_patient:0
-msgid "Patient"
-msgstr "Patient"
-
-#. module: oemedical
-#: view:oemedical.drug.form:0
-#: field:oemedical.drug.form,name:0
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,form:0
-msgid "Form"
-msgstr "Form"
-
-#. module: oemedical
-#: view:oemedical.pathology.category:0
-msgid "Oemedical Pathology Category"
-msgstr "Oemedical Pathology Category"
-
-#. module: oemedical
-#: help:oemedical.medication.dosage,abbreviation:0
-msgid "Dosage abbreviation, such as tid in the US or tds in the UK"
-msgstr "Dosage abbreviation, such as tid in the US or tds in the UK"
-
-#. module: oemedical
-#: field:oemedical.patient,vaccinations:0
-msgid "Vaccinations"
-msgstr "Vaccinations"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_patient_evaluation
-msgid " Patient Evaluation"
-msgstr " Patient Evaluation"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_procedure
-msgid "oemedical.procedure"
-msgstr "oemedical.procedure"
-
-#. module: oemedical
-#: help:oemedical.medication.template,frequency_prn:0
-msgid "Use it as needed, pro re nata"
-msgstr "Use it as needed, pro re nata"
-
-#. module: oemedical
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,diagnosed_date:0
-msgid "Date of Diagnosis"
-msgstr "Date of Diagnosis"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,ldl:0
-msgid "Last LDL"
-msgstr "Last LDL"
-
-#. module: oemedical
-#: view:oemedical.pathology.category:0
-#: field:oemedical.pathology.category,parent_id:0
-msgid "Parent Category"
-msgstr "Parent Category"
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,age:0
-msgid "Age"
-msgstr "Age"
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,evaluation_type:0
-msgid "Periodic control"
-msgstr "Periodic control"
-
-#. module: oemedical
-#: selection:oemedical.medication.template,duration_period:0
-#: selection:oemedical.medication.template,frequency_unit:0
-msgid "hours"
-msgstr "hours"
-
-#. module: oemedical
-#: field:res.partner,relative_id:0
-msgid "Contact"
-msgstr "Contact"
-
-#. module: oemedical
-#: view:oemedical.specialty:0
-msgid "Oemedical Specialty"
-msgstr "Oemedical Specialty"
-
-#. module: oemedical
-#: field:oemedical.medication.template,duration_period:0
-msgid "Treatment period"
-msgstr "Treatment period"
-
-#. module: oemedical
-#: view:oemedical.appointment:0
-#: field:oemedical.appointment,consultations:0
-#: help:oemedical.appointment,consultations:0
-msgid "Consultation Services"
-msgstr "Consultation Services"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_diagnostic_hypothesis
-msgid "oemedical.diagnostic_hypothesis"
-msgstr "oemedical.diagnostic_hypothesis"
-
-#. module: oemedical
-#: field:res.partner,lastname:0
-#: help:res.partner,lastname:0
-msgid "Last Name"
-msgstr "Last Name"
-
-#. module: oemedical
-#: help:oemedical.hospital.ward,private:0
-msgid "Check this option for private room"
-msgstr "Check this option for private room"
-
-#. module: oemedical
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,adverse_reaction:0
-#: view:oemedical.patient.medication:0
-#: field:oemedical.patient.medication,adverse_reaction:0
-msgid "Adverse Reactions"
-msgstr "Adverse Reactions"
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,tremor:0
-msgid ""
-"If associated  to a disease, please encode it on the patient disease history"
-msgstr ""
-"If associated  to a disease, please encode it on the patient disease history"
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_operational_sector_view
-#: view:oemedical.family:0
-#: field:oemedical.family,operational_sector:0
-#: field:oemedical.operational_area,operational_sector:0
-msgid "Operational Sector"
-msgstr "Operational Sector"
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,respiratory_rate:0
-msgid "Respiratory rate expressed in breaths per minute"
-msgstr "Respiratory rate expressed in breaths per minute"
-
-#. module: oemedical
-#: view:oemedical.insurance:0
-#: field:oemedical.insurance,owner:0
-msgid "Owner"
-msgstr "Owner"
-
-#. module: oemedical
-#: constraint:product.product:0
-msgid ""
-"You provided an invalid \"EAN13 Barcode\" reference. You may use the "
-"\"Internal Reference\" field instead."
-msgstr ""
-"Usted proporcionó un \"Código de barras EAN13\" referencia no válida. Usted "
-"puede utilizar el campo \"referencia interna\" en su lugar."
-
-#. module: oemedical
-#: view:oemedical.prescription.order:0
-#: field:oemedical.prescription.order,user_id:0
-msgid "Prescribing Doctor"
-msgstr "Prescribing Doctor"
-
-#. module: oemedical
-#: view:oemedical.insurance:0
-#: field:oemedical.insurance,category:0
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,category:0
-msgid "Category"
-msgstr "Category"
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_prescription_order_view
-msgid "Prescription Order"
-msgstr "Prescription Order"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_pathology_category
-msgid "oemedical.pathology.category"
-msgstr "oemedical.pathology.category"
-
-#. module: oemedical
-#: view:oemedical.disease_group.members:0
-#: field:oemedical.disease_group.members,disease_group_id:0
-msgid "Group"
-msgstr "Group"
-
-#. module: oemedical
-#: help:oemedical.family_member,member:0
-msgid "Family Member Name"
-msgstr "Family Member Name"
-
-#. module: oemedical
-#: help:oemedical.patient.disease,is_infectious:0
-msgid "Check if the patient has an infectioustransmissible disease"
-msgstr "Check if the patient has an infectioustransmissible disease"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,doctor:0
-msgid "Doctor"
-msgstr "Doctor"
-
-#. module: oemedical
-#: help:res.partner,is_patient:0
-msgid "Check if the party is a patient"
-msgstr "Check if the party is a patient"
-
-#. module: oemedical
-#: field:oemedical.family_member,member:0
-msgid "Member"
-msgstr "Member"
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,height:0
-msgid "Height in centimeters, eg 175"
-msgstr "Height in centimeters, eg 175"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_insurance
-msgid "oemedical.insurance"
-msgstr "oemedical.insurance"
-
-#. module: oemedical
-#: help:oemedical.physician,health_professional:0
-msgid "Health Professional's Name, from the partner list"
-msgstr "Health Professional's Name, from the partner list"
-
-#. module: oemedical
-#: view:oemedical.diagnostic_hypothesis:0
-#: field:oemedical.diagnostic_hypothesis,evaluation_id:0
-#: view:oemedical.directions:0
-#: field:oemedical.directions,evaluation_id:0
-#: view:oemedical.secondary_condition:0
-#: field:oemedical.secondary_condition,evaluation_id:0
-#: view:oemedical.signs_and_symptoms:0
-#: field:oemedical.signs_and_symptoms,evaluation_id:0
-msgid "Evaluation"
-msgstr "Evaluation"
-
-#. module: oemedical
-#: view:oemedical.drug.form:0
-msgid "Oemedical Drug Form"
-msgstr "Oemedical Drug Form"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_ethnicity
-msgid "oemedical.ethnicity"
-msgstr "oemedical.ethnicity"
-
-#. module: oemedical
-#: field:oemedical.hospital.bed,state:0
-#: field:oemedical.hospital.ward,state:0
-msgid "Status"
-msgstr "Status"
-
-#. module: oemedical
-#: view:oemedical.vaccination:0
-#: field:oemedical.vaccination,date:0
-msgid "Date"
-msgstr "Date"
-
-#. module: oemedical
-#: help:oemedical.vaccination,institution:0
-msgid "Medical Center where the patient is being or was vaccinated"
-msgstr "Medical Center where the patient is being or was vaccinated"
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,hba1c:0
-msgid "Last Glycated Hb level. Can be approximative."
-msgstr "Last Glycated Hb level. Can be approximative."
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_motor:0
-msgid "Makes no movement"
-msgstr "Makes no movement"
-
-#. module: oemedical
-#: view:oemedical.medicament.category:0
-msgid "Oemedical Medicament Category"
-msgstr "Oemedical Medicament Category"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_pathology_category
-msgid " Pathology Category"
-msgstr " Pathology Category"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_medication_template
-msgid " Medication Template"
-msgstr " Medication Template"
-
-#. module: oemedical
-#: field:oemedical.family,members:0
-msgid "Family Members"
-msgstr "Family Members"
-
-#. module: oemedical
-#: help:oemedical.patient,general_info:0
-msgid "General information about the patient"
-msgstr "General information about the patient"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_operational_sector
-msgid " Operational Sector"
-msgstr " Operational Sector"
-
-#. module: oemedical
-#: view:oemedical.hospital.bed:0
-#: field:oemedical.hospital.bed,name:0
-#: field:product.product,is_bed:0
-msgid "Bed"
-msgstr "Bed"
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_motor:0
-msgid "Flexion / Withdrawal to painful stimuli"
-msgstr "Flexion / Withdrawal to painful stimuli"
-
-#. module: oemedical
-#: view:oemedical.pathology:0
-#: field:oemedical.pathology,protein:0
-msgid "Protein involved"
-msgstr "Protein involved"
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,signs_and_symptoms:0
-msgid ""
-"Enter the Signs and Symptoms                                         for the "
-"patient in this evaluation."
-msgstr ""
-"Enter the Signs and Symptoms                                         for the "
-"patient in this evaluation."
-
-#. module: oemedical
-#: view:oemedical.vaccination:0
-#: field:oemedical.vaccination,vaccine:0
-#: field:product.product,is_vaccine:0
-msgid "Vaccine"
-msgstr "Vaccine"
-
-#. module: oemedical
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,dose_unit:0
-msgid "dose unit"
-msgstr "dose unit"
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_procedure_view
-#: view:oemedical.directions:0
-#: field:oemedical.directions,procedure_id:0
-msgid "Procedure"
-msgstr "Procedure"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,praxis:0
-msgid "Praxis"
-msgstr "Praxis"
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_family_view
-#: view:oemedical.family:0
-#: field:oemedical.family,name:0
-#: view:oemedical.family_member:0
-#: field:oemedical.family_member,family_id:0
-#: view:oemedical.patient:0
-#: field:oemedical.patient,family:0
-msgid "Family"
-msgstr "Family"
-
-#. module: oemedical
-#: help:oemedical.pathology,protein:0
-msgid "Name of the protein(s) affected"
-msgstr "Name of the protein(s) affected"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,height:0
-msgid "Height"
-msgstr "Height"
-
-#. module: oemedical
-#: field:oemedical.patient,marital_status:0
-msgid "Marital Status"
-msgstr "Marital Status"
-
-#. module: oemedical
-#: help:oemedical.pathology,groups:0
-msgid ""
-"Specify the groups this pathology belongs. Some automated processes act upon "
-"the code of the group"
-msgstr ""
-"Specify the groups this pathology belongs. Some automated processes act upon "
-"the code of the group"
-
-#. module: oemedical
-#: field:oemedical.medicament.category,childs:0
-msgid "Children"
-msgstr "Children"
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_ethnicity_view
-msgid "Ethnicity"
-msgstr "Ethnicity"
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_drug_route_view
-msgid "Drug Route"
-msgstr "Drug Route"
-
-#. module: oemedical
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,storage:0
-msgid "Storage Conditions"
-msgstr "Storage Conditions"
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,allergy_type:0
-msgid "Misc Allergy"
-msgstr "Misc Allergy"
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,microwave:0
-msgid "Microwave"
-msgstr "Microwave"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_medicament
-msgid " Medicament"
-msgstr " Medicament"
-
-#. module: oemedical
-#: view:oemedical.family_member:0
-msgid "Party"
-msgstr "Party"
-
-#. module: oemedical
-#: help:res.partner,internal_user:0
-msgid ""
-"In GNU Health is the user (doctor, nurse) that logins.When the party is a "
-"doctor or a health professional, it will be the user that maps the doctor's "
-"party name. It must be present."
-msgstr ""
-"In GNU Health is the user (doctor, nurse) that logins.When the party is a "
-"doctor or a health professional, it will be the user that maps the doctor's "
-"party name. It must be present."
-
-#. module: oemedical
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,composition:0
-msgid "Composition"
-msgstr "Composition"
-
-#. module: oemedical
-#: view:oemedical.directions:0
-msgid "Oemedical Directions"
-msgstr "Oemedical Directions"
-
-#. module: oemedical
-#: selection:oemedical.appointment,urgency:0
-msgid "Urgent"
-msgstr "Urgent"
-
-#. module: oemedical
-#: help:oemedical.medication.template,indication:0
-msgid ""
-"Choose a disease for this medicament from the disease list. It can be an "
-"existing disease of the patient or a prophylactic."
-msgstr ""
-"Choose a disease for this medicament from the disease list. It can be an "
-"existing disease of the patient or a prophylactic."
-
-#. module: oemedical
-#: help:oemedical.pathology,category:0
-msgid ""
-"Select the main category for this disease This is usuallyassociated to the "
-"standard. For instance, the chapter on the ICD-10will be the main category "
-"for de disease"
-msgstr ""
-"Select the main category for this disease This is usuallyassociated to the "
-"standard. For instance, the chapter on the ICD-10will be the main category "
-"for de disease"
-
-#. module: oemedical
-#: view:oemedical.ethnicity:0
-#: field:oemedical.ethnicity,notes:0
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,notes:0
-msgid "Notes"
-msgstr "Notes"
-
-#. module: oemedical
-#: selection:oemedical.hospital.ward,gender:0
-msgid "Men Ward"
-msgstr "Men Ward"
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,tv:0
-msgid "Television"
-msgstr "Television"
-
-#. module: oemedical
-#: help:oemedical.medication.template,common_dosage:0
-msgid "Common / standard dosage frequency for this medicament"
-msgstr "Common / standard dosage frequency for this medicament"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_family
-msgid " Family"
-msgstr " Family"
-
-#. module: oemedical
-#: view:oemedical.disease_group.members:0
-#: field:oemedical.disease_group.members,name:0
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,pathology:0
-#: help:oemedical.patient.disease,pathology:0
-msgid "Disease"
-msgstr "Disease"
-
-#. module: oemedical
-#: field:res.partner,alias:0
-msgid "Alias"
-msgstr "Alias"
-
-#. module: oemedical
-#: field:oemedical.patient.disease,status:0
-msgid "Status of the disease"
-msgstr "Status of the disease"
-
-#. module: oemedical
-#: help:oemedical.medication.template,duration:0
-msgid ""
-"Period that the patient must take the medication. in minutes, hours, days, "
-"months, years or indefinately"
-msgstr ""
-"Period that the patient must take the medication. in minutes, hours, days, "
-"months, years or indefinately"
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,status:0
-msgid "improving"
-msgstr "improving"
-
-#. module: oemedical
-#: view:oemedical.operational_sector:0
-#: field:oemedical.operational_sector,name:0
-msgid "Op. Sector"
-msgstr "Op. Sector"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_ethnicity
-msgid " Ethnicity"
-msgstr " Raza"
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,cod:0
-msgid "Cause of Death"
-msgstr "Cause of Death"
-
-#. module: oemedical
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,is_active:0
-msgid "Active disease"
-msgstr "Active disease"
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,dob:0
-msgid "DoB"
-msgstr "DoB"
-
-#. module: oemedical
-#: field:res.partner,internal_user:0
-msgid "Internal User"
-msgstr "Internal User"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_specialty
-msgid "oemedical.specialty"
-msgstr "oemedical.specialty"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_medicament_category
-msgid " Medicament Category"
-msgstr " Medicament Category"
-
-#. module: oemedical
-#: field:oemedical.patient.evaluation,secondary_conditions:0
-msgid "Secondary Conditions"
-msgstr "Secondary Conditions"
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_verbal:0
-msgid "Incomprehensible sounds"
-msgstr "Incomprehensible sounds"
-
-#. module: oemedical
-#: help:oemedical.vaccination,vaccine:0
-msgid ""
-"Vaccine Name. Make sure that the vaccine (product) has all the proper "
-"information at product level. Information such as provider, supplier code, "
-"tracking number, etc.. This  information must always be present. If "
-"available, please copy / scan the vaccine leaflet and attach it to this "
-"record"
-msgstr ""
-"Vaccine Name. Make sure that the vaccine (product) has all the proper "
-"information at product level. Information such as provider, supplier code, "
-"tracking number, etc.. This  information must always be present. If "
-"available, please copy / scan the vaccine leaflet and attach it to this "
-"record"
-
-#. module: oemedical
-#: view:oemedical.vaccination:0
-#: field:oemedical.vaccination,next_dose_date:0
-msgid "Next Dose"
-msgstr "Next Dose"
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_patient_disease_view
-msgid "Patient Disease"
-msgstr "Patient Disease"
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,head_circumference:0
-msgid "Head circumference"
-msgstr "Head circumference"
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,weight:0
-msgid "Weight in Kilos"
-msgstr "Weight in Kilos"
-
-#. module: oemedical
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,treatment_description:0
-msgid "Treatment Description"
-msgstr "Treatment Description"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_directions
-msgid "oemedical.directions"
-msgstr "oemedical.directions"
-
-#. module: oemedical
-#: help:oemedical.appointment,patient:0
-#: help:oemedical.patient,patient:0
-msgid "Patient Name"
-msgstr "Patient Name"
-
-#. module: oemedical
-#: selection:oemedical.medication.template,duration_period:0
-msgid "years"
-msgstr "years"
-
-#. module: oemedical
-#: help:oemedical.hospital.bed,telephone_number:0
-msgid "Telephone number / Extension"
-msgstr "Telephone number / Extension"
-
-#. module: oemedical
-#: view:oemedical.insurance.plan:0
-#: field:oemedical.insurance.plan,notes:0
-#: view:oemedical.physician:0
-#: field:oemedical.physician,info:0
-msgid "Extra info"
-msgstr "Extra info"
-
-#. module: oemedical
-#: field:oemedical.patient.evaluation,signs_and_symptoms:0
-msgid "Signs and Symptoms"
-msgstr "Signs and Symptoms"
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,mood:0
-msgid "Disgust"
-msgstr "Disgust"
-
-#. module: oemedical
-#: view:oemedical.medicament:0
-msgid "Oemedical Medicament"
-msgstr "Oemedical Medicament"
-
-#. module: oemedical
-#: field:oemedical.patient,rh:0
-msgid "Rh"
-msgstr "Rh"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,hip:0
-msgid "Hip"
-msgstr "Hip"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_prescription_order
-msgid " Prescription Order"
-msgstr " Prescription Order"
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,evaluation_type:0
-msgid "Emergency"
-msgstr "Emergency"
-
-#. module: oemedical
-#: help:oemedical.hospital.ward,bio_hazard:0
-msgid "Check this option if there is biological hazard"
-msgstr "Check this option if there is biological hazard"
-
-#. module: oemedical
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,frequency_prn:0
-msgid "PRN"
-msgstr "PRN"
-
-#. module: oemedical
-#: view:oemedical.insurance.plan:0
-#: field:oemedical.insurance.plan,is_default:0
-msgid "Default plan"
-msgstr "Default plan"
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_specialty_view
-#: view:oemedical.appointment:0
-#: field:oemedical.appointment,speciality:0
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,specialty:0
-#: view:oemedical.physician:0
-#: field:oemedical.physician,specialty:0
-#: view:oemedical.specialty:0
-#: field:oemedical.specialty,name:0
-msgid "Specialty"
-msgstr "Specialty"
-
-#. module: oemedical
-#: selection:oemedical.medication.template,frequency_unit:0
-msgid "weeks"
-msgstr "weeks"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_medication_dosage
-msgid "oemedical.medication.dosage"
-msgstr "oemedical.medication.dosage"
-
-#. module: oemedical
-#: field:oemedical.prescription.order,prescription_line:0
-msgid "Prescription line"
-msgstr "Prescription line"
-
-#. module: oemedical
-#: field:oemedical.patient.evaluation,diagnostic_hypothesis:0
-msgid "Hypotheses / DDx"
-msgstr "Hypotheses / DDx"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_patient
-msgid "oemedical.patient"
-msgstr "oemedical.patient"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_prescription_line
-msgid "oemedical.prescription.line"
-msgstr "oemedical.prescription.line"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_drug_route
-msgid "oemedical.drug.route"
-msgstr "oemedical.drug.route"
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,whr:0
-msgid "Waist to hip ratio"
-msgstr "Waist to hip ratio"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_drug_form
-msgid " Drug Form"
-msgstr " Drug Form"
-
-#. module: oemedical
-#: help:oemedical.insurance.plan,is_default:0
-msgid ""
-"Check if this is the default plan when assigning this insurance company to a "
-"patient"
-msgstr ""
-"Check if this is the default plan when assigning this insurance company to a "
-"patient"
-
-#. module: oemedical
-#: view:oemedical.medication.dosage:0
-#: field:oemedical.medication.dosage,abbreviation:0
-msgid "Abbreviation"
-msgstr "Abbreviation"
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,disease_severity:0
-msgid "Mild"
-msgstr "Mild"
-
-#. module: oemedical
-#: help:oemedical.medication.dosage,code:0
-msgid "Dosage Code,for example: SNOMED 229798009 = 3 times per day"
-msgstr "Dosage Code,for example: SNOMED 229798009 = 3 times per day"
-
-#. module: oemedical
-#: view:oemedical.ethnicity:0
-msgid "Oemedical Ethnicity"
-msgstr "Oemedical Ethnicity"
-
-#. module: oemedical
-#: selection:oemedical.hospital.bed,bed_type:0
-msgid "Low Bed"
-msgstr "Low Bed"
-
-#. module: oemedical
-#: help:oemedical.medicament,pregnancy_category:0
-msgid ""
-"** FDA Pregancy Categories ***\n"
-"CATEGORY A :Adequate and well-controlled human studies have failed to "
-"demonstrate a risk to the fetus in the first trimester of pregnancy (and "
-"there is no evidence of risk in later trimesters).\n"
-"\n"
-"CATEGORY B : Animal reproduction studies have failed todemonstrate a risk to "
-"the fetus and there are no adequate and well-controlled studies in pregnant "
-"women OR Animal studies have shown an adverse effect, but adequate and well-"
-"controlled studies in pregnant women have failed to demonstrate a risk to "
-"the fetus in any trimester.\n"
-"\n"
-"CATEGORY C : Animal reproduction studies have shown an adverse effect on the "
-"fetus and there are no adequate and well-controlled studies in humans, but "
-"potential benefits may warrant use of the drug in pregnant women despite "
-"potential risks. \n"
-"\n"
-" CATEGORY D : There is positive evidence of human fetal  risk based on "
-"adverse reaction data from investigational or marketing experience or "
-"studies in humans, but potential benefits may warrant use of the drug in "
-"pregnant women despite potential risks.\n"
-"\n"
-"CATEGORY X : Studies in animals or humans have demonstrated fetal "
-"abnormalities and/or there is positive evidence of human fetal risk based on "
-"adverse reaction data from investigational or marketing experience, and the "
-"risks involved in use of the drug in pregnant women clearly outweigh "
-"potential benefits.\n"
-"\n"
-"CATEGORY N : Not yet classified"
-msgstr ""
-"** FDA Pregancy Categories ***\n"
-"CATEGORY A :Adequate and well-controlled human studies have failed to "
-"demonstrate a risk to the fetus in the first trimester of pregnancy (and "
-"there is no evidence of risk in later trimesters).\n"
-"\n"
-"CATEGORY B : Animal reproduction studies have failed todemonstrate a risk to "
-"the fetus and there are no adequate and well-controlled studies in pregnant "
-"women OR Animal studies have shown an adverse effect, but adequate and well-"
-"controlled studies in pregnant women have failed to demonstrate a risk to "
-"the fetus in any trimester.\n"
-"\n"
-"CATEGORY C : Animal reproduction studies have shown an adverse effect on the "
-"fetus and there are no adequate and well-controlled studies in humans, but "
-"potential benefits may warrant use of the drug in pregnant women despite "
-"potential risks. \n"
-"\n"
-" CATEGORY D : There is positive evidence of human fetal  risk based on "
-"adverse reaction data from investigational or marketing experience or "
-"studies in humans, but potential benefits may warrant use of the drug in "
-"pregnant women despite potential risks.\n"
-"\n"
-"CATEGORY X : Studies in animals or humans have demonstrated fetal "
-"abnormalities and/or there is positive evidence of human fetal risk based on "
-"adverse reaction data from investigational or marketing experience, and the "
-"risks involved in use of the drug in pregnant women clearly outweigh "
-"potential benefits.\n"
-"\n"
-"CATEGORY N : Not yet classified"
-
-#. module: oemedical
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,end_treatment:0
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,date_stop_treatment:0
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,evaluation_endtime:0
-msgid "End"
-msgstr "End"
-
-#. module: oemedical
-#: help:res.partner,is_doctor:0
-msgid "Check if the party is a health professional"
-msgstr "Check if the party is a health professional"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_pathology
-msgid "oemedical.pathology"
-msgstr "oemedical.pathology"
-
-#. module: oemedical
-#: help:oemedical.family_member,family_id:0
-msgid "Family code"
-msgstr "Family code"
-
-#. module: oemedical
-#: view:oemedical.medication.template:0
-msgid "Oemedical Medication Template"
-msgstr "Oemedical Medication Template"
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,bio_hazard:0
-msgid "Bio Hazard"
-msgstr "Bio Hazard"
-
-#. module: oemedical
-#: view:oemedical.prescription.line:0
-#: field:oemedical.prescription.line,prnt:0
-msgid "Print"
-msgstr "Print"
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_patient_evaluation_view
-msgid "Patient Evaluation"
-msgstr "Patient Evaluation"
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_family_member_view
-msgid "Family Member"
-msgstr "Family Member"
-
-#. module: oemedical
-#: field:oemedical.appointment,appointment_type:0
-#: field:oemedical.patient.evaluation,evaluation_type:0
-msgid "Type"
-msgstr "Type"
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,mood:0
-msgid "Flat"
-msgstr "Flat"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_insurance_plan
-msgid " Insurance Plan"
-msgstr " Insurance Plan"
-
-#. module: oemedical
-#: help:oemedical.hospital.or,name:0
-msgid "Name of the Operating Room"
-msgstr "Name of the Operating Room"
-
-#. module: oemedical
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,dosage:0
-msgid "Dosage Instructions"
-msgstr "Dosage Instructions"
-
-#. module: oemedical
-#: selection:oemedical.appointment,appointment_type:0
-msgid "Outpatient"
-msgstr "Outpatient"
-
-#. module: oemedical
-#: help:oemedical.medicament,product:0
-msgid "Product Name"
-msgstr "Product Name"
-
-#. module: oemedical
-#: view:oemedical.hospital.bed:0
-#: field:oemedical.hospital.bed,ward:0
-msgid "Ward"
-msgstr "Ward"
-
-#. module: oemedical
-#: sql_constraint:oemedical.family:0
-msgid "Family Code must be unique!"
-msgstr "Family Code must be unique!"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_hospital_ward
-msgid " Hospital Ward"
-msgstr " Hospital Ward"
-
-#. module: oemedical
-#: view:oemedical.operational_sector:0
-msgid "Oemedical Operational_Sector"
-msgstr "Oemedical Operational_Sector"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,reliable_info:0
-msgid "Reliable"
-msgstr "Reliable"
-
-#. module: oemedical
-#: field:res.partner,is_work:0
-msgid "Work"
-msgstr "Work"
-
-#. module: oemedical
-#: view:oemedical.disease_group.members:0
-msgid "Oemedical Disease_Group Members"
-msgstr "Oemedical Disease_Group Members"
-
-#. module: oemedical
-#: field:oemedical.insurance,insurance_type:0
-#: field:res.partner,insurance_company_type:0
-msgid "Insurance Type"
-msgstr "Insurance Type"
-
-#. module: oemedical
-#: selection:oemedical.patient,sex:0
-msgid "Male"
-msgstr "Male"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_root
-#: model:ir.ui.menu,name:oemedical.oemedical_root_sub
-#: view:res.partner:0
-msgid "OeMedical"
-msgstr "OeMedical"
-
-#. module: oemedical
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,duration:0
-msgid "Treatment duration"
-msgstr "Treatment duration"
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,calculation_ability:0
-msgid "Check this box if the patient can not do simple arithmetic problems"
-msgstr "Check this box if the patient can not do simple arithmetic problems"
-
-#. module: oemedical
-#: view:oemedical.prescription.line:0
-#: field:oemedical.prescription.line,refills:0
-msgid "Refills #"
-msgstr "Refills #"
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,evaluation_type:0
-msgid "Phone call"
-msgstr "Phone call"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_hospital_unit
-msgid "oemedical.hospital.unit"
-msgstr "oemedical.hospital.unit"
-
-#. module: oemedical
-#: view:oemedical.family:0
-msgid "Oemedical Family"
-msgstr "Oemedical Family"
-
-#. module: oemedical
-#: selection:oemedical.medication.template,duration_period:0
-#: selection:oemedical.medication.template,frequency_unit:0
-msgid "days"
-msgstr "days"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_vaccination
-msgid " Vaccination"
-msgstr " Vaccination"
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,allergy_type:0
-msgid "Misc Contraindication"
-msgstr "Misc Contraindication"
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,ssn:0
-msgid "SSN"
-msgstr "SSN"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_signs_and_symptoms
-msgid " Signs And Symptoms"
-msgstr " Signos y síntomas"
-
-#. module: oemedical
-#: help:oemedical.medicament,dosage:0
-msgid "Dosage / Indications"
-msgstr "Dosage / Indications"
-
-#. module: oemedical
-#: view:oemedical.prescription.line:0
-#: field:oemedical.prescription.line,review:0
-msgid "Review"
-msgstr "Review"
-
-#. module: oemedical
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,start_treatment:0
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,date_start_treatment:0
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,evaluation_start:0
-msgid "Start"
-msgstr "Start"
-
-#. module: oemedical
-#: field:oemedical.patient,medications:0
-msgid "Medications"
-msgstr "Medications"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,present_illness:0
-msgid "Present Illness"
-msgstr "Present Illness"
-
-#. module: oemedical
-#: selection:oemedical.hospital.bed,bed_type:0
-msgid "Clinitron"
-msgstr "Clinitron"
-
-#. module: oemedical
-#: help:oemedical.patient.medication,doctor:0
-msgid "Physician who prescribed the medicament"
-msgstr "Physician who prescribed the medicament"
-
-#. module: oemedical
-#: view:oemedical.appointment:0
-#: field:oemedical.appointment,appointment_date:0
-msgid "Date and Time"
-msgstr "Date and Time"
-
-#. module: oemedical
-#: selection:oemedical.patient,marital_status:0
-msgid "Separated"
-msgstr "Separated"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_signs_and_symptoms
-msgid "oemedical.signs_and_symptoms"
-msgstr "oemedical.signs_and_symptoms"
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,praxis:0
-msgid "Check this box if the patient is unable to make voluntarymovements"
-msgstr "Check this box if the patient is unable to make voluntarymovements"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,derived_from:0
-msgid "Derived from"
-msgstr "Derived from"
-
-#. module: oemedical
-#: help:oemedical.hospital.building,name:0
-msgid "Name of the building within the institution"
-msgstr "Name of the building within the institution"
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,dehydration:0
-msgid ""
-"Check this box if the patient show signs of dehydration. If associated  to a "
-"disease, please encode the  correspondent disease on the patient disease "
-"history. For example, Volume Depletion, E86 in ICD-10 encoding"
-msgstr ""
-"Check this box if the patient show signs of dehydration. If associated  to a "
-"disease, please encode the  correspondent disease on the patient disease "
-"history. For example, Volume Depletion, E86 in ICD-10 encoding"
-
-#. module: oemedical
-#: help:oemedical.patient,primary_care_doctor:0
-msgid "Current primary care / family doctor"
-msgstr "Current primary care / family doctor"
-
-#. module: oemedical
-#: field:oemedical.patient.evaluation,loc_eyes:0
-msgid "Glasgow - Eyes"
-msgstr "Glasgow - Eyes"
-
-#. module: oemedical
-#: help:oemedical.hospital.ward,number_of_beds:0
-msgid "Number of patients per ward"
-msgstr "Number of patients per ward"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_family_member
-msgid " Family Member"
-msgstr " Family Member"
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_verbal:0
-msgid "Confused, disoriented"
-msgstr "Confused, disoriented"
-
-#. module: oemedical
-#: help:oemedical.pathology,name:0
-msgid "Disease name"
-msgstr "Disease name"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,diastolic:0
-msgid "Diastolic Pressure"
-msgstr "Diastolic Pressure"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,hba1c:0
-msgid "Glycated Hemoglobin"
-msgstr "Glycated Hemoglobin"
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_prescription_line_view
-msgid "Prescription Line"
-msgstr "Prescription Line"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,loc:0
-msgid "Level of Consciousness"
-msgstr "Level of Consciousness"
-
-#. module: oemedical
-#: selection:oemedical.hospital.bed,state:0
-msgid "Reserved"
-msgstr "Reserved"
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_dose_unit_view
-msgid "Dose Unit"
-msgstr "Unidad de Dosis"
-
-#. module: oemedical
-#: view:oemedical.pathology:0
-#: field:oemedical.pathology,gene:0
-msgid "Gene"
-msgstr "Gene"
-
-#. module: oemedical
-#: view:oemedical.patient.medication:0
-#: field:oemedical.patient.medication,discontinued:0
-msgid "Discontinued"
-msgstr "Discontinued"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_occupation
-msgid " Occupation"
-msgstr " Occupation"
-
-#. module: oemedical
-#: selection:oemedical.signs_and_symptoms,sign_or_symptom:0
-msgid "Sign"
-msgstr "Sign"
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,primary_care_doctor:0
-msgid "Primary Care Doctor"
-msgstr "Primary Care Doctor"
-
-#. module: oemedical
-#: view:oemedical.drug.form:0
-#: field:oemedical.drug.form,code:0
-#: view:oemedical.drug.route:0
-#: field:oemedical.drug.route,code:0
-#: view:oemedical.ethnicity:0
-#: field:oemedical.ethnicity,code:0
-#: view:oemedical.hospital.building:0
-#: field:oemedical.hospital.building,code:0
-#: view:oemedical.hospital.unit:0
-#: field:oemedical.hospital.unit,code:0
-#: view:oemedical.medication.dosage:0
-#: field:oemedical.medication.dosage,code:0
-#: view:oemedical.occupation:0
-#: field:oemedical.occupation,code:0
-#: view:oemedical.pathology:0
-#: field:oemedical.pathology,code:0
-#: view:oemedical.pathology.group:0
-#: field:oemedical.pathology.group,code:0
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,pcs_code:0
-#: view:oemedical.procedure:0
-#: field:oemedical.procedure,name:0
-#: view:oemedical.specialty:0
-#: field:oemedical.specialty,code:0
-msgid "Code"
-msgstr "Code"
-
-#. module: oemedical
-#: help:oemedical.patient,current_insurance:0
-msgid ""
-"Insurance information. You may choose from the different insurances "
-"belonging to the patient"
-msgstr ""
-"Insurance information. You may choose from the different insurances "
-"belonging to the patient"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,orientation:0
-msgid "Orientation"
-msgstr "Orientation"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,information_source:0
-msgid "Source"
-msgstr "Source"
-
-#. module: oemedical
-#: help:oemedical.patient,critical_info:0
-msgid ""
-"Write any important information on the patient's disease, surgeries, "
-"allergies, ..."
-msgstr ""
-"Write any important information on the patient's disease, surgeries, "
-"allergies, ..."
-
-#. module: oemedical
-#: field:oemedical.patient,sex:0
-msgid "Sex"
-msgstr "Sex"
-
-#. module: oemedical
-#: help:res.partner,is_pharmacy:0
-msgid "Check if the party is a Pharmacy"
-msgstr "Check if the party is a Pharmacy"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_family
-msgid "oemedical.family"
-msgstr "oemedical.family"
-
-#. module: oemedical
-#: view:oemedical.medication.dosage:0
-#: field:oemedical.medication.dosage,name:0
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,common_dosage:0
-#: field:oemedical.medication.template,frequency:0
-msgid "Frequency"
-msgstr "Frequency"
-
-#. module: oemedical
-#: field:oemedical.hospital.bed,bed_type:0
-msgid "Bed Type"
-msgstr "Bed Type"
-
-#. module: oemedical
-#: view:oemedical.patient.medication:0
-#: field:oemedical.patient.medication,course_completed:0
-msgid "Course Completed"
-msgstr "Course Completed"
-
-#. module: oemedical
-#: help:oemedical.pathology.group,name:0
-msgid "Group name"
-msgstr "Group name"
-
-#. module: oemedical
-#: view:oemedical.drug.route:0
-#: field:oemedical.drug.route,name:0
-#: view:oemedical.hospital.or:0
-#: field:oemedical.hospital.or,unit:0
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,unit:0
-msgid "Unit"
-msgstr "Unit"
-
-#. module: oemedical
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,age:0
-msgid "Age when diagnosed"
-msgstr "Age when diagnosed"
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,diagnostic_hypothesis:0
-msgid ""
-"Presumptive Diagnosis. If no diagnosis can be made, encode the main sign or "
-"symptom."
-msgstr ""
-"Presumptive Diagnosis. If no diagnosis can be made, encode the main sign or "
-"symptom."
-
-#. module: oemedical
-#: field:oemedical.signs_and_symptoms,sign_or_symptom:0
-msgid "Subjective / Objective"
-msgstr "Subjective / Objective"
-
-#. module: oemedical
-#: selection:oemedical.hospital.ward,gender:0
-msgid "Unisex"
-msgstr "Unisex"
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,status:0
-msgid "unchanged"
-msgstr "unchanged"
-
-#. module: oemedical
-#: help:oemedical.patient,diseases:0
-msgid "Mark if the patient has died"
-msgstr "Mark if the patient has died"
-
-#. module: oemedical
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,active_component:0
-msgid "Active component"
-msgstr "Active component"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_disease_group_members
-msgid " Disease Group Members"
-msgstr " Miembros del Grupo de la Enfermedad"
-
-#. module: oemedical
-#: field:oemedical.pathology.category,childs:0
-msgid "Children Category"
-msgstr "Children Category"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,user_id:0
-msgid "Last Changed by"
-msgstr "Last Changed by"
-
-#. module: oemedical
-#: view:oemedical.prescription.order:0
-#: field:oemedical.prescription.order,notes:0
-msgid "Prescription Notes"
-msgstr "Prescription Notes"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_operational_area
-msgid "oemedical.operational_area"
-msgstr "oemedical.operational_area"
-
-#. module: oemedical
-#: help:res.partner,is_institution:0
-msgid "Check if the party is a Medical Center"
-msgstr "Check if the party is a Medical Center"
-
-#. module: oemedical
-#: help:oemedical.vaccination,vaccine_lot:0
-msgid ""
-"Please check on the vaccine (product) production lot numberand tracking "
-"number when available !"
-msgstr ""
-"Please check on the vaccine (product) production lot numberand tracking "
-"number when available !"
-
-#. module: oemedical
-#: field:oemedical.patient.evaluation,loc_motor:0
-msgid "Glasgow - Motor"
-msgstr "Glasgow - Motor"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-msgid "Oemedical Patient Evaluation"
-msgstr "Oemedical Patient Evaluation"
-
-#. module: oemedical
-#: view:oemedical.patient.medication:0
-msgid "Oemedical Patient Medication"
-msgstr "Oemedical Patient Medication"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_medicament_category
-msgid "oemedical.medicament.category"
-msgstr "oemedical.medicament.category"
-
-#. module: oemedical
-#: selection:oemedical.hospital.bed,bed_type:0
-msgid "Circo Electric"
-msgstr "Circo Electric"
-
-#. module: oemedical
-#: help:product.product,is_medicament:0
-msgid "Check if the product is a medicament"
-msgstr "Check if the product is a medicament"
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,violent:0
-msgid "Check this box if the patient is agressive or violent at the moment"
-msgstr "Check this box if the patient is agressive or violent at the moment"
-
-#. module: oemedical
-#: view:oemedical.physician:0
-msgid "Oemedical Physician"
-msgstr "Oemedical Physician"
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,status:0
-msgid "worsening"
-msgstr "worsening"
-
-#. module: oemedical
-#: view:oemedical.hospital.or:0
-msgid "Oemedical Hospital Or"
-msgstr "Oemedical Hospital Or"
-
-#. module: oemedical
-#: help:oemedical.prescription.order,prescription_id:0
-msgid "Type in the ID of this prescription"
-msgstr "Type in the ID of this prescription"
-
-#. module: oemedical
-#: view:oemedical.ethnicity:0
-#: field:oemedical.ethnicity,name:0
-#: view:oemedical.hospital.building:0
-#: field:oemedical.hospital.building,name:0
-#: view:oemedical.hospital.or:0
-#: field:oemedical.hospital.or,name:0
-#: view:oemedical.hospital.unit:0
-#: field:oemedical.hospital.unit,name:0
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,name:0
-#: field:oemedical.insurance,name:0
-#: field:oemedical.insurance.plan,name:0
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,name:0
-#: view:oemedical.medicament.category:0
-#: field:oemedical.medicament.category,name:0
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,name:0
-#: view:oemedical.occupation:0
-#: field:oemedical.occupation,name:0
-#: view:oemedical.operational_area:0
-#: field:oemedical.operational_area,name:0
-#: view:oemedical.pathology:0
-#: field:oemedical.pathology,name:0
-#: view:oemedical.pathology.group:0
-#: field:oemedical.pathology.group,name:0
-#: view:oemedical.patient:0
-#: field:oemedical.patient.evaluation,name:0
-#: view:oemedical.physician:0
-#: field:oemedical.physician,name:0
-#: view:oemedical.vaccination:0
-#: field:oemedical.vaccination,name:0
-msgid "Name"
-msgstr "Name"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_hospital_ward
-msgid "oemedical.hospital.ward"
-msgstr "oemedical.hospital.ward"
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,mood:0
-msgid "Rage"
-msgstr "Rage"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_hospital_or
-msgid "oemedical.hospital.or"
-msgstr "oemedical.hospital.or"
-
-#. module: oemedical
-#: view:oemedical.vaccination:0
-msgid "Oemedical Vaccination"
-msgstr "Oemedical Vaccination"
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,malnutrition:0
-msgid ""
-"Check this box if the patient show signs of malnutrition. If associated  to "
-"a disease, please encode the correspondent disease on the patient disease "
-"history. For example, Moderate protein-energy malnutrition, E44.0 in ICD-10 "
-"encoding"
-msgstr ""
-"Check this box if the patient show signs of malnutrition. If associated  to "
-"a disease, please encode the correspondent disease on the patient disease "
-"history. For example, Moderate protein-energy malnutrition, E44.0 in ICD-10 "
-"encoding"
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,refrigerator:0
-msgid "Refrigetator"
-msgstr "Refrigetator"
-
-#. module: oemedical
-#: help:product.product,is_vaccine:0
-msgid "Check if the product is a vaccine"
-msgstr "Check if the product is a vaccine"
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,disease_severity:0
-msgid "Severe"
-msgstr "Severe"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,notes_complaint:0
-msgid "Complaint details"
-msgstr "Complaint details"
-
-#. module: oemedical
-#: help:oemedical.insurance,category:0
-msgid "Insurance company plan / category"
-msgstr "Insurance company plan / category"
-
-#. module: oemedical
-#: view:oemedical.pathology:0
-msgid "Oemedical Pathology"
-msgstr "Oemedical Pathology"
-
-#. module: oemedical
-#: selection:oemedical.hospital.bed,state:0
-#: selection:oemedical.hospital.ward,state:0
-msgid "Not available"
-msgstr "Not available"
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,derived_from:0
-msgid "Physician who derived the case"
-msgstr "Physician who derived the case"
-
-#. module: oemedical
-#: field:oemedical.patient.disease,disease_severity:0
-msgid "Severity"
-msgstr "Severity"
-
-#. module: oemedical
-#: view:oemedical.insurance:0
-#: field:oemedical.insurance,company:0
-#: view:oemedical.insurance.plan:0
-#: field:oemedical.insurance.plan,company:0
-#: field:res.partner,is_insurance_company:0
-msgid "Insurance Company"
-msgstr "Insurance Company"
-
-#. module: oemedical
-#: selection:oemedical.medication.template,duration_period:0
-#: selection:oemedical.medication.template,frequency_unit:0
-msgid "minutes"
-msgstr "minutes"
-
-#. module: oemedical
-#: view:oemedical.appointment:0
-#: field:oemedical.appointment,comments:0
-#: view:oemedical.diagnostic_hypothesis:0
-#: field:oemedical.diagnostic_hypothesis,comments:0
-#: view:oemedical.directions:0
-#: field:oemedical.directions,comments:0
-#: view:oemedical.secondary_condition:0
-#: field:oemedical.secondary_condition,comments:0
-#: view:oemedical.signs_and_symptoms:0
-#: field:oemedical.signs_and_symptoms,comments:0
-msgid "Comments"
-msgstr "Comments"
-
-#. module: oemedical
-#: view:oemedical.appointment:0
-#: view:oemedical.diagnostic_hypothesis:0
-#: view:oemedical.directions:0
-#: view:oemedical.disease_group.members:0
-#: view:oemedical.drug.form:0
-#: view:oemedical.drug.route:0
-#: view:oemedical.ethnicity:0
-#: view:oemedical.family:0
-#: view:oemedical.family_member:0
-#: view:oemedical.hospital.bed:0
-#: view:oemedical.hospital.building:0
-#: view:oemedical.hospital.or:0
-#: view:oemedical.hospital.unit:0
-#: view:oemedical.hospital.ward:0
-#: view:oemedical.insurance:0
-#: view:oemedical.insurance.plan:0
-#: view:oemedical.medicament:0
-#: view:oemedical.medicament.category:0
-#: view:oemedical.medication.dosage:0
-#: view:oemedical.medication.template:0
-#: view:oemedical.occupation:0
-#: view:oemedical.operational_area:0
-#: view:oemedical.operational_sector:0
-#: view:oemedical.pathology:0
-#: view:oemedical.pathology.category:0
-#: view:oemedical.pathology.group:0
-#: view:oemedical.patient:0
-#: view:oemedical.patient.disease:0
-#: view:oemedical.patient.evaluation:0
-#: view:oemedical.patient.medication:0
-#: view:oemedical.physician:0
-#: view:oemedical.prescription.line:0
-#: view:oemedical.prescription.order:0
-#: view:oemedical.procedure:0
-#: view:oemedical.secondary_condition:0
-#: view:oemedical.signs_and_symptoms:0
-#: view:oemedical.specialty:0
-#: view:oemedical.vaccination:0
-msgid "Group By..."
-msgstr "Group By..."
-
-#. module: oemedical
-#: help:oemedical.operational_sector,name:0
-msgid "Region included in an operational area"
-msgstr "Region included in an operational area"
-
-#. module: oemedical
-#: view:oemedical.family_member:0
-#: field:oemedical.family_member,role:0
-msgid "Role"
-msgstr "Role"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_hospital_bed
-msgid " Hospital Bed"
-msgstr " Hospital Bed"
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_pathology_category_view
-msgid "Pathology Category"
-msgstr "Pathology Category"
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,ac:0
-msgid "Air Conditioning"
-msgstr "Air Conditioning"
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_medication_template_view
-#: view:oemedical.patient.medication:0
-#: field:oemedical.patient.medication,template:0
-#: view:oemedical.prescription.line:0
-#: field:oemedical.prescription.line,template:0
-msgid "Medication Template"
-msgstr "Medication Template"
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_hospital_ward_view
-msgid "Hospital Ward"
-msgstr "Hospital Ward"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_physician
-msgid " Physician"
-msgstr " Physician"
-
-#. module: oemedical
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,pregnancy:0
-msgid "Pregnancy and Lactancy"
-msgstr "Pregnancy and Lactancy"
-
-#. module: oemedical
-#: selection:oemedical.hospital.bed,state:0
-msgid "Free"
-msgstr "Free"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,tremor:0
-msgid "Tremor"
-msgstr "Tremor"
-
-#. module: oemedical
-#: view:oemedical.prescription.order:0
-#: field:oemedical.prescription.order,pregnancy_warning:0
-msgid "Pregancy Warning"
-msgstr "Pregancy Warning"
-
-#. module: oemedical
-#: help:oemedical.medicament,therapeutic_action:0
-msgid "Therapeutic action"
-msgstr "Therapeutic action"
-
-#. module: oemedical
-#: field:res.partner,is_doctor:0
-msgid "Health Prof"
-msgstr "Health Prof"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_medication_dosage
-msgid " Medication Dosage"
-msgstr " Medication Dosage"
-
-#. module: oemedical
-#: view:oemedical.hospital.unit:0
-msgid "Oemedical Hospital Unit"
-msgstr "Oemedical Hospital Unit"
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,allergy_type:0
-msgid "Drug Allergy"
-msgstr "Drug Allergy"
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_motor:0
-msgid "Obeys commands"
-msgstr "Obeys commands"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_pathology
-msgid " Pathology"
-msgstr " Pathology"
-
-#. module: oemedical
-#: help:oemedical.medication.template,route:0
-msgid "Drug administration route code."
-msgstr "Drug administration route code."
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,ldl:0
-msgid "Last LDL Cholesterol reading. Can be approximative"
-msgstr "Last LDL Cholesterol reading. Can be approximative"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,info_diagnosis:0
-msgid "Presumptive Diagnosis: Extra Info"
-msgstr "Presumptive Diagnosis: Extra Info"
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,floor:0
-msgid "Floor Number"
-msgstr "Floor Number"
-
-#. module: oemedical
-#: help:oemedical.hospital.bed,name:0
-msgid "Bed Number"
-msgstr "Bed Number"
-
-#. module: oemedical
-#: help:oemedical.patient,current_address:0
-msgid ""
-"Contact information. You may choose from the different contacts and "
-"addresses this patient has."
-msgstr ""
-"Contact information. You may choose from the different contacts and "
-"addresses this patient has."
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,cholesterol_total:0
-msgid "Last Cholesterol"
-msgstr "Last Cholesterol"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_hospital_unit
-msgid " Hospital Unit"
-msgstr " Hospital Unit"
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_motor:0
-msgid "Abnormal flexion to painful stimuli (decorticate response)"
-msgstr "Abnormal flexion to painful stimuli (decorticate response)"
-
-#. module: oemedical
-#: view:oemedical.hospital.bed:0
-#: field:oemedical.hospital.bed,extra_info:0
-#: view:oemedical.hospital.building:0
-#: field:oemedical.hospital.building,extra_info:0
-#: view:oemedical.hospital.or:0
-#: field:oemedical.hospital.or,extra_info:0
-#: view:oemedical.hospital.unit:0
-#: field:oemedical.hospital.unit,extra_info:0
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,extra_info:0
-#: view:oemedical.insurance:0
-#: field:oemedical.insurance,notes:0
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,notes:0
-#: view:oemedical.pathology:0
-#: field:oemedical.pathology,info:0
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,extra_info:0
-#: view:oemedical.patient.medication:0
-#: field:oemedical.patient.medication,notes:0
-msgid "Extra Info"
-msgstr "Extra Info"
-
-#. module: oemedical
-#: selection:oemedical.patient,sex:0
-msgid "Female"
-msgstr "Female"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_secondary_condition
-msgid "oemedical.secondary_condition"
-msgstr "oemedical.secondary_condition"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_appointment
-msgid " Appointment"
-msgstr " Appointment"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,evaluation_summary:0
-msgid "Evaluation Summary"
-msgstr "Evaluation Summary"
-
-#. module: oemedical
-#: help:res.partner,activation_date:0
-msgid "Date of activation of the party"
-msgstr "Date of activation of the party"
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,internet:0
-msgid "Internet Access"
-msgstr "Internet Access"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,tag:0
-msgid "Last TAGs"
-msgstr "Last TAGs"
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,ethnic_group:0
-msgid "Ethnic group"
-msgstr "Ethnic group"
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,mood:0
-msgid "Euphoria"
-msgstr "Euphoria"
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,osat:0
-msgid "Oxygen Saturation(arterial)."
-msgstr "Oxygen Saturation(arterial)."
-
-#. module: oemedical
-#: field:res.partner,activation_date:0
-msgid "Activation date"
-msgstr "Activation date"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,violent:0
-msgid "Violent Behaviour"
-msgstr "Violent Behaviour"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_directions
-msgid " Directions"
-msgstr " Indicaciones"
-
-#. module: oemedical
-#: view:oemedical.appointment:0
-#: field:oemedical.appointment,name:0
-#: field:oemedical.prescription.order,name:0
-msgid "Appointment ID"
-msgstr "Appointment ID"
-
-#. module: oemedical
-#: field:oemedical.patient,blood_type:0
-msgid "Blood Type"
-msgstr "Blood Type"
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_verbal:0
-msgid "Makes no sounds"
-msgstr "Makes no sounds"
-
-#. module: oemedical
-#: selection:oemedical.appointment,urgency:0
-msgid "Medical Emergency"
-msgstr "Medical Emergency"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_hospital_or
-msgid " Hospital Or"
-msgstr " Hospital Or"
-
-#. module: oemedical
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,is_on_treatment:0
-msgid "Currently on Treatment"
-msgstr "Currently on Treatment"
-
-#. module: oemedical
-#: field:res.partner,relationship:0
-msgid "Relationship"
-msgstr "Relationship"
-
-#. module: oemedical
-#: view:oemedical.appointment:0
-#: field:oemedical.appointment,institution:0
-msgid "Health Center"
-msgstr "Health Center"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_insurance_plan
-msgid "oemedical.insurance.plan"
-msgstr "oemedical.insurance.plan"
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_motor:0
-msgid "Extension to painful stimuli - decerebrate response -"
-msgstr "Extension to painful stimuli - decerebrate response -"
-
-#. module: oemedical
-#: help:oemedical.patient.medication,discontinued_reason:0
-msgid "Short description for discontinuing the treatment"
-msgstr "Short description for discontinuing the treatment"
-
-#. module: oemedical
-#: help:oemedical.patient.disease,short_comment:0
-msgid ""
-"Brief, one-line remark of the disease. Longer description will go on the "
-"Extra info field"
-msgstr ""
-"Brief, one-line remark of the disease. Longer description will go on the "
-"Extra info field"
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,orientation:0
-msgid "Check this box if the patient is disoriented in time and/or space"
-msgstr "Check this box if the patient is disoriented in time and/or space"
-
-#. module: oemedical
-#: selection:oemedical.hospital.ward,state:0
-msgid "Full"
-msgstr "Full"
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,temperature:0
-msgid "Temperature in celcius"
-msgstr "Temperature in celcius"
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_medicament_category_view
-msgid "Medicament Category"
-msgstr "Medicament Category"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,osat:0
-msgid "Oxygen Saturation"
-msgstr "Oxygen Saturation"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_insurance
-msgid " Insurance"
-msgstr " Insurance"
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,secondary_conditions:0
-msgid "Other, Secondary conditions found on the patient"
-msgstr "Other, Secondary conditions found on the patient"
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,evaluation_type:0
-msgid "Telemedicine"
-msgstr "Telemedicine"
-
-#. module: oemedical
-#: help:oemedical.appointment,speciality:0
-msgid "Medical Specialty / Sector"
-msgstr "Medical Specialty / Sector"
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,abstraction:0
-msgid ""
-"Check this box if the patient presents abnormalities in abstract reasoning"
-msgstr ""
-"Check this box if the patient presents abnormalities in abstract reasoning"
-
-#. module: oemedical
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,weeks_of_pregnancy:0
-msgid "Contracted in pregnancy week #"
-msgstr "Contracted in pregnancy week #"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,dehydration:0
-msgid "Dehydration"
-msgstr "Dehydration"
-
-#. module: oemedical
-#: view:oemedical.patient:0
-msgid "Oemedical Patient"
-msgstr "Oemedical Patient"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_prescription_line
-msgid " Prescription Line"
-msgstr " Linea de Receta"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_pathology_group
-msgid " Pathology Group"
-msgstr " Pathology Group"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_dose_unit
-msgid " Dose Unit"
-msgstr " Unidad de Dosis"
-
-#. module: oemedical
-#: selection:oemedical.hospital.bed,state:0
-msgid "Occupied"
-msgstr "Occupied"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,temperature:0
-msgid "Temperature"
-msgstr "Temperature"
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_verbal:0
-msgid "Utters inappropriate words"
-msgstr "Utters inappropriate words"
-
-#. module: oemedical
-#: help:oemedical.patient.disease,pcs_code:0
-msgid "Procedure code, for example, ICD-10-PCS Code 7-character string"
-msgstr "Procedure code, for example, ICD-10-PCS Code 7-character string"
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,disease_severity:0
-msgid "Moderate"
-msgstr "Moderate"
-
-#. module: oemedical
-#: help:oemedical.medication.template,qty:0
-msgid "Quantity of units (eg, 2 capsules) of the medicament"
-msgstr "Quantity of units (eg, 2 capsules) of the medicament"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,head_circumference:0
-msgid "Head Circumference"
-msgstr "Head Circumference"
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_appointment_view
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,evaluation_date:0
-msgid "Appointment"
-msgstr "Appointment"
-
-#. module: oemedical
-#: selection:oemedical.hospital.bed,bed_type:0
-msgid "Electric"
-msgstr "Electric"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_operational_area
-msgid " Operational Area"
-msgstr " Operational Area"
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,evaluation_type:0
-msgid "Pre-arranged appointment"
-msgstr "Pre-arranged appointment"
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,telephone:0
-msgid "Telephone access"
-msgstr "Telephone access"
-
-#. module: oemedical
-#: view:oemedical.operational_area:0
-msgid "Oemedical Operational_Area"
-msgstr "Oemedical Operational_Area"
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,bpm:0
-msgid "Heart rate expressed in beats per minute"
-msgstr "Heart rate expressed in beats per minute"
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_disease_group_members_view
-msgid "Disease Group Members"
-msgstr "Disease Group Members"
-
-#. module: oemedical
-#: view:oemedical.insurance:0
-#: field:oemedical.insurance,plan_id:0
-#: view:oemedical.insurance.plan:0
-#: field:oemedical.insurance.plan,plan:0
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,directions:0
-msgid "Plan"
-msgstr "Plan"
-
-#. module: oemedical
-#: view:oemedical.insurance.plan:0
-msgid "Oemedical Insurance Plan"
-msgstr "Oemedical Insurance Plan"
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_eyes:0
-msgid "Opens eyes in response to voice"
-msgstr "Opens eyes in response to voice"
-
-#. module: oemedical
-#: view:oemedical.patient.medication:0
-#: field:oemedical.patient.medication,is_active:0
-msgid "Active"
-msgstr "Active"
-
-#. module: oemedical
-#: help:oemedical.prescription.line,prnt:0
-msgid "Check this box to print this line of the prescription."
-msgstr "Check this box to print this line of the prescription."
-
-#. module: oemedical
-#: help:oemedical.patient,identification_code:0
-msgid ""
-"Patient Identifier provided by the Health Center.Is not the Social Security "
-"Number"
-msgstr ""
-"Patient Identifier provided by the Health Center.Is not the Social Security "
-"Number"
-
-#. module: oemedical
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,route:0
-msgid "Administration Route"
-msgstr "Administration Route"
-
-#. module: oemedical
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,pregnancy_warning:0
-msgid "Pregnancy Warning"
-msgstr "Pregnancy Warning"
-
-#. module: oemedical
-#: view:oemedical.family:0
-#: field:oemedical.family,info:0
-#: view:oemedical.operational_area:0
-#: field:oemedical.operational_area,info:0
-#: view:oemedical.operational_sector:0
-#: field:oemedical.operational_sector,info:0
-msgid "Extra Information"
-msgstr "Extra Information"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_operational_sector
-msgid "oemedical.operational_sector"
-msgstr "oemedical.operational_sector"
-
-#. module: oemedical
-#: help:oemedical.medication.template,form:0
-msgid "Drug form, such as tablet or gel"
-msgstr "Drug form, such as tablet or gel"
-
-#. module: oemedical
-#: help:oemedical.medicament,indications:0
-msgid "Indications"
-msgstr "Indications"
-
-#. module: oemedical
-#: view:oemedical.prescription.line:0
-#: field:oemedical.prescription.line,prescription_order_id:0
-#: view:oemedical.prescription.order:0
-#: field:oemedical.prescription.order,prescription_id:0
-msgid "Prescription ID"
-msgstr "Prescription ID"
-
-#. module: oemedical
-#: view:oemedical.insurance:0
-#: field:oemedical.insurance,number:0
-msgid "Number"
-msgstr "Number"
-
-#. module: oemedical
-#: view:oemedical.drug.route:0
-msgid "Oemedical Drug Route"
-msgstr "Oemedical Drug Route"
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,derived_to:0
-msgid "Physician to whom escalate / derive the case"
-msgstr "Physician to whom escalate / derive the case"
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,actions:0
-msgid "Procedures / Actions to take"
-msgstr "Procedures / Actions to take"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_pathology_group
-msgid "oemedical.pathology.group"
-msgstr "oemedical.pathology.group"
-
-#. module: oemedical
-#: field:oemedical.medicament,pregnancy_category:0
-msgid "Pregnancy Category"
-msgstr "Pregnancy Category"
-
-#. module: oemedical
-#: field:oemedical.patient.disease,allergy_type:0
-msgid "Allergy type"
-msgstr "Allergy type"
-
-#. module: oemedical
-#: view:oemedical.prescription.order:0
-#: field:oemedical.prescription.order,prescription_warning_ack:0
-msgid "Prescription verified"
-msgstr "Prescription verified"
-
-#. module: oemedical
-#: field:oemedical.medication.template,frequency_unit:0
-msgid "unit"
-msgstr "unit"
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,knowledge_current_events:0
-msgid ""
-"Check this box if the patient can not respond to public notorious events"
-msgstr ""
-"Check this box if the patient can not respond to public notorious events"
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,glycemia:0
-msgid "Last blood glucose level. Can be approximative."
-msgstr "Last blood glucose level. Can be approximative."
-
-#. module: oemedical
-#: help:oemedical.appointment,institution:0
-#: help:oemedical.hospital.building,institution:0
-#: help:oemedical.hospital.or,institution:0
-#: help:oemedical.hospital.unit,institution:0
-#: help:oemedical.hospital.ward,institution:0
-msgid "Medical Center"
-msgstr "Medical Center"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,abstraction:0
-msgid "Abstraction"
-msgstr "Abstraction"
-
-#. module: oemedical
-#: help:res.partner,is_person:0
-msgid "Check if the party is a person."
-msgstr "Check if the party is a person."
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,diagnosis:0
-msgid "Presumptive Diagnosis"
-msgstr "Presumptive Diagnosis"
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,lastname:0
-msgid "Lastname"
-msgstr "Lastname"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,hdl:0
-msgid "Last HDL"
-msgstr "Last HDL"
-
-#. module: oemedical
-#: help:oemedical.medication.template,admin_times:0
-msgid ""
-"Suggested administration hours. For example, at 08:00, 13:00 and 18:00 can "
-"be encoded like 08 13 18"
-msgstr ""
-"Suggested administration hours. For example, at 08:00, 13:00 and 18:00 can "
-"be encoded like 08 13 18"
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,current_address:0
-msgid "Address"
-msgstr "Address"
-
-#. module: oemedical
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,short_comment:0
-msgid "Remarks"
-msgstr "Remarks"
-
-#. module: oemedical
-#: selection:oemedical.insurance,insurance_type:0
-#: selection:res.partner,insurance_company_type:0
-msgid "Labour Union / Syndical"
-msgstr "Labour Union / Syndical"
-
-#. module: oemedical
-#: help:oemedical.medication.template,dose_unit:0
-msgid "Unit of measure for the medication to be taken"
-msgstr "Unit of measure for the medication to be taken"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,abdominal_circ:0
-msgid "Waist"
-msgstr "Waist"
-
-#. module: oemedical
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,overdosage:0
-#: help:oemedical.medicament,overdosage:0
-msgid "Overdosage"
-msgstr "Overdosage"
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_drug_form_view
-msgid "Drug Form"
-msgstr "Drug Form"
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_hospital_unit_view
-msgid "Hospital Unit"
-msgstr "Hospital Unit"
-
-#. module: oemedical
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,indications:0
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,indication:0
-msgid "Indication"
-msgstr "Indication"
-
-#. module: oemedical
-#: view:oemedical.diagnostic_hypothesis:0
-msgid "Oemedical Diagnostic_Hypothesis"
-msgstr "Oemedical Diagnostic_Hypothesis"
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,mood:0
-msgid "Sad"
-msgstr "Sad"
-
-#. module: oemedical
-#: view:oemedical.insurance:0
-#: field:oemedical.insurance,member_since:0
-msgid "Member since"
-msgstr "Member since"
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,identification_code:0
-#: view:oemedical.physician:0
-#: field:oemedical.physician,code:0
-msgid "ID"
-msgstr "ID"
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,deceased:0
-msgid "Deceased"
-msgstr "Deceased"
-
-#. module: oemedical
-#: field:oemedical.patient,diseases:0
-msgid "Diseases"
-msgstr "Diseases"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,derived_to:0
-msgid "Derived to"
-msgstr "Derived to"
-
-#. module: oemedical
-#: sql_constraint:oemedical.drug.form:0
-#: sql_constraint:oemedical.drug.route:0
-#: sql_constraint:oemedical.ethnicity:0
-#: sql_constraint:oemedical.hospital.or:0
-#: sql_constraint:oemedical.medication.dosage:0
-#: sql_constraint:oemedical.occupation:0
-#: sql_constraint:oemedical.operational_area:0
-#: sql_constraint:oemedical.operational_sector:0
-#: sql_constraint:oemedical.pathology:0
-#: sql_constraint:oemedical.specialty:0
-msgid "Name must be unique!"
-msgstr "Name must be unique!"
-
-#. module: oemedical
-#: selection:oemedical.patient,marital_status:0
-msgid "Widowed"
-msgstr "Widowed"
-
-#. module: oemedical
-#: view:oemedical.hospital.building:0
-msgid "Oemedical Hospital Building"
-msgstr "Oemedical Hospital Building"
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_eyes:0
-msgid "Does not Open Eyes"
-msgstr "Does not Open Eyes"
-
-#. module: oemedical
-#: help:oemedical.patient,family:0
-msgid "Family Code"
-msgstr "Family Code"
-
-#. module: oemedical
-#: view:oemedical.secondary_condition:0
-msgid "Oemedical Secondary_Condition"
-msgstr "Oemedical Secondary_Condition"
-
-#. module: oemedical
-#: help:oemedical.medicament,pregnancy_warning:0
-msgid "The drug represents risk to pregnancy or lactancy"
-msgstr "The drug represents risk to pregnancy or lactancy"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_hospital_bed
-msgid "oemedical.hospital.bed"
-msgstr "oemedical.hospital.bed"
-
-#. module: oemedical
-#: view:oemedical.appointment:0
-msgid "Oemedical Appointment"
-msgstr "Oemedical Appointment"
-
-#. module: oemedical
-#: help:oemedical.physician,institution:0
-msgid "Instituion where she/he works"
-msgstr "Instituion where she/he works"
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_hospital_bed_view
-msgid "Hospital Bed"
-msgstr "Hospital Bed"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_disease_group_members
-msgid "oemedical.disease_group.members"
-msgstr "oemedical.disease_group.members"
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,evaluation_date:0
-msgid ""
-"Enter or select the date / ID of the appointment related to this evaluation"
-msgstr ""
-"Enter or select the date / ID of the appointment related to this evaluation"
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,information_source:0
-msgid "Source ofInformation, eg : Self, relative, friend ..."
-msgstr "Source ofInformation, eg : Self, relative, friend ..."
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_vaccination_view
-msgid "Vaccination"
-msgstr "Vaccination"
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_patient_medication_view
-msgid "Patient Medication"
-msgstr "Patient Medication"
-
-#. module: oemedical
-#: view:oemedical.pathology.group:0
-#: field:oemedical.pathology.group,info:0
-msgid "Detailed information"
-msgstr "Detailed information"
-
-#. module: oemedical
-#: view:oemedical.signs_and_symptoms:0
-msgid "Oemedical Signs_And_Symptoms"
-msgstr "Oemedical Signs_And_Symptoms"
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,mood:0
-msgid "Happy"
-msgstr "Happy"
-
-#. module: oemedical
-#: view:oemedical.procedure:0
-#: field:oemedical.procedure,description:0
-msgid "Long Text"
-msgstr "Long Text"
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,allergy_type:0
-msgid "Food Allergy"
-msgstr "Food Allergy"
-
-#. module: oemedical
-#: help:oemedical.medication.template,duration_period:0
-msgid ""
-"Period that the patient must take the medication in minutes, hours, days, "
-"months, years or indefinately"
-msgstr ""
-"Period that the patient must take the medication in minutes, hours, days, "
-"months, years or indefinately"
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,reliable_info:0
-msgid ""
-"Uncheck this optionif the information provided by the source seems not "
-"reliable"
-msgstr ""
-"Uncheck this optionif the information provided by the source seems not "
-"reliable"
-
-#. module: oemedical
-#: help:product.product,is_bed:0
-msgid "Check if the product is a bed on the gnuhealth.center"
-msgstr "Check if the product is a bed on the gnuhealth.center"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,chief_complaint:0
-#: help:oemedical.patient.evaluation,chief_complaint:0
-msgid "Chief Complaint"
-msgstr "Chief Complaint"
-
-#. module: oemedical
-#: view:oemedical.hospital.building:0
-#: field:oemedical.hospital.building,institution:0
-#: view:oemedical.hospital.or:0
-#: field:oemedical.hospital.or,institution:0
-#: view:oemedical.hospital.unit:0
-#: field:oemedical.hospital.unit,institution:0
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,institution:0
-#: view:oemedical.physician:0
-#: field:oemedical.physician,institution:0
-#: view:oemedical.vaccination:0
-#: field:oemedical.vaccination,institution:0
-#: field:res.partner,is_institution:0
-msgid "Institution"
-msgstr "Institution"
-
-#. module: oemedical
-#: view:oemedical.hospital.or:0
-#: field:oemedical.hospital.or,building:0
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,building:0
-msgid "Building"
-msgstr "Building"
-
-#. module: oemedical
-#: selection:oemedical.medication.template,frequency_unit:0
-msgid "when required"
-msgstr "when required"
-
-#. module: oemedical
-#: view:oemedical.hospital.bed:0
-#: field:oemedical.hospital.bed,telephone_number:0
-msgid "Telephone Number"
-msgstr "Telephone Number"
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_eyes:0
-msgid "Opens eyes spontaneously"
-msgstr "Opens eyes spontaneously"
-
-#. module: oemedical
-#: selection:oemedical.patient,marital_status:0
-msgid "Married"
-msgstr "Married"
-
-#. module: oemedical
-#: view:oemedical.patient.disease:0
-msgid "Oemedical Patient Disease"
-msgstr "Oemedical Patient Disease"
-
-#. module: oemedical
-#: help:oemedical.medicament,composition:0
-msgid "Components"
-msgstr "Components"
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,status:0
-msgid "acute"
-msgstr "acute"
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_secondary_condition_view
-msgid "Secondary Condition"
-msgstr "Secondary Condition"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,whr:0
-msgid "WHR"
-msgstr "WHR"
-
-#. module: oemedical
-#: view:oemedical.family_member:0
-msgid "Oemedical Family_Member"
-msgstr "Oemedical Family_Member"
-
-#. module: oemedical
-#: help:oemedical.hospital.bed,ward:0
-msgid "Ward or room"
-msgstr "Ward or room"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_patient_disease
-msgid " Patient Disease"
-msgstr " Patient Disease"
-
-#. module: oemedical
-#: selection:oemedical.appointment,appointment_type:0
-#: selection:oemedical.patient.evaluation,evaluation_type:0
-msgid "Inpatient"
-msgstr "Inpatient"
-
-#. module: oemedical
-#: help:oemedical.patient.disease,date_start_treatment:0
-msgid "Start of treatment date"
-msgstr "Start of treatment date"
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_signs_and_symptoms_view
-msgid "Signs And Symptoms"
-msgstr "Signs And Symptoms"
-
-#. module: oemedical
-#: help:oemedical.medication.template,dose:0
-msgid "Amount of medication (eg, 250 mg) per dose"
-msgstr "Amount of medication (eg, 250 mg) per dose"
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,mood:0
-msgid "Fear"
-msgstr "Fear"
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,dod:0
-msgid "Date of Death"
-msgstr "Date of Death"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_secondary_condition
-msgid " Secondary Condition"
-msgstr " Condiciones Secundarias"
-
-#. module: oemedical
-#: selection:oemedical.hospital.bed,bed_type:0
-msgid "Gatch Bed"
-msgstr "Gatch Bed"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_patient
-msgid " Patient"
-msgstr " Patient"
-
-#. module: oemedical
-#: help:oemedical.insurance,plan_id:0
-#: help:oemedical.insurance.plan,name:0
-msgid "Insurance company plan"
-msgstr "Insurance company plan"
-
-#. module: oemedical
-#: help:oemedical.pathology,code:0
-msgid "Specific Code for the Disease (eg, ICD-10)"
-msgstr "Specific Code for the Disease (eg, ICD-10)"
-
-#. module: oemedical
-#: view:oemedical.prescription.order:0
-#: field:oemedical.prescription.order,pharmacy:0
-#: field:res.partner,is_pharmacy:0
-msgid "Pharmacy"
-msgstr "Pharmacy"
-
-#. module: oemedical
-#: help:oemedical.patient.medication,is_active:0
-msgid "Check if the patient is currently taking the medication"
-msgstr "Check if the patient is currently taking the medication"
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_hospital_building_view
-msgid "Hospital Building"
-msgstr "Hospital Building"
-
-#. module: oemedical
-#: view:oemedical.pathology:0
-#: field:oemedical.pathology,category:0
-msgid "Main Category"
-msgstr "Main Category"
-
-#. module: oemedical
-#: help:oemedical.appointment,doctor:0
-msgid "Physician's Name"
-msgstr "Physician's Name"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_drug_route
-msgid " Drug Route"
-msgstr " Vía de administración"
-
-#. module: oemedical
-#: selection:oemedical.medication.template,duration_period:0
-msgid "indefinite"
-msgstr "indefinite"
-
-#. module: oemedical
-#: view:oemedical.prescription.line:0
-#: field:oemedical.prescription.line,allow_substitution:0
-msgid "Allow substitution"
-msgstr "Allow substitution"
-
-#. module: oemedical
-#: view:oemedical.hospital.bed:0
-msgid "Oemedical Hospital Bed"
-msgstr "Oemedical Hospital Bed"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,glycemia:0
-msgid "Glycemia"
-msgstr "Glycemia"
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,number_of_beds:0
-msgid "Number of beds"
-msgstr "Number of beds"
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,object_recognition:0
-msgid ""
-"Check this box if the patient suffers from any sort of gnosia disorders, "
-"such as agnosia, prosopagnosia ..."
-msgstr ""
-"Check this box if the patient suffers from any sort of gnosia disorders, "
-"such as agnosia, prosopagnosia ..."
-
-#. module: oemedical
-#: selection:oemedical.appointment,appointment_type:0
-#: selection:oemedical.patient.evaluation,evaluation_type:0
-msgid "Ambulatory"
-msgstr "Ambulatory"
-
-#. module: oemedical
-#: view:oemedical.insurance:0
-#: field:oemedical.insurance,member_exp:0
-msgid "Expiration date"
-msgstr "Expiration date"
-
-#. module: oemedical
-#: field:oemedical.hospital.ward,gender:0
-msgid "Gender"
-msgstr "Gender"
-
-#. module: oemedical
-#: help:oemedical.family,name:0
-msgid "Family code within an operational sector"
-msgstr "Family code within an operational sector"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,judgment:0
-msgid "Jugdment"
-msgstr "Jugdment"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,bmi:0
-msgid "Body Mass Index"
-msgstr "Body Mass Index"
-
-#. module: oemedical
-#: view:oemedical.signs_and_symptoms:0
-#: field:oemedical.signs_and_symptoms,clinical_id:0
-msgid "Sign or Symptom"
-msgstr "Sign or Symptom"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_vaccination
-msgid "oemedical.vaccination"
-msgstr "oemedical.vaccination"
-
-#. module: oemedical
-#: field:res.partner,is_school:0
-msgid "School"
-msgstr "School"
-
-#. module: oemedical
-#: help:oemedical.medication.template,medicament:0
-msgid "Prescribed Medicament"
-msgstr "Prescribed Medicament"
-
-#. module: oemedical
-#: view:oemedical.physician:0
-#: field:oemedical.physician,health_professional:0
-msgid "Health Professional"
-msgstr "Health Professional"
-
-#. module: oemedical
-#: selection:oemedical.patient,marital_status:0
-msgid "Divorced"
-msgstr "Divorced"
-
-#. module: oemedical
-#: selection:oemedical.medication.template,frequency_unit:0
-msgid "seconds"
-msgstr "seconds"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,calculation_ability:0
-msgid "Calculation Ability"
-msgstr "Calculation Ability"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,next_evaluation:0
-msgid "Next Appointment"
-msgstr "Next Appointment"
-
-#. module: oemedical
-#: help:oemedical.patient.medication,adverse_reaction:0
-msgid "Side effects or adverse reactions that the patient experienced"
-msgstr "Side effects or adverse reactions that the patient experienced"
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,guest_sofa:0
-msgid "Guest sofa-bed"
-msgstr "Guest sofa-bed"
-
-#. module: oemedical
-#: help:oemedical.operational_area,name:0
-msgid "Operational Area of the city or region"
-msgstr "Operational Area of the city or region"
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_pathology_view
-#: view:oemedical.diagnostic_hypothesis:0
-#: field:oemedical.diagnostic_hypothesis,pathology_id:0
-#: view:oemedical.secondary_condition:0
-#: field:oemedical.secondary_condition,pathology_id:0
-msgid "Pathology"
-msgstr "Pathology"
-
-#. module: oemedical
-#: view:oemedical.prescription.line:0
-#: field:oemedical.prescription.line,short_comment:0
-msgid "Comment"
-msgstr "Comment"
-
-#. module: oemedical
-#: selection:oemedical.hospital.bed,bed_type:0
-msgid "Stretcher"
-msgstr "Stretcher"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,vocabulary:0
-msgid "Vocabulary"
-msgstr "Vocabulary"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,weight:0
-msgid "Weight"
-msgstr "Weight"
-
-#. module: oemedical
-#: selection:oemedical.medication.template,duration_period:0
-msgid "months"
-msgstr "months"
-
-#. module: oemedical
-#: view:oemedical.occupation:0
-msgid "Oemedical Occupation"
-msgstr "Oemedical Occupation"
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,hip:0
-msgid "Hip circumference in centimeters, eg 100"
-msgstr "Hip circumference in centimeters, eg 100"
-
-#. module: oemedical
-#: field:oemedical.appointment,urgency:0
-msgid "Urgency Level"
-msgstr "Urgency Level"
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_insurance_plan_view
-msgid "Insurance Plan"
-msgstr "Insurance Plan"
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_operational_area_view
-#: view:oemedical.operational_sector:0
-#: field:oemedical.operational_sector,operational_area_id:0
-msgid "Operational Area"
-msgstr "Operational Area"
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,status:0
-msgid "chronic"
-msgstr "chronic"
-
-#. module: oemedical
-#: view:oemedical.pathology.category:0
-#: field:oemedical.pathology.category,name:0
-msgid "Category Name"
-msgstr "Category Name"
-
-#. module: oemedical
-#: view:oemedical.prescription.order:0
-msgid "Oemedical Prescription Order"
-msgstr "Oemedical Prescription Order"
-
-#. module: oemedical
-#: view:oemedical.patient.medication:0
-#: field:oemedical.patient.medication,discontinued_reason:0
-msgid "Reason for discontinuation"
-msgstr "Reason for discontinuation"
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,tag:0
-msgid "Triacylglycerol(triglicerides) level. Can be approximative"
-msgstr "Triacylglycerol(triglicerides) level. Can be approximative"
-
-#. module: oemedical
-#: help:oemedical.patient.disease,date_stop_treatment:0
-msgid "End of treatment date"
-msgstr "End of treatment date"
-
-#. module: oemedical
-#: selection:oemedical.appointment,urgency:0
-#: selection:oemedical.patient.evaluation,mood:0
-msgid "Normal"
-msgstr "Normal"
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_medication_dosage_view
-msgid "Medication Dosage"
-msgstr "Medication Dosage"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_hospital_building
-msgid " Hospital Building"
-msgstr " Hospital Building"
-
-#. module: oemedical
-#: help:oemedical.hospital.ward,name:0
-msgid "Ward / Room code"
-msgstr "Ward / Room code"
-
-#. module: oemedical
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,admin_times:0
-msgid "Admin hours"
-msgstr "Admin hours"
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_directions_view
-msgid "Directions"
-msgstr "Directions"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_procedure
-msgid " Procedure"
-msgstr " Procedure"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_diagnostic_hypothesis
-msgid " Diagnostic Hypothesis"
-msgstr " Diagnostic Hypothesis"
-
-#. module: oemedical
-#: view:oemedical.procedure:0
-msgid "Oemedical Procedure"
-msgstr "Oemedical Procedure"
-
-#. module: oemedical
-#: field:oemedical.pathology,groups:0
-msgid "Groups"
-msgstr "Groups"
-
-#. module: oemedical
-#: selection:oemedical.hospital.ward,state:0
-msgid "Beds available"
-msgstr "Beds available"
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_patient_medication
-msgid " Patient Medication"
-msgstr " Patient Medication"
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_pathology_group_view
-msgid "Pathology Group"
-msgstr "Pathology Group"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_patient_medication
-msgid "oemedical.patient.medication"
-msgstr "oemedical.patient.medication"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_patient_evaluation
-msgid "oemedical.patient.evaluation"
-msgstr "oemedical.patient.evaluation"
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,critical_info:0
-msgid "Important disease, allergy or procedures information"
-msgstr "Important disease, allergy or procedures information"
-
-#. module: oemedical
-#: help:oemedical.patient.disease,age:0
-msgid "Patient age at the moment of the diagnosis. Can be estimative"
-msgstr "Patient age at the moment of the diagnosis. Can be estimative"
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,private_bathroom:0
-msgid "Private Bathroom"
-msgstr "Private Bathroom"
-
-#. module: oemedical
-#: help:res.partner,alias:0
-msgid "Common name that the Party is reffered"
-msgstr "Common name that the Party is reffered"
-
-#. module: oemedical
-#: view:oemedical.prescription.order:0
-#: field:oemedical.prescription.order,prescription_date:0
-msgid "Prescription Date"
-msgstr "Prescription Date"
-
-#. module: oemedical
-#: field:oemedical.patient,partner_id:0
-msgid "Related Partner"
-msgstr "Related Partner"
-
-#. module: oemedical
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,is_allergy:0
-msgid "Allergic Disease"
-msgstr "Allergic Disease"
-
-#. module: oemedical
-#: help:oemedical.patient,partner_id:0
-msgid "Partner-related data of the patient"
-msgstr "Partner-related data of the patient"
-
-#. module: oemedical
-#: view:oemedical.vaccination:0
-#: field:oemedical.vaccination,vaccine_lot:0
-msgid "Lot Number"
-msgstr "Lot Number"
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,general_info:0
-msgid "General Information"
-msgstr "General Information"
-
-#. module: oemedical
-#: selection:oemedical.signs_and_symptoms,sign_or_symptom:0
-msgid "Symptom"
-msgstr "Symptom"
-
-#. module: oemedical
-#: view:oemedical.pathology:0
-#: field:oemedical.pathology,chromosome:0
-msgid "Affected Chromosome"
-msgstr "Affected Chromosome"
-
-#. module: oemedical
-#: help:oemedical.medicament,pregnancy:0
-msgid "Warnings for Pregnant Women"
-msgstr "Warnings for Pregnant Women"
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_insurance_view
-#: view:oemedical.patient:0
-#: field:oemedical.patient,current_insurance:0
-msgid "Insurance"
-msgstr "Insurance"
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,memory:0
-msgid ""
-"Check this box if the patient has problems in short or long term memory"
-msgstr ""
-"Check this box if the patient has problems in short or long term memory"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_physician
-msgid "oemedical.physician"
-msgstr "oemedical.physician"
-
-#. module: oemedical
-#: constraint:oemedical.medicament.category:0
-#: constraint:oemedical.pathology.category:0
-msgid ""
-"Error ! You cannot create recursive \n"
-"Category."
-msgstr ""
-"Error ! You cannot create recursive \n"
-"Category."
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_appointment
-msgid "oemedical.appointment"
-msgstr "oemedical.appointment"
-
-#. module: oemedical
-#: view:oemedical.vaccination:0
-#: field:oemedical.vaccination,observations:0
-msgid "Observations"
-msgstr "Observations"
-
-#. module: oemedical
-#: help:oemedical.pathology,chromosome:0
-msgid "chromosome number"
-msgstr "chromosome number"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,memory:0
-msgid "Memory"
-msgstr "Memory"
-
-#. module: oemedical
-#: view:oemedical.pathology.group:0
-#: field:oemedical.pathology.group,desc:0
-msgid "Short Description"
-msgstr "Short Description"
-
-#. module: oemedical
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,presentation:0
-msgid "Presentation"
-msgstr "Presentation"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_family_member
-msgid "oemedical.family_member"
-msgstr "oemedical.family_member"
-
-#. module: oemedical
-#: selection:oemedical.patient,marital_status:0
-msgid "Single"
-msgstr "Single"
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_verbal:0
-msgid "Oriented, converses normally"
-msgstr "Oriented, converses normally"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_prescription_order
-msgid "oemedical.prescription.order"
-msgstr "oemedical.prescription.order"
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_medicament_view
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,medicament:0
-#: field:product.product,is_medicament:0
-msgid "Medicament"
-msgstr "Medicament"
-
-#. module: oemedical
-#: field:oemedical.patient.evaluation,actions:0
-msgid "Procedures"
-msgstr "Procedures"
-
-#. module: oemedical
-#: selection:oemedical.hospital.ward,gender:0
-msgid "Women Ward"
-msgstr "Women Ward"
-
-#. module: oemedical
-#: help:oemedical.patient.disease,doctor:0
-msgid "Physician who treated or diagnosed the patient"
-msgstr "Physician who treated or diagnosed the patient"
-
-#. module: oemedical
-#: selection:oemedical.patient,blood_type:0
-msgid "AB"
-msgstr "AB"
-
-#. module: oemedical
-#: view:oemedical.pathology.group:0
-msgid "Oemedical Pathology Group"
-msgstr "Oemedical Pathology Group"
-
-#. module: oemedical
-#: field:oemedical.patient,photo:0
-msgid "Picture"
-msgstr "Picture"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,knowledge_current_events:0
-msgid "Knowledge of Current Events"
-msgstr "Knowledge of Current Events"
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_motor:0
-msgid "Localizes painful stimuli"
-msgstr "Localizes painful stimuli"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_drug_form
-msgid "oemedical.drug.form"
-msgstr "oemedical.drug.form"
-
-#. module: oemedical
-#: help:oemedical.physician,specialty:0
-msgid "Specialty Code"
-msgstr "Specialty Code"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,malnutrition:0
-msgid "Malnutrition"
-msgstr "Malnutrition"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,systolic:0
-msgid "Systolic Pressure"
-msgstr "Systolic Pressure"
-
-#. module: oemedical
-#: help:oemedical.pathology.group,code:0
-msgid ""
-"for example MDG6 code will contain the Millennium Development Goals # 6 "
-"diseases : Tuberculosis, Malaria and HIV/AIDS"
-msgstr ""
-"for example MDG6 code will contain the Millennium Development Goals # 6 "
-"diseases : Tuberculosis, Malaria and HIV/AIDS"
-
-#. module: oemedical
-#: help:oemedical.hospital.unit,name:0
-msgid "Name of the unit, eg Neonatal, Intensive Care, ..."
-msgstr "Name of the unit, eg Neonatal, Intensive Care, ..."
-
-#. module: oemedical
-#: field:res.partner,is_person:0
-msgid "Person"
-msgstr "Person"
-
-#. module: oemedical
-#: help:oemedical.medication.template,frequency:0
-msgid ""
-"Time in between doses the patient must wait (ie, for 1 pill each 8 hours, "
-"put here 8 and select \"hours\" in the unit field"
-msgstr ""
-"Time in between doses the patient must wait (ie, for 1 pill each 8 hours, "
-"put here 8 and select \"hours\" in the unit field"
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,judgment:0
-msgid ""
-"Check this box if the patient can not interpret basic scenario solutions"
-msgstr ""
-"Check this box if the patient can not interpret basic scenario solutions"
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,private:0
-#: selection:oemedical.insurance,insurance_type:0
-#: selection:res.partner,insurance_company_type:0
-msgid "Private"
-msgstr "Private"
-
-#. module: oemedical
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,healed_date:0
-msgid "Healed"
-msgstr "Healed"
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-msgid "Oemedical Hospital Ward"
-msgstr "Oemedical Hospital Ward"
-
-#. module: oemedical
-#: view:oemedical.prescription.line:0
-msgid "Oemedical Prescription Line"
-msgstr "Oemedical Prescription Line"
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_occupation
-msgid "oemedical.occupation"
-msgstr "oemedical.occupation"

=== renamed file 'oemedical/i18n/es_SV.po' => 'oemedical/i18n/es_SV.po.THIS'
=== renamed file 'oemedical/i18n/es_UY.po' => 'oemedical/i18n/es_UY.po.THIS'
=== removed file 'oemedical/i18n/es_VE.po.THIS'
--- oemedical/i18n/es_VE.po.THIS	2013-10-23 03:02:27 +0000
+++ oemedical/i18n/es_VE.po.THIS	1970-01-01 00:00:00 +0000
@@ -1,3528 +0,0 @@
-# Spanish (Venezuela) translation for oemedical
-# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
-# This file is distributed under the same license as the oemedical package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: oemedical\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2012-12-03 17:04+0000\n"
-"PO-Revision-Date: 2013-06-08 23:15+0000\n"
-"Last-Translator: Federico Manuel Echeverri Choux -  (  Vauxoo  ) "
-"<echeverrifm@xxxxxxxxx>\n"
-"Language-Team: Spanish (Venezuela) <es_VE@xxxxxx>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-08-07 05:01+0000\n"
-"X-Generator: Launchpad (build 16721)\n"
-
-#. module: oemedical
-#: field:oemedical.patient.evaluation,mood:0
-msgid "Mood"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.prescription.line,short_comment:0
-msgid "Short comment on the specific drug"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_diagnostic_hypothesis_view
-msgid "Diagnostic Hypothesis"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_product_product
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,product:0
-msgid "Product"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medicament.category:0
-#: field:oemedical.medicament.category,parent_id:0
-msgid "Parent"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medication.template,end_treatment:0
-#: help:oemedical.medication.template,start_treatment:0
-msgid "Date of start of Treatment"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.hospital.bed,bed_type:0
-msgid "Low Air Loss"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.patient.evaluation,loc_verbal:0
-msgid "Glasgow - Verbal"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medication.dosage:0
-msgid "Oemedical Medication Dosage"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.prescription.line:0
-#: field:oemedical.prescription.line,quantity:0
-msgid "Quantity"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,respiratory_rate:0
-msgid "Respiratory Rate"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_physician_view
-#: view:oemedical.appointment:0
-#: field:oemedical.appointment,doctor:0
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,doctor:0
-#: view:oemedical.patient.medication:0
-#: field:oemedical.patient.medication,doctor:0
-msgid "Physician"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.insurance:0
-msgid "Oemedical Insurance"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_patient_disease
-msgid "oemedical.patient.disease"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_hospital_or_view
-msgid "Hospital Or"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_hospital_building
-msgid "oemedical.hospital.building"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,object_recognition:0
-msgid "Object Recognition"
-msgstr ""
-
-#. module: oemedical
-#: help:res.partner,is_insurance_company:0
-msgid "Check if the party is an Insurance Company"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,pregnancy_warning:0
-msgid "Pregnancy warning"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,vocabulary:0
-msgid ""
-"Check this box if the patient lacks basic intelectual capacity, when she/he "
-"can not describe elementary objects"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,dose:0
-msgid "Dose"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_res_partner
-msgid "Partner"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_medicament
-msgid "oemedical.medicament"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,is_infectious:0
-msgid "Infectious Disease"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_occupation_view
-msgid "Occupation"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.vaccination:0
-#: field:oemedical.vaccination,dose:0
-msgid "Dose #"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_medication_template
-msgid "oemedical.medication.template"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_specialty
-msgid " Specialty"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,status:0
-msgid "healed"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_eyes:0
-msgid "Opens eyes in response to painful stimuli"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.insurance,insurance_type:0
-#: selection:res.partner,insurance_company_type:0
-msgid "State"
-msgstr "Estado"
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,bpm:0
-msgid "Heart Rate"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,childbearing_age:0
-msgid "Potential for Childbearing"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medicament,active_component:0
-msgid "Active Component"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,therapeutic_action:0
-msgid "Therapeutic effect"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_patient_view
-#: view:oemedical.appointment:0
-#: field:oemedical.appointment,patient:0
-#: view:oemedical.patient:0
-#: field:oemedical.patient,patient:0
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,patient_id:0
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,patient:0
-#: view:oemedical.patient.medication:0
-#: field:oemedical.patient.medication,name:0
-#: field:oemedical.patient.medication,patient:0
-#: view:oemedical.prescription.order:0
-#: field:oemedical.prescription.order,patient:0
-#: view:oemedical.vaccination:0
-#: field:oemedical.vaccination,patient_id:0
-#: field:res.partner,is_patient:0
-msgid "Patient"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.drug.form:0
-#: field:oemedical.drug.form,name:0
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,form:0
-msgid "Form"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.pathology.category:0
-msgid "Oemedical Pathology Category"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medication.dosage,abbreviation:0
-msgid "Dosage abbreviation, such as tid in the US or tds in the UK"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.patient,vaccinations:0
-msgid "Vaccinations"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_patient_evaluation
-msgid " Patient Evaluation"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_procedure
-msgid "oemedical.procedure"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medication.template,frequency_prn:0
-msgid "Use it as needed, pro re nata"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,diagnosed_date:0
-msgid "Date of Diagnosis"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,ldl:0
-msgid "Last LDL"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.pathology.category:0
-#: field:oemedical.pathology.category,parent_id:0
-msgid "Parent Category"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,age:0
-msgid "Age"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,evaluation_type:0
-msgid "Periodic control"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.medication.template,duration_period:0
-#: selection:oemedical.medication.template,frequency_unit:0
-msgid "hours"
-msgstr ""
-
-#. module: oemedical
-#: field:res.partner,relative_id:0
-msgid "Contact"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.specialty:0
-msgid "Oemedical Specialty"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.medication.template,duration_period:0
-msgid "Treatment period"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.appointment:0
-#: field:oemedical.appointment,consultations:0
-#: help:oemedical.appointment,consultations:0
-msgid "Consultation Services"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_diagnostic_hypothesis
-msgid "oemedical.diagnostic_hypothesis"
-msgstr ""
-
-#. module: oemedical
-#: field:res.partner,lastname:0
-#: help:res.partner,lastname:0
-msgid "Last Name"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.hospital.ward,private:0
-msgid "Check this option for private room"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,adverse_reaction:0
-#: view:oemedical.patient.medication:0
-#: field:oemedical.patient.medication,adverse_reaction:0
-msgid "Adverse Reactions"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,tremor:0
-msgid ""
-"If associated  to a disease, please encode it on the patient disease history"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_operational_sector_view
-#: view:oemedical.family:0
-#: field:oemedical.family,operational_sector:0
-#: field:oemedical.operational_area,operational_sector:0
-msgid "Operational Sector"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,respiratory_rate:0
-msgid "Respiratory rate expressed in breaths per minute"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.insurance:0
-#: field:oemedical.insurance,owner:0
-msgid "Owner"
-msgstr ""
-
-#. module: oemedical
-#: constraint:product.product:0
-msgid ""
-"You provided an invalid \"EAN13 Barcode\" reference. You may use the "
-"\"Internal Reference\" field instead."
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.prescription.order:0
-#: field:oemedical.prescription.order,user_id:0
-msgid "Prescribing Doctor"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.insurance:0
-#: field:oemedical.insurance,category:0
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,category:0
-msgid "Category"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_prescription_order_view
-msgid "Prescription Order"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_pathology_category
-msgid "oemedical.pathology.category"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.disease_group.members:0
-#: field:oemedical.disease_group.members,disease_group_id:0
-msgid "Group"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.family_member,member:0
-msgid "Family Member Name"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.disease,is_infectious:0
-msgid "Check if the patient has an infectioustransmissible disease"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,doctor:0
-msgid "Doctor"
-msgstr ""
-
-#. module: oemedical
-#: help:res.partner,is_patient:0
-msgid "Check if the party is a patient"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.family_member,member:0
-msgid "Member"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,height:0
-msgid "Height in centimeters, eg 175"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_insurance
-msgid "oemedical.insurance"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.physician,health_professional:0
-msgid "Health Professional's Name, from the partner list"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.diagnostic_hypothesis:0
-#: field:oemedical.diagnostic_hypothesis,evaluation_id:0
-#: view:oemedical.directions:0
-#: field:oemedical.directions,evaluation_id:0
-#: view:oemedical.secondary_condition:0
-#: field:oemedical.secondary_condition,evaluation_id:0
-#: view:oemedical.signs_and_symptoms:0
-#: field:oemedical.signs_and_symptoms,evaluation_id:0
-msgid "Evaluation"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.drug.form:0
-msgid "Oemedical Drug Form"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_ethnicity
-msgid "oemedical.ethnicity"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.hospital.bed,state:0
-#: field:oemedical.hospital.ward,state:0
-msgid "Status"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.vaccination:0
-#: field:oemedical.vaccination,date:0
-msgid "Date"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.vaccination,institution:0
-msgid "Medical Center where the patient is being or was vaccinated"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,hba1c:0
-msgid "Last Glycated Hb level. Can be approximative."
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_motor:0
-msgid "Makes no movement"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medicament.category:0
-msgid "Oemedical Medicament Category"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_pathology_category
-msgid " Pathology Category"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_medication_template
-msgid " Medication Template"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.family,members:0
-msgid "Family Members"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient,general_info:0
-msgid "General information about the patient"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_operational_sector
-msgid " Operational Sector"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.bed:0
-#: field:oemedical.hospital.bed,name:0
-#: field:product.product,is_bed:0
-msgid "Bed"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_motor:0
-msgid "Flexion / Withdrawal to painful stimuli"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.pathology:0
-#: field:oemedical.pathology,protein:0
-msgid "Protein involved"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,signs_and_symptoms:0
-msgid ""
-"Enter the Signs and Symptoms                                         for the "
-"patient in this evaluation."
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.vaccination:0
-#: field:oemedical.vaccination,vaccine:0
-#: field:product.product,is_vaccine:0
-msgid "Vaccine"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,dose_unit:0
-msgid "dose unit"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_procedure_view
-#: view:oemedical.directions:0
-#: field:oemedical.directions,procedure_id:0
-msgid "Procedure"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,praxis:0
-msgid "Praxis"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_family_view
-#: view:oemedical.family:0
-#: field:oemedical.family,name:0
-#: view:oemedical.family_member:0
-#: field:oemedical.family_member,family_id:0
-#: view:oemedical.patient:0
-#: field:oemedical.patient,family:0
-msgid "Family"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.pathology,protein:0
-msgid "Name of the protein(s) affected"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,height:0
-msgid "Height"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.patient,marital_status:0
-msgid "Marital Status"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.pathology,groups:0
-msgid ""
-"Specify the groups this pathology belongs. Some automated processes act upon "
-"the code of the group"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.medicament.category,childs:0
-msgid "Children"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_ethnicity_view
-msgid "Ethnicity"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_drug_route_view
-msgid "Drug Route"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,storage:0
-msgid "Storage Conditions"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,allergy_type:0
-msgid "Misc Allergy"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,microwave:0
-msgid "Microwave"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_medicament
-msgid " Medicament"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.family_member:0
-msgid "Party"
-msgstr ""
-
-#. module: oemedical
-#: help:res.partner,internal_user:0
-msgid ""
-"In GNU Health is the user (doctor, nurse) that logins.When the party is a "
-"doctor or a health professional, it will be the user that maps the doctor's "
-"party name. It must be present."
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,composition:0
-msgid "Composition"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.directions:0
-msgid "Oemedical Directions"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.appointment,urgency:0
-msgid "Urgent"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medication.template,indication:0
-msgid ""
-"Choose a disease for this medicament from the disease list. It can be an "
-"existing disease of the patient or a prophylactic."
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.pathology,category:0
-msgid ""
-"Select the main category for this disease This is usuallyassociated to the "
-"standard. For instance, the chapter on the ICD-10will be the main category "
-"for de disease"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.ethnicity:0
-#: field:oemedical.ethnicity,notes:0
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,notes:0
-msgid "Notes"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.hospital.ward,gender:0
-msgid "Men Ward"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,tv:0
-msgid "Television"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medication.template,common_dosage:0
-msgid "Common / standard dosage frequency for this medicament"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_family
-msgid " Family"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.disease_group.members:0
-#: field:oemedical.disease_group.members,name:0
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,pathology:0
-#: help:oemedical.patient.disease,pathology:0
-msgid "Disease"
-msgstr ""
-
-#. module: oemedical
-#: field:res.partner,alias:0
-msgid "Alias"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.patient.disease,status:0
-msgid "Status of the disease"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medication.template,duration:0
-msgid ""
-"Period that the patient must take the medication. in minutes, hours, days, "
-"months, years or indefinately"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,status:0
-msgid "improving"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.operational_sector:0
-#: field:oemedical.operational_sector,name:0
-msgid "Op. Sector"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_ethnicity
-msgid " Ethnicity"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,cod:0
-msgid "Cause of Death"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,is_active:0
-msgid "Active disease"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,dob:0
-msgid "DoB"
-msgstr ""
-
-#. module: oemedical
-#: field:res.partner,internal_user:0
-msgid "Internal User"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_specialty
-msgid "oemedical.specialty"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_medicament_category
-msgid " Medicament Category"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.patient.evaluation,secondary_conditions:0
-msgid "Secondary Conditions"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_verbal:0
-msgid "Incomprehensible sounds"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.vaccination,vaccine:0
-msgid ""
-"Vaccine Name. Make sure that the vaccine (product) has all the proper "
-"information at product level. Information such as provider, supplier code, "
-"tracking number, etc.. This  information must always be present. If "
-"available, please copy / scan the vaccine leaflet and attach it to this "
-"record"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.vaccination:0
-#: field:oemedical.vaccination,next_dose_date:0
-msgid "Next Dose"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_patient_disease_view
-msgid "Patient Disease"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,head_circumference:0
-msgid "Head circumference"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,weight:0
-msgid "Weight in Kilos"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,treatment_description:0
-msgid "Treatment Description"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_directions
-msgid "oemedical.directions"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.appointment,patient:0
-#: help:oemedical.patient,patient:0
-msgid "Patient Name"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.medication.template,duration_period:0
-msgid "years"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.hospital.bed,telephone_number:0
-msgid "Telephone number / Extension"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.insurance.plan:0
-#: field:oemedical.insurance.plan,notes:0
-#: view:oemedical.physician:0
-#: field:oemedical.physician,info:0
-msgid "Extra info"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.patient.evaluation,signs_and_symptoms:0
-msgid "Signs and Symptoms"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,mood:0
-msgid "Disgust"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medicament:0
-msgid "Oemedical Medicament"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.patient,rh:0
-msgid "Rh"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,hip:0
-msgid "Hip"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_prescription_order
-msgid " Prescription Order"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,evaluation_type:0
-msgid "Emergency"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.hospital.ward,bio_hazard:0
-msgid "Check this option if there is biological hazard"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,frequency_prn:0
-msgid "PRN"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.insurance.plan:0
-#: field:oemedical.insurance.plan,is_default:0
-msgid "Default plan"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_specialty_view
-#: view:oemedical.appointment:0
-#: field:oemedical.appointment,speciality:0
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,specialty:0
-#: view:oemedical.physician:0
-#: field:oemedical.physician,specialty:0
-#: view:oemedical.specialty:0
-#: field:oemedical.specialty,name:0
-msgid "Specialty"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.medication.template,frequency_unit:0
-msgid "weeks"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_medication_dosage
-msgid "oemedical.medication.dosage"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.prescription.order,prescription_line:0
-msgid "Prescription line"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.patient.evaluation,diagnostic_hypothesis:0
-msgid "Hypotheses / DDx"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_patient
-msgid "oemedical.patient"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_prescription_line
-msgid "oemedical.prescription.line"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_drug_route
-msgid "oemedical.drug.route"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,whr:0
-msgid "Waist to hip ratio"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_drug_form
-msgid " Drug Form"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.insurance.plan,is_default:0
-msgid ""
-"Check if this is the default plan when assigning this insurance company to a "
-"patient"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medication.dosage:0
-#: field:oemedical.medication.dosage,abbreviation:0
-msgid "Abbreviation"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,disease_severity:0
-msgid "Mild"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medication.dosage,code:0
-msgid "Dosage Code,for example: SNOMED 229798009 = 3 times per day"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.ethnicity:0
-msgid "Oemedical Ethnicity"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.hospital.bed,bed_type:0
-msgid "Low Bed"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medicament,pregnancy_category:0
-msgid ""
-"** FDA Pregancy Categories ***\n"
-"CATEGORY A :Adequate and well-controlled human studies have failed to "
-"demonstrate a risk to the fetus in the first trimester of pregnancy (and "
-"there is no evidence of risk in later trimesters).\n"
-"\n"
-"CATEGORY B : Animal reproduction studies have failed todemonstrate a risk to "
-"the fetus and there are no adequate and well-controlled studies in pregnant "
-"women OR Animal studies have shown an adverse effect, but adequate and well-"
-"controlled studies in pregnant women have failed to demonstrate a risk to "
-"the fetus in any trimester.\n"
-"\n"
-"CATEGORY C : Animal reproduction studies have shown an adverse effect on the "
-"fetus and there are no adequate and well-controlled studies in humans, but "
-"potential benefits may warrant use of the drug in pregnant women despite "
-"potential risks. \n"
-"\n"
-" CATEGORY D : There is positive evidence of human fetal  risk based on "
-"adverse reaction data from investigational or marketing experience or "
-"studies in humans, but potential benefits may warrant use of the drug in "
-"pregnant women despite potential risks.\n"
-"\n"
-"CATEGORY X : Studies in animals or humans have demonstrated fetal "
-"abnormalities and/or there is positive evidence of human fetal risk based on "
-"adverse reaction data from investigational or marketing experience, and the "
-"risks involved in use of the drug in pregnant women clearly outweigh "
-"potential benefits.\n"
-"\n"
-"CATEGORY N : Not yet classified"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,end_treatment:0
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,date_stop_treatment:0
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,evaluation_endtime:0
-msgid "End"
-msgstr ""
-
-#. module: oemedical
-#: help:res.partner,is_doctor:0
-msgid "Check if the party is a health professional"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_pathology
-msgid "oemedical.pathology"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.family_member,family_id:0
-msgid "Family code"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medication.template:0
-msgid "Oemedical Medication Template"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,bio_hazard:0
-msgid "Bio Hazard"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.prescription.line:0
-#: field:oemedical.prescription.line,prnt:0
-msgid "Print"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_patient_evaluation_view
-msgid "Patient Evaluation"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_family_member_view
-msgid "Family Member"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.appointment,appointment_type:0
-#: field:oemedical.patient.evaluation,evaluation_type:0
-msgid "Type"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,mood:0
-msgid "Flat"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_insurance_plan
-msgid " Insurance Plan"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.hospital.or,name:0
-msgid "Name of the Operating Room"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,dosage:0
-msgid "Dosage Instructions"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.appointment,appointment_type:0
-msgid "Outpatient"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medicament,product:0
-msgid "Product Name"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.bed:0
-#: field:oemedical.hospital.bed,ward:0
-msgid "Ward"
-msgstr ""
-
-#. module: oemedical
-#: sql_constraint:oemedical.family:0
-msgid "Family Code must be unique!"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_hospital_ward
-msgid " Hospital Ward"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.operational_sector:0
-msgid "Oemedical Operational_Sector"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,reliable_info:0
-msgid "Reliable"
-msgstr ""
-
-#. module: oemedical
-#: field:res.partner,is_work:0
-msgid "Work"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.disease_group.members:0
-msgid "Oemedical Disease_Group Members"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.insurance,insurance_type:0
-#: field:res.partner,insurance_company_type:0
-msgid "Insurance Type"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient,sex:0
-msgid "Male"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_root
-#: model:ir.ui.menu,name:oemedical.oemedical_root_sub
-#: view:res.partner:0
-msgid "OeMedical"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,duration:0
-msgid "Treatment duration"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,calculation_ability:0
-msgid "Check this box if the patient can not do simple arithmetic problems"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.prescription.line:0
-#: field:oemedical.prescription.line,refills:0
-msgid "Refills #"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,evaluation_type:0
-msgid "Phone call"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_hospital_unit
-msgid "oemedical.hospital.unit"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.family:0
-msgid "Oemedical Family"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.medication.template,duration_period:0
-#: selection:oemedical.medication.template,frequency_unit:0
-msgid "days"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_vaccination
-msgid " Vaccination"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,allergy_type:0
-msgid "Misc Contraindication"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,ssn:0
-msgid "SSN"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_signs_and_symptoms
-msgid " Signs And Symptoms"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medicament,dosage:0
-msgid "Dosage / Indications"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.prescription.line:0
-#: field:oemedical.prescription.line,review:0
-msgid "Review"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,start_treatment:0
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,date_start_treatment:0
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,evaluation_start:0
-msgid "Start"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.patient,medications:0
-msgid "Medications"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,present_illness:0
-msgid "Present Illness"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.hospital.bed,bed_type:0
-msgid "Clinitron"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.medication,doctor:0
-msgid "Physician who prescribed the medicament"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.appointment:0
-#: field:oemedical.appointment,appointment_date:0
-msgid "Date and Time"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient,marital_status:0
-msgid "Separated"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_signs_and_symptoms
-msgid "oemedical.signs_and_symptoms"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,praxis:0
-msgid "Check this box if the patient is unable to make voluntarymovements"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,derived_from:0
-msgid "Derived from"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.hospital.building,name:0
-msgid "Name of the building within the institution"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,dehydration:0
-msgid ""
-"Check this box if the patient show signs of dehydration. If associated  to a "
-"disease, please encode the  correspondent disease on the patient disease "
-"history. For example, Volume Depletion, E86 in ICD-10 encoding"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient,primary_care_doctor:0
-msgid "Current primary care / family doctor"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.patient.evaluation,loc_eyes:0
-msgid "Glasgow - Eyes"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.hospital.ward,number_of_beds:0
-msgid "Number of patients per ward"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_family_member
-msgid " Family Member"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_verbal:0
-msgid "Confused, disoriented"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.pathology,name:0
-msgid "Disease name"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,diastolic:0
-msgid "Diastolic Pressure"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,hba1c:0
-msgid "Glycated Hemoglobin"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_prescription_line_view
-msgid "Prescription Line"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,loc:0
-msgid "Level of Consciousness"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.hospital.bed,state:0
-msgid "Reserved"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_dose_unit_view
-msgid "Dose Unit"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.pathology:0
-#: field:oemedical.pathology,gene:0
-msgid "Gene"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.medication:0
-#: field:oemedical.patient.medication,discontinued:0
-msgid "Discontinued"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_occupation
-msgid " Occupation"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.signs_and_symptoms,sign_or_symptom:0
-msgid "Sign"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,primary_care_doctor:0
-msgid "Primary Care Doctor"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.drug.form:0
-#: field:oemedical.drug.form,code:0
-#: view:oemedical.drug.route:0
-#: field:oemedical.drug.route,code:0
-#: view:oemedical.ethnicity:0
-#: field:oemedical.ethnicity,code:0
-#: view:oemedical.hospital.building:0
-#: field:oemedical.hospital.building,code:0
-#: view:oemedical.hospital.unit:0
-#: field:oemedical.hospital.unit,code:0
-#: view:oemedical.medication.dosage:0
-#: field:oemedical.medication.dosage,code:0
-#: view:oemedical.occupation:0
-#: field:oemedical.occupation,code:0
-#: view:oemedical.pathology:0
-#: field:oemedical.pathology,code:0
-#: view:oemedical.pathology.group:0
-#: field:oemedical.pathology.group,code:0
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,pcs_code:0
-#: view:oemedical.procedure:0
-#: field:oemedical.procedure,name:0
-#: view:oemedical.specialty:0
-#: field:oemedical.specialty,code:0
-msgid "Code"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient,current_insurance:0
-msgid ""
-"Insurance information. You may choose from the different insurances "
-"belonging to the patient"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,orientation:0
-msgid "Orientation"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,information_source:0
-msgid "Source"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient,critical_info:0
-msgid ""
-"Write any important information on the patient's disease, surgeries, "
-"allergies, ..."
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.patient,sex:0
-msgid "Sex"
-msgstr ""
-
-#. module: oemedical
-#: help:res.partner,is_pharmacy:0
-msgid "Check if the party is a Pharmacy"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_family
-msgid "oemedical.family"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medication.dosage:0
-#: field:oemedical.medication.dosage,name:0
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,common_dosage:0
-#: field:oemedical.medication.template,frequency:0
-msgid "Frequency"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.hospital.bed,bed_type:0
-msgid "Bed Type"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.medication:0
-#: field:oemedical.patient.medication,course_completed:0
-msgid "Course Completed"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.pathology.group,name:0
-msgid "Group name"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.drug.route:0
-#: field:oemedical.drug.route,name:0
-#: view:oemedical.hospital.or:0
-#: field:oemedical.hospital.or,unit:0
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,unit:0
-msgid "Unit"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,age:0
-msgid "Age when diagnosed"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,diagnostic_hypothesis:0
-msgid ""
-"Presumptive Diagnosis. If no diagnosis can be made, encode the main sign or "
-"symptom."
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.signs_and_symptoms,sign_or_symptom:0
-msgid "Subjective / Objective"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.hospital.ward,gender:0
-msgid "Unisex"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,status:0
-msgid "unchanged"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient,diseases:0
-msgid "Mark if the patient has died"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,active_component:0
-msgid "Active component"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_disease_group_members
-msgid " Disease Group Members"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.pathology.category,childs:0
-msgid "Children Category"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,user_id:0
-msgid "Last Changed by"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.prescription.order:0
-#: field:oemedical.prescription.order,notes:0
-msgid "Prescription Notes"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_operational_area
-msgid "oemedical.operational_area"
-msgstr ""
-
-#. module: oemedical
-#: help:res.partner,is_institution:0
-msgid "Check if the party is a Medical Center"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.vaccination,vaccine_lot:0
-msgid ""
-"Please check on the vaccine (product) production lot numberand tracking "
-"number when available !"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.patient.evaluation,loc_motor:0
-msgid "Glasgow - Motor"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-msgid "Oemedical Patient Evaluation"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.medication:0
-msgid "Oemedical Patient Medication"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_medicament_category
-msgid "oemedical.medicament.category"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.hospital.bed,bed_type:0
-msgid "Circo Electric"
-msgstr ""
-
-#. module: oemedical
-#: help:product.product,is_medicament:0
-msgid "Check if the product is a medicament"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,violent:0
-msgid "Check this box if the patient is agressive or violent at the moment"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.physician:0
-msgid "Oemedical Physician"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,status:0
-msgid "worsening"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.or:0
-msgid "Oemedical Hospital Or"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.prescription.order,prescription_id:0
-msgid "Type in the ID of this prescription"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.ethnicity:0
-#: field:oemedical.ethnicity,name:0
-#: view:oemedical.hospital.building:0
-#: field:oemedical.hospital.building,name:0
-#: view:oemedical.hospital.or:0
-#: field:oemedical.hospital.or,name:0
-#: view:oemedical.hospital.unit:0
-#: field:oemedical.hospital.unit,name:0
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,name:0
-#: field:oemedical.insurance,name:0
-#: field:oemedical.insurance.plan,name:0
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,name:0
-#: view:oemedical.medicament.category:0
-#: field:oemedical.medicament.category,name:0
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,name:0
-#: view:oemedical.occupation:0
-#: field:oemedical.occupation,name:0
-#: view:oemedical.operational_area:0
-#: field:oemedical.operational_area,name:0
-#: view:oemedical.pathology:0
-#: field:oemedical.pathology,name:0
-#: view:oemedical.pathology.group:0
-#: field:oemedical.pathology.group,name:0
-#: view:oemedical.patient:0
-#: field:oemedical.patient.evaluation,name:0
-#: view:oemedical.physician:0
-#: field:oemedical.physician,name:0
-#: view:oemedical.vaccination:0
-#: field:oemedical.vaccination,name:0
-msgid "Name"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_hospital_ward
-msgid "oemedical.hospital.ward"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,mood:0
-msgid "Rage"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_hospital_or
-msgid "oemedical.hospital.or"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.vaccination:0
-msgid "Oemedical Vaccination"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,malnutrition:0
-msgid ""
-"Check this box if the patient show signs of malnutrition. If associated  to "
-"a disease, please encode the correspondent disease on the patient disease "
-"history. For example, Moderate protein-energy malnutrition, E44.0 in ICD-10 "
-"encoding"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,refrigerator:0
-msgid "Refrigetator"
-msgstr ""
-
-#. module: oemedical
-#: help:product.product,is_vaccine:0
-msgid "Check if the product is a vaccine"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,disease_severity:0
-msgid "Severe"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,notes_complaint:0
-msgid "Complaint details"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.insurance,category:0
-msgid "Insurance company plan / category"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.pathology:0
-msgid "Oemedical Pathology"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.hospital.bed,state:0
-#: selection:oemedical.hospital.ward,state:0
-msgid "Not available"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,derived_from:0
-msgid "Physician who derived the case"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.patient.disease,disease_severity:0
-msgid "Severity"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.insurance:0
-#: field:oemedical.insurance,company:0
-#: view:oemedical.insurance.plan:0
-#: field:oemedical.insurance.plan,company:0
-#: field:res.partner,is_insurance_company:0
-msgid "Insurance Company"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.medication.template,duration_period:0
-#: selection:oemedical.medication.template,frequency_unit:0
-msgid "minutes"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.appointment:0
-#: field:oemedical.appointment,comments:0
-#: view:oemedical.diagnostic_hypothesis:0
-#: field:oemedical.diagnostic_hypothesis,comments:0
-#: view:oemedical.directions:0
-#: field:oemedical.directions,comments:0
-#: view:oemedical.secondary_condition:0
-#: field:oemedical.secondary_condition,comments:0
-#: view:oemedical.signs_and_symptoms:0
-#: field:oemedical.signs_and_symptoms,comments:0
-msgid "Comments"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.appointment:0
-#: view:oemedical.diagnostic_hypothesis:0
-#: view:oemedical.directions:0
-#: view:oemedical.disease_group.members:0
-#: view:oemedical.drug.form:0
-#: view:oemedical.drug.route:0
-#: view:oemedical.ethnicity:0
-#: view:oemedical.family:0
-#: view:oemedical.family_member:0
-#: view:oemedical.hospital.bed:0
-#: view:oemedical.hospital.building:0
-#: view:oemedical.hospital.or:0
-#: view:oemedical.hospital.unit:0
-#: view:oemedical.hospital.ward:0
-#: view:oemedical.insurance:0
-#: view:oemedical.insurance.plan:0
-#: view:oemedical.medicament:0
-#: view:oemedical.medicament.category:0
-#: view:oemedical.medication.dosage:0
-#: view:oemedical.medication.template:0
-#: view:oemedical.occupation:0
-#: view:oemedical.operational_area:0
-#: view:oemedical.operational_sector:0
-#: view:oemedical.pathology:0
-#: view:oemedical.pathology.category:0
-#: view:oemedical.pathology.group:0
-#: view:oemedical.patient:0
-#: view:oemedical.patient.disease:0
-#: view:oemedical.patient.evaluation:0
-#: view:oemedical.patient.medication:0
-#: view:oemedical.physician:0
-#: view:oemedical.prescription.line:0
-#: view:oemedical.prescription.order:0
-#: view:oemedical.procedure:0
-#: view:oemedical.secondary_condition:0
-#: view:oemedical.signs_and_symptoms:0
-#: view:oemedical.specialty:0
-#: view:oemedical.vaccination:0
-msgid "Group By..."
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.operational_sector,name:0
-msgid "Region included in an operational area"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.family_member:0
-#: field:oemedical.family_member,role:0
-msgid "Role"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_hospital_bed
-msgid " Hospital Bed"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_pathology_category_view
-msgid "Pathology Category"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,ac:0
-msgid "Air Conditioning"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_medication_template_view
-#: view:oemedical.patient.medication:0
-#: field:oemedical.patient.medication,template:0
-#: view:oemedical.prescription.line:0
-#: field:oemedical.prescription.line,template:0
-msgid "Medication Template"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_hospital_ward_view
-msgid "Hospital Ward"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_physician
-msgid " Physician"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,pregnancy:0
-msgid "Pregnancy and Lactancy"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.hospital.bed,state:0
-msgid "Free"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,tremor:0
-msgid "Tremor"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.prescription.order:0
-#: field:oemedical.prescription.order,pregnancy_warning:0
-msgid "Pregancy Warning"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medicament,therapeutic_action:0
-msgid "Therapeutic action"
-msgstr ""
-
-#. module: oemedical
-#: field:res.partner,is_doctor:0
-msgid "Health Prof"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_medication_dosage
-msgid " Medication Dosage"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.unit:0
-msgid "Oemedical Hospital Unit"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,allergy_type:0
-msgid "Drug Allergy"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_motor:0
-msgid "Obeys commands"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_pathology
-msgid " Pathology"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medication.template,route:0
-msgid "Drug administration route code."
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,ldl:0
-msgid "Last LDL Cholesterol reading. Can be approximative"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,info_diagnosis:0
-msgid "Presumptive Diagnosis: Extra Info"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,floor:0
-msgid "Floor Number"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.hospital.bed,name:0
-msgid "Bed Number"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient,current_address:0
-msgid ""
-"Contact information. You may choose from the different contacts and "
-"addresses this patient has."
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,cholesterol_total:0
-msgid "Last Cholesterol"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_hospital_unit
-msgid " Hospital Unit"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_motor:0
-msgid "Abnormal flexion to painful stimuli (decorticate response)"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.bed:0
-#: field:oemedical.hospital.bed,extra_info:0
-#: view:oemedical.hospital.building:0
-#: field:oemedical.hospital.building,extra_info:0
-#: view:oemedical.hospital.or:0
-#: field:oemedical.hospital.or,extra_info:0
-#: view:oemedical.hospital.unit:0
-#: field:oemedical.hospital.unit,extra_info:0
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,extra_info:0
-#: view:oemedical.insurance:0
-#: field:oemedical.insurance,notes:0
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,notes:0
-#: view:oemedical.pathology:0
-#: field:oemedical.pathology,info:0
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,extra_info:0
-#: view:oemedical.patient.medication:0
-#: field:oemedical.patient.medication,notes:0
-msgid "Extra Info"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient,sex:0
-msgid "Female"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_secondary_condition
-msgid "oemedical.secondary_condition"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_appointment
-msgid " Appointment"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,evaluation_summary:0
-msgid "Evaluation Summary"
-msgstr ""
-
-#. module: oemedical
-#: help:res.partner,activation_date:0
-msgid "Date of activation of the party"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,internet:0
-msgid "Internet Access"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,tag:0
-msgid "Last TAGs"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,ethnic_group:0
-msgid "Ethnic group"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,mood:0
-msgid "Euphoria"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,osat:0
-msgid "Oxygen Saturation(arterial)."
-msgstr ""
-
-#. module: oemedical
-#: field:res.partner,activation_date:0
-msgid "Activation date"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,violent:0
-msgid "Violent Behaviour"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_directions
-msgid " Directions"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.appointment:0
-#: field:oemedical.appointment,name:0
-#: field:oemedical.prescription.order,name:0
-msgid "Appointment ID"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.patient,blood_type:0
-msgid "Blood Type"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_verbal:0
-msgid "Makes no sounds"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.appointment,urgency:0
-msgid "Medical Emergency"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_hospital_or
-msgid " Hospital Or"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,is_on_treatment:0
-msgid "Currently on Treatment"
-msgstr ""
-
-#. module: oemedical
-#: field:res.partner,relationship:0
-msgid "Relationship"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.appointment:0
-#: field:oemedical.appointment,institution:0
-msgid "Health Center"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_insurance_plan
-msgid "oemedical.insurance.plan"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_motor:0
-msgid "Extension to painful stimuli - decerebrate response -"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.medication,discontinued_reason:0
-msgid "Short description for discontinuing the treatment"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.disease,short_comment:0
-msgid ""
-"Brief, one-line remark of the disease. Longer description will go on the "
-"Extra info field"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,orientation:0
-msgid "Check this box if the patient is disoriented in time and/or space"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.hospital.ward,state:0
-msgid "Full"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,temperature:0
-msgid "Temperature in celcius"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_medicament_category_view
-msgid "Medicament Category"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,osat:0
-msgid "Oxygen Saturation"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_insurance
-msgid " Insurance"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,secondary_conditions:0
-msgid "Other, Secondary conditions found on the patient"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,evaluation_type:0
-msgid "Telemedicine"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.appointment,speciality:0
-msgid "Medical Specialty / Sector"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,abstraction:0
-msgid ""
-"Check this box if the patient presents abnormalities in abstract reasoning"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,weeks_of_pregnancy:0
-msgid "Contracted in pregnancy week #"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,dehydration:0
-msgid "Dehydration"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient:0
-msgid "Oemedical Patient"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_prescription_line
-msgid " Prescription Line"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_pathology_group
-msgid " Pathology Group"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_dose_unit
-msgid " Dose Unit"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.hospital.bed,state:0
-msgid "Occupied"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,temperature:0
-msgid "Temperature"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_verbal:0
-msgid "Utters inappropriate words"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.disease,pcs_code:0
-msgid "Procedure code, for example, ICD-10-PCS Code 7-character string"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,disease_severity:0
-msgid "Moderate"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medication.template,qty:0
-msgid "Quantity of units (eg, 2 capsules) of the medicament"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,head_circumference:0
-msgid "Head Circumference"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_appointment_view
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,evaluation_date:0
-msgid "Appointment"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.hospital.bed,bed_type:0
-msgid "Electric"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_operational_area
-msgid " Operational Area"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,evaluation_type:0
-msgid "Pre-arranged appointment"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,telephone:0
-msgid "Telephone access"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.operational_area:0
-msgid "Oemedical Operational_Area"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,bpm:0
-msgid "Heart rate expressed in beats per minute"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_disease_group_members_view
-msgid "Disease Group Members"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.insurance:0
-#: field:oemedical.insurance,plan_id:0
-#: view:oemedical.insurance.plan:0
-#: field:oemedical.insurance.plan,plan:0
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,directions:0
-msgid "Plan"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.insurance.plan:0
-msgid "Oemedical Insurance Plan"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_eyes:0
-msgid "Opens eyes in response to voice"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.medication:0
-#: field:oemedical.patient.medication,is_active:0
-msgid "Active"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.prescription.line,prnt:0
-msgid "Check this box to print this line of the prescription."
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient,identification_code:0
-msgid ""
-"Patient Identifier provided by the Health Center.Is not the Social Security "
-"Number"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,route:0
-msgid "Administration Route"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,pregnancy_warning:0
-msgid "Pregnancy Warning"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.family:0
-#: field:oemedical.family,info:0
-#: view:oemedical.operational_area:0
-#: field:oemedical.operational_area,info:0
-#: view:oemedical.operational_sector:0
-#: field:oemedical.operational_sector,info:0
-msgid "Extra Information"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_operational_sector
-msgid "oemedical.operational_sector"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medication.template,form:0
-msgid "Drug form, such as tablet or gel"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medicament,indications:0
-msgid "Indications"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.prescription.line:0
-#: field:oemedical.prescription.line,prescription_order_id:0
-#: view:oemedical.prescription.order:0
-#: field:oemedical.prescription.order,prescription_id:0
-msgid "Prescription ID"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.insurance:0
-#: field:oemedical.insurance,number:0
-msgid "Number"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.drug.route:0
-msgid "Oemedical Drug Route"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,derived_to:0
-msgid "Physician to whom escalate / derive the case"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,actions:0
-msgid "Procedures / Actions to take"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_pathology_group
-msgid "oemedical.pathology.group"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.medicament,pregnancy_category:0
-msgid "Pregnancy Category"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.patient.disease,allergy_type:0
-msgid "Allergy type"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.prescription.order:0
-#: field:oemedical.prescription.order,prescription_warning_ack:0
-msgid "Prescription verified"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.medication.template,frequency_unit:0
-msgid "unit"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,knowledge_current_events:0
-msgid ""
-"Check this box if the patient can not respond to public notorious events"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,glycemia:0
-msgid "Last blood glucose level. Can be approximative."
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.appointment,institution:0
-#: help:oemedical.hospital.building,institution:0
-#: help:oemedical.hospital.or,institution:0
-#: help:oemedical.hospital.unit,institution:0
-#: help:oemedical.hospital.ward,institution:0
-msgid "Medical Center"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,abstraction:0
-msgid "Abstraction"
-msgstr ""
-
-#. module: oemedical
-#: help:res.partner,is_person:0
-msgid "Check if the party is a person."
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,diagnosis:0
-msgid "Presumptive Diagnosis"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,lastname:0
-msgid "Lastname"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,hdl:0
-msgid "Last HDL"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medication.template,admin_times:0
-msgid ""
-"Suggested administration hours. For example, at 08:00, 13:00 and 18:00 can "
-"be encoded like 08 13 18"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,current_address:0
-msgid "Address"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,short_comment:0
-msgid "Remarks"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.insurance,insurance_type:0
-#: selection:res.partner,insurance_company_type:0
-msgid "Labour Union / Syndical"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medication.template,dose_unit:0
-msgid "Unit of measure for the medication to be taken"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,abdominal_circ:0
-msgid "Waist"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,overdosage:0
-#: help:oemedical.medicament,overdosage:0
-msgid "Overdosage"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_drug_form_view
-msgid "Drug Form"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_hospital_unit_view
-msgid "Hospital Unit"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,indications:0
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,indication:0
-msgid "Indication"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.diagnostic_hypothesis:0
-msgid "Oemedical Diagnostic_Hypothesis"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,mood:0
-msgid "Sad"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.insurance:0
-#: field:oemedical.insurance,member_since:0
-msgid "Member since"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,identification_code:0
-#: view:oemedical.physician:0
-#: field:oemedical.physician,code:0
-msgid "ID"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,deceased:0
-msgid "Deceased"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.patient,diseases:0
-msgid "Diseases"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,derived_to:0
-msgid "Derived to"
-msgstr ""
-
-#. module: oemedical
-#: sql_constraint:oemedical.drug.form:0
-#: sql_constraint:oemedical.drug.route:0
-#: sql_constraint:oemedical.ethnicity:0
-#: sql_constraint:oemedical.hospital.or:0
-#: sql_constraint:oemedical.medication.dosage:0
-#: sql_constraint:oemedical.occupation:0
-#: sql_constraint:oemedical.operational_area:0
-#: sql_constraint:oemedical.operational_sector:0
-#: sql_constraint:oemedical.pathology:0
-#: sql_constraint:oemedical.specialty:0
-msgid "Name must be unique!"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient,marital_status:0
-msgid "Widowed"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.building:0
-msgid "Oemedical Hospital Building"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_eyes:0
-msgid "Does not Open Eyes"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient,family:0
-msgid "Family Code"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.secondary_condition:0
-msgid "Oemedical Secondary_Condition"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medicament,pregnancy_warning:0
-msgid "The drug represents risk to pregnancy or lactancy"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_hospital_bed
-msgid "oemedical.hospital.bed"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.appointment:0
-msgid "Oemedical Appointment"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.physician,institution:0
-msgid "Instituion where she/he works"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_hospital_bed_view
-msgid "Hospital Bed"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_disease_group_members
-msgid "oemedical.disease_group.members"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,evaluation_date:0
-msgid ""
-"Enter or select the date / ID of the appointment related to this evaluation"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,information_source:0
-msgid "Source ofInformation, eg : Self, relative, friend ..."
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_vaccination_view
-msgid "Vaccination"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_patient_medication_view
-msgid "Patient Medication"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.pathology.group:0
-#: field:oemedical.pathology.group,info:0
-msgid "Detailed information"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.signs_and_symptoms:0
-msgid "Oemedical Signs_And_Symptoms"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,mood:0
-msgid "Happy"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.procedure:0
-#: field:oemedical.procedure,description:0
-msgid "Long Text"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,allergy_type:0
-msgid "Food Allergy"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medication.template,duration_period:0
-msgid ""
-"Period that the patient must take the medication in minutes, hours, days, "
-"months, years or indefinately"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,reliable_info:0
-msgid ""
-"Uncheck this optionif the information provided by the source seems not "
-"reliable"
-msgstr ""
-
-#. module: oemedical
-#: help:product.product,is_bed:0
-msgid "Check if the product is a bed on the gnuhealth.center"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,chief_complaint:0
-#: help:oemedical.patient.evaluation,chief_complaint:0
-msgid "Chief Complaint"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.building:0
-#: field:oemedical.hospital.building,institution:0
-#: view:oemedical.hospital.or:0
-#: field:oemedical.hospital.or,institution:0
-#: view:oemedical.hospital.unit:0
-#: field:oemedical.hospital.unit,institution:0
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,institution:0
-#: view:oemedical.physician:0
-#: field:oemedical.physician,institution:0
-#: view:oemedical.vaccination:0
-#: field:oemedical.vaccination,institution:0
-#: field:res.partner,is_institution:0
-msgid "Institution"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.or:0
-#: field:oemedical.hospital.or,building:0
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,building:0
-msgid "Building"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.medication.template,frequency_unit:0
-msgid "when required"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.bed:0
-#: field:oemedical.hospital.bed,telephone_number:0
-msgid "Telephone Number"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_eyes:0
-msgid "Opens eyes spontaneously"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient,marital_status:0
-msgid "Married"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.disease:0
-msgid "Oemedical Patient Disease"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medicament,composition:0
-msgid "Components"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,status:0
-msgid "acute"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_secondary_condition_view
-msgid "Secondary Condition"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,whr:0
-msgid "WHR"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.family_member:0
-msgid "Oemedical Family_Member"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.hospital.bed,ward:0
-msgid "Ward or room"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_patient_disease
-msgid " Patient Disease"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.appointment,appointment_type:0
-#: selection:oemedical.patient.evaluation,evaluation_type:0
-msgid "Inpatient"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.disease,date_start_treatment:0
-msgid "Start of treatment date"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_signs_and_symptoms_view
-msgid "Signs And Symptoms"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medication.template,dose:0
-msgid "Amount of medication (eg, 250 mg) per dose"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,mood:0
-msgid "Fear"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,dod:0
-msgid "Date of Death"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_secondary_condition
-msgid " Secondary Condition"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.hospital.bed,bed_type:0
-msgid "Gatch Bed"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_patient
-msgid " Patient"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.insurance,plan_id:0
-#: help:oemedical.insurance.plan,name:0
-msgid "Insurance company plan"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.pathology,code:0
-msgid "Specific Code for the Disease (eg, ICD-10)"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.prescription.order:0
-#: field:oemedical.prescription.order,pharmacy:0
-#: field:res.partner,is_pharmacy:0
-msgid "Pharmacy"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.medication,is_active:0
-msgid "Check if the patient is currently taking the medication"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_hospital_building_view
-msgid "Hospital Building"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.pathology:0
-#: field:oemedical.pathology,category:0
-msgid "Main Category"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.appointment,doctor:0
-msgid "Physician's Name"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_drug_route
-msgid " Drug Route"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.medication.template,duration_period:0
-msgid "indefinite"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.prescription.line:0
-#: field:oemedical.prescription.line,allow_substitution:0
-msgid "Allow substitution"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.bed:0
-msgid "Oemedical Hospital Bed"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,glycemia:0
-msgid "Glycemia"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,number_of_beds:0
-msgid "Number of beds"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,object_recognition:0
-msgid ""
-"Check this box if the patient suffers from any sort of gnosia disorders, "
-"such as agnosia, prosopagnosia ..."
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.appointment,appointment_type:0
-#: selection:oemedical.patient.evaluation,evaluation_type:0
-msgid "Ambulatory"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.insurance:0
-#: field:oemedical.insurance,member_exp:0
-msgid "Expiration date"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.hospital.ward,gender:0
-msgid "Gender"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.family,name:0
-msgid "Family code within an operational sector"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,judgment:0
-msgid "Jugdment"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,bmi:0
-msgid "Body Mass Index"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.signs_and_symptoms:0
-#: field:oemedical.signs_and_symptoms,clinical_id:0
-msgid "Sign or Symptom"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_vaccination
-msgid "oemedical.vaccination"
-msgstr ""
-
-#. module: oemedical
-#: field:res.partner,is_school:0
-msgid "School"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medication.template,medicament:0
-msgid "Prescribed Medicament"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.physician:0
-#: field:oemedical.physician,health_professional:0
-msgid "Health Professional"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient,marital_status:0
-msgid "Divorced"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.medication.template,frequency_unit:0
-msgid "seconds"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,calculation_ability:0
-msgid "Calculation Ability"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,next_evaluation:0
-msgid "Next Appointment"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.medication,adverse_reaction:0
-msgid "Side effects or adverse reactions that the patient experienced"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,guest_sofa:0
-msgid "Guest sofa-bed"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.operational_area,name:0
-msgid "Operational Area of the city or region"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_pathology_view
-#: view:oemedical.diagnostic_hypothesis:0
-#: field:oemedical.diagnostic_hypothesis,pathology_id:0
-#: view:oemedical.secondary_condition:0
-#: field:oemedical.secondary_condition,pathology_id:0
-msgid "Pathology"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.prescription.line:0
-#: field:oemedical.prescription.line,short_comment:0
-msgid "Comment"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.hospital.bed,bed_type:0
-msgid "Stretcher"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,vocabulary:0
-msgid "Vocabulary"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,weight:0
-msgid "Weight"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.medication.template,duration_period:0
-msgid "months"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.occupation:0
-msgid "Oemedical Occupation"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,hip:0
-msgid "Hip circumference in centimeters, eg 100"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.appointment,urgency:0
-msgid "Urgency Level"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_insurance_plan_view
-msgid "Insurance Plan"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_operational_area_view
-#: view:oemedical.operational_sector:0
-#: field:oemedical.operational_sector,operational_area_id:0
-msgid "Operational Area"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.disease,status:0
-msgid "chronic"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.pathology.category:0
-#: field:oemedical.pathology.category,name:0
-msgid "Category Name"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.prescription.order:0
-msgid "Oemedical Prescription Order"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.medication:0
-#: field:oemedical.patient.medication,discontinued_reason:0
-msgid "Reason for discontinuation"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,tag:0
-msgid "Triacylglycerol(triglicerides) level. Can be approximative"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.disease,date_stop_treatment:0
-msgid "End of treatment date"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.appointment,urgency:0
-#: selection:oemedical.patient.evaluation,mood:0
-msgid "Normal"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_medication_dosage_view
-msgid "Medication Dosage"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_hospital_building
-msgid " Hospital Building"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.hospital.ward,name:0
-msgid "Ward / Room code"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,admin_times:0
-msgid "Admin hours"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_directions_view
-msgid "Directions"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_procedure
-msgid " Procedure"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_diagnostic_hypothesis
-msgid " Diagnostic Hypothesis"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.procedure:0
-msgid "Oemedical Procedure"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.pathology,groups:0
-msgid "Groups"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.hospital.ward,state:0
-msgid "Beds available"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.ui.menu,name:oemedical.oemedical_patient_medication
-msgid " Patient Medication"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_pathology_group_view
-msgid "Pathology Group"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_patient_medication
-msgid "oemedical.patient.medication"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_patient_evaluation
-msgid "oemedical.patient.evaluation"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,critical_info:0
-msgid "Important disease, allergy or procedures information"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.disease,age:0
-msgid "Patient age at the moment of the diagnosis. Can be estimative"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,private_bathroom:0
-msgid "Private Bathroom"
-msgstr ""
-
-#. module: oemedical
-#: help:res.partner,alias:0
-msgid "Common name that the Party is reffered"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.prescription.order:0
-#: field:oemedical.prescription.order,prescription_date:0
-msgid "Prescription Date"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.patient,partner_id:0
-msgid "Related Partner"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,is_allergy:0
-msgid "Allergic Disease"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient,partner_id:0
-msgid "Partner-related data of the patient"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.vaccination:0
-#: field:oemedical.vaccination,vaccine_lot:0
-msgid "Lot Number"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient:0
-#: field:oemedical.patient,general_info:0
-msgid "General Information"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.signs_and_symptoms,sign_or_symptom:0
-msgid "Symptom"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.pathology:0
-#: field:oemedical.pathology,chromosome:0
-msgid "Affected Chromosome"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medicament,pregnancy:0
-msgid "Warnings for Pregnant Women"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_insurance_view
-#: view:oemedical.patient:0
-#: field:oemedical.patient,current_insurance:0
-msgid "Insurance"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,memory:0
-msgid ""
-"Check this box if the patient has problems in short or long term memory"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_physician
-msgid "oemedical.physician"
-msgstr ""
-
-#. module: oemedical
-#: constraint:oemedical.medicament.category:0
-#: constraint:oemedical.pathology.category:0
-msgid ""
-"Error ! You cannot create recursive \n"
-"Category."
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_appointment
-msgid "oemedical.appointment"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.vaccination:0
-#: field:oemedical.vaccination,observations:0
-msgid "Observations"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.pathology,chromosome:0
-msgid "chromosome number"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,memory:0
-msgid "Memory"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.pathology.group:0
-#: field:oemedical.pathology.group,desc:0
-msgid "Short Description"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.medicament:0
-#: field:oemedical.medicament,presentation:0
-msgid "Presentation"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_family_member
-msgid "oemedical.family_member"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient,marital_status:0
-msgid "Single"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_verbal:0
-msgid "Oriented, converses normally"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_prescription_order
-msgid "oemedical.prescription.order"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.actions.act_window,name:oemedical.act_open_oemedical_medicament_view
-#: view:oemedical.medication.template:0
-#: field:oemedical.medication.template,medicament:0
-#: field:product.product,is_medicament:0
-msgid "Medicament"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.patient.evaluation,actions:0
-msgid "Procedures"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.hospital.ward,gender:0
-msgid "Women Ward"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.disease,doctor:0
-msgid "Physician who treated or diagnosed the patient"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient,blood_type:0
-msgid "AB"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.pathology.group:0
-msgid "Oemedical Pathology Group"
-msgstr ""
-
-#. module: oemedical
-#: field:oemedical.patient,photo:0
-msgid "Picture"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,knowledge_current_events:0
-msgid "Knowledge of Current Events"
-msgstr ""
-
-#. module: oemedical
-#: selection:oemedical.patient.evaluation,loc_motor:0
-msgid "Localizes painful stimuli"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_drug_form
-msgid "oemedical.drug.form"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.physician,specialty:0
-msgid "Specialty Code"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,malnutrition:0
-msgid "Malnutrition"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.evaluation:0
-#: field:oemedical.patient.evaluation,systolic:0
-msgid "Systolic Pressure"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.pathology.group,code:0
-msgid ""
-"for example MDG6 code will contain the Millennium Development Goals # 6 "
-"diseases : Tuberculosis, Malaria and HIV/AIDS"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.hospital.unit,name:0
-msgid "Name of the unit, eg Neonatal, Intensive Care, ..."
-msgstr ""
-
-#. module: oemedical
-#: field:res.partner,is_person:0
-msgid "Person"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.medication.template,frequency:0
-msgid ""
-"Time in between doses the patient must wait (ie, for 1 pill each 8 hours, "
-"put here 8 and select \"hours\" in the unit field"
-msgstr ""
-
-#. module: oemedical
-#: help:oemedical.patient.evaluation,judgment:0
-msgid ""
-"Check this box if the patient can not interpret basic scenario solutions"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-#: field:oemedical.hospital.ward,private:0
-#: selection:oemedical.insurance,insurance_type:0
-#: selection:res.partner,insurance_company_type:0
-msgid "Private"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.patient.disease:0
-#: field:oemedical.patient.disease,healed_date:0
-msgid "Healed"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.hospital.ward:0
-msgid "Oemedical Hospital Ward"
-msgstr ""
-
-#. module: oemedical
-#: view:oemedical.prescription.line:0
-msgid "Oemedical Prescription Line"
-msgstr ""
-
-#. module: oemedical
-#: model:ir.model,name:oemedical.model_oemedical_occupation
-msgid "oemedical.occupation"
-msgstr ""

=== renamed file 'oemedical/i18n/fr.po' => 'oemedical/i18n/fr.po.THIS'
=== renamed file 'oemedical/i18n/id.po' => 'oemedical/i18n/id.po.THIS'
=== renamed file 'oemedical/i18n/pl.po' => 'oemedical/i18n/pl.po.THIS'
=== renamed file 'oemedical/i18n/pt_BR.po' => 'oemedical/i18n/pt_BR.po.THIS'
=== renamed file 'oemedical/i18n/tr.po' => 'oemedical/i18n/tr.po.THIS'
=== added directory 'oemedical/models'
=== added file 'oemedical/models/__init__.py'
--- oemedical/models/__init__.py	1970-01-01 00:00:00 +0000
+++ oemedical/models/__init__.py	2013-11-25 05:38:52 +0000
@@ -0,0 +1,30 @@
+# -*- coding: utf-8 -*-
+##############################################################################
+#
+#    Tech-Receptives Solutions Pvt. Ltd.
+#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
+#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
+#
+#    This program is free software: you can redistribute it and/or modify
+#    it under the terms of the GNU Affero General Public License as
+#    published by the Free Software Foundation, either version 3 of the
+#    License, or (at your option) any later version.
+#
+#    This program is distributed in the hope that it will be useful,
+#    but WITHOUT ANY WARRANTY; without even the implied warranty of
+#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#    GNU Affero General Public License for more details.
+#
+#    You should have received a copy of the GNU Affero General Public License
+#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#
+##############################################################################
+
+import product_product
+import oemedical_physician
+import res_partner
+import oemedical_patient
+import oemedical_appointment
+import oemedical_specialty
+
+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== renamed file 'oemedical/oemedical_appointment/oemedical_appointment.py' => 'oemedical/models/oemedical_appointment.py'
--- oemedical/oemedical_appointment/oemedical_appointment.py	2013-09-09 22:50:51 +0000
+++ oemedical/models/oemedical_appointment.py	2013-11-25 05:38:52 +0000
@@ -19,67 +19,37 @@
 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 #/#############################################################################
-from osv import osv
-from osv import fields
+
 import time
-
-
-class OeMedicalAppointment(osv.Model):
+from datetime import datetime
+
+from openerp.osv import fields, orm
+from openerp.tools.translate import _
+
+from openerp.addons.oemedical.oemedical_constants import hours, minutes
+
+
+class OeMedicalAppointment(orm.Model):
     _name = 'oemedical.appointment'
 
     _columns = {
+        'user_id': fields.many2one('res.users', 'Responsible', readonly=True, states={'draft': [('readonly', False)]}),
         'patient_id': fields.many2one('oemedical.patient', string='Patient',
                                    required=True, select=True,
                                    help='Patient Name'),
         'name': fields.char(size=256, string='Appointment ID', readonly=True),
         'appointment_date': fields.datetime(string='Date and Time'),
         'appointment_day': fields.date(string='Date'),
-        'appointment_hour': fields.selection([
-            ('01', '01'),
-            ('02', '02'),
-            ('03', '03'),
-            ('04', '04'),
-            ('05', '05'),
-            ('06', '06'),
-            ('07', '07'),
-            ('08', '08'),
-            ('09', '09'),
-            ('10', '10'),
-            ('11', '11'),
-            ('12', '12'),
-            ('13', '13'),
-            ('14', '14'),
-            ('15', '15'),
-            ('16', '16'),
-            ('17', '17'),
-            ('18', '18'),
-            ('19', '19'),
-            ('20', '20'),
-            ('21', '21'),
-            ('22', '22'),
-            ('23', '23'),
-             ],
+        'appointment_hour': fields.selection(hours,
             string='Hour'),
-        'appointment_minute': fields.selection([
-            ('05', '05'),
-            ('10', '10'),
-            ('15', '15'),
-            ('20', '20'),
-            ('25', '25'),
-            ('30', '30'),
-            ('35', '35'),
-            ('40', '40'),
-            ('45', '45'),
-            ('50', '50'),
-            ('55', '55'),
-             ],
+        'appointment_minute': fields.selection(minutes,
             string='Minute'),
 
         'duration': fields.float('Duration'),
         'doctor': fields.many2one('oemedical.physician',
-                                  string='Physician',select=True, 
+                                  string='Physician', select=True,
                                   help='Physician\'s Name'),
-        'alias' : fields.char(size=256, string='Alias', ),
+        'alias': fields.char(size=256, string='Alias', ),
         'comments': fields.text(string='Comments'),
         'appointment_type': fields.selection([
             ('ambulatory', 'Ambulatory'),
@@ -88,19 +58,20 @@
         ], string='Type'),
         'institution': fields.many2one('res.partner',
                                        string='Health Center',
-                                       help='Medical Center'
-                                        , domain="[('category_id', '=', 'Doctor Office')]"),
+                                       help='Medical Center',
+                                       domain="[('is_institution', '=', True)]"),
+#        'institution': fields.related('user_id','parent_id', type='many2one', relation='res.partner', string='Institution', store=True, domain="[('is_institution', '=', True)]"), #, readonly=True
         'consultations': fields.many2one('product.product',
                                          string='Consultation Services',
-                                          help='Consultation Services'
-                                        , domain="[('type', '=', 'service'), ]"),
+                                         help='Consultation Services',
+                                         domain="[('type', '=', 'service'), ]"),
         'urgency': fields.selection([
             ('a', 'Normal'),
             ('b', 'Urgent'),
             ('c', 'Medical Emergency'), ],
             string='Urgency Level'),
         'speciality': fields.many2one('oemedical.specialty',
-                                      string='Specialty', 
+                                      string='Specialty',
                                       help='Medical Specialty / Sector'),
         'state': fields.selection([
             ('draft', 'Draft'),
@@ -111,24 +82,24 @@
             ('canceled', 'Canceled'),
              ],
             string='State'),
-        'history_ids' : fields.one2many('oemedical.appointment.history','appointment_id_history','History lines', states={'start':[('readonly',True)]}),
+        'history_ids': fields.one2many('oemedical.appointment.history', 'appointment_id_history', 'History lines', states={'start': [('readonly', True)]}),
 
     }
-    
+
     _defaults = {
-        'name': lambda obj, cr, uid, context: 
+        'name': lambda obj, cr, uid, context:
             obj.pool.get('ir.sequence').get(cr, uid, 'oemedical.appointment'),
         'duration': 30.00,
         'urgency': 'a',
         'state': 'draft',
-
+        'user_id': lambda s, cr, u, c: u,
                  }
 
     def create(self, cr, uid, vals, context=None):
         val_history = {}
         ait_obj = self.pool.get('oemedical.appointment.history')
-
-
+        date_time_str = vals['appointment_day'] + ' ' + vals['appointment_hour'] + ':' + vals['appointment_minute']
+        vals['appointment_date'] = datetime.strptime(date_time_str, '%Y-%m-%d %H:%M')
 
         val_history['name'] = uid
         val_history['date'] = time.strftime('%Y-%m-%d %H:%M:%S')
@@ -147,20 +118,20 @@
 
         for order in self.browse(cr, uid, ids, context=context):
             if order.state == 'confirm':
-                self.write(cr, uid, ids, {'state':'draft'} ,context=context)
+                self.write(cr, uid, ids, {'state': 'draft'}, context=context)
                 val_history['action'] = "--------------------------------  Changed to Draft  ------------------------------------\n"
             if order.state == 'waiting':
                 val_history['action'] = "--------------------------------  Changed to Confirm  ------------------------------------\n"
-                self.write(cr, uid, ids, {'state':'confirm'} ,context=context)
+                self.write(cr, uid, ids, {'state': 'confirm'}, context=context)
             if order.state == 'in_consultation':
                 val_history['action'] = "--------------------------------  Changed to Waiting  ------------------------------------\n"
-                self.write(cr, uid, ids, {'state':'waiting'} ,context=context)
+                self.write(cr, uid, ids, {'state': 'waiting'}, context=context)
             if order.state == 'done':
                 val_history['action'] = "--------------------------------  Changed to In Consultation  ------------------------------------\n"
-                self.write(cr, uid, ids, {'state':'in_consultation'} ,context=context)
+                self.write(cr, uid, ids, {'state': 'in_consultation'}, context=context)
             if order.state == 'canceled':
                 val_history['action'] = "--------------------------------  Changed to Draft  ------------------------------------\n"
-                self.write(cr, uid, ids, {'state':'draft'} ,context=context)
+                self.write(cr, uid, ids, {'state': 'draft'}, context=context)
 
         val_history['appointment_id_history'] = ids[0]
         val_history['name'] = uid
@@ -175,7 +146,7 @@
         val_history = {}
         ait_obj = self.pool.get('oemedical.appointment.history')
 
-        self.write(cr, uid, ids, {'state':'confirm'} ,context=context)
+        self.write(cr, uid, ids, {'state': 'confirm'}, context=context)
 
         val_history['appointment_id_history'] = ids[0]
         val_history['name'] = uid
@@ -190,7 +161,7 @@
         val_history = {}
         ait_obj = self.pool.get('oemedical.appointment.history')
 
-        self.write(cr, uid, ids, {'state':'waiting'} ,context=context)
+        self.write(cr, uid, ids, {'state': 'waiting'}, context=context)
 
         val_history['appointment_id_history'] = ids[0]
         val_history['name'] = uid
@@ -205,7 +176,7 @@
         val_history = {}
         ait_obj = self.pool.get('oemedical.appointment.history')
 
-        self.write(cr, uid, ids, {'state':'in_consultation'} ,context=context)
+        self.write(cr, uid, ids, {'state': 'in_consultation'}, context=context)
 
         val_history['appointment_id_history'] = ids[0]
         val_history['name'] = uid
@@ -220,7 +191,7 @@
         val_history = {}
         ait_obj = self.pool.get('oemedical.appointment.history')
 
-        self.write(cr, uid, ids, {'state':'done'} ,context=context)
+        self.write(cr, uid, ids, {'state': 'done'}, context=context)
 
         val_history['appointment_id_history'] = ids[0]
         val_history['name'] = uid
@@ -235,7 +206,7 @@
         val_history = {}
         ait_obj = self.pool.get('oemedical.appointment.history')
 
-        self.write(cr, uid, ids, {'state':'canceled'} ,context=context)
+        self.write(cr, uid, ids, {'state': 'canceled'}, context=context)
 
         val_history['appointment_id_history'] = ids[0]
         val_history['name'] = uid
@@ -245,19 +216,19 @@
 
         return True
 
-
 OeMedicalAppointment()
 
-class OeMedicalAppointment_history(osv.Model):
+
+class OeMedicalAppointment_history(orm.Model):
     _name = 'oemedical.appointment.history'
 
     _columns = {
-        'appointment_id_history' :  fields.many2one('oemedical.appointment','History', ondelete='cascade'),
+        'appointment_id_history': fields.many2one('oemedical.appointment', 'History', ondelete='cascade'),
         'date': fields.datetime(string='Date and Time'),
         'name': fields.many2one('res.users', string='User', help=''),
-	    'action' : fields.text('Action'),
+        'action': fields.text('Action'),
     }
-    
+
     _defaults = {
                  }
 

=== renamed file 'oemedical/oemedical_patient/oemedical_patient.py' => 'oemedical/models/oemedical_patient.py'
--- oemedical/oemedical_patient/oemedical_patient.py	2013-09-09 22:55:15 +0000
+++ oemedical/models/oemedical_patient.py	2013-11-25 05:38:52 +0000
@@ -19,31 +19,32 @@
 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 #/#############################################################################
-from osv import osv
-from osv import fields
+
+from openerp.osv import fields, orm, orm
+from openerp.tools.translate import _
+
 from dateutil.relativedelta import relativedelta
 from datetime import datetime
 
 
-class OeMedicalPatient(osv.Model):
-    _name='oemedical.patient'
-    _inherits={
-        'res.partner': 'partner_id',
-    }
-
-    def onchange_name(self, cr, uid, ids, first_name, lastname, slastname, context=None):
-        if first_name == False:
-            first_name = ''
-        if lastname == False:
-            lastname = ''
-        if slastname == False:
-            slastname = ''
-
-        res = {}
-        res = {'value': { 
-                        'name' : first_name + ' ' + lastname + ' ' + slastname
-                         } }
-        return res
+class oemedical_patient_med_center_rel(orm.Model):
+    _name = 'oemedical.patient.med.center.rel'
+    _rec_name = 'patient_id'
+    _columns = {
+        'patient_id': fields.many2one('oemedical.patient', 'Patient', required=True, select=1, ondelete='cascade'),
+        'medical_center_id': fields.many2one('res.partner', 'Medical Center', required=True, select=1, ondelete='cascade', domain="[('is_institution', '=', True)]"),
+        'identification_code': fields.char(size=256, string='ID', help='Patient Identifier provided by the Health Center.Is not the Social Security Number'),
+    }
+    _sql_constraints = [
+        ('uniq_patient_center', 'unique(patient_id, medical_center_id)', "You cannot have twice a medical center for a patient"),
+    ]
+
+
+class OeMedicalPatient(orm.Model):
+    _name = 'oemedical.patient'
+    _inherits = {
+        'res.users': 'user_id',
+    }
 
     def _get_age(self, cr, uid, ids, field_name, arg, context=None):
         res = {}
@@ -73,61 +74,35 @@
             res[record.id] = age
         return res
 
-
-    _columns={
-        'partner_id': fields.many2one(
-            'res.partner', 'Related Partner', required=True,
-            ondelete='cascade', help='Partner-related data of the patient'),
-        'first_name': fields.char(size=256, string='Name', required=True),
-        'lastname': fields.char(size=256, string='Lastname', required=True),    
-        'slastname': fields.char(size=256, string='Second Lastname',),
-        'family': fields.many2one('oemedical.family', string='Family', help='Family Code'),
-        'photo': fields.binary(string='Picture'),
+    _columns = {
+        'id': fields.integer('ID', readonly=True),
+        'user_id': fields.many2one(
+            'res.users', 'Related User', required=True,
+            ondelete='cascade', help='User-related data of the patient'),
         'sex': fields.selection([('m', 'Male'), ('f', 'Female'), ], string='Sex', required=True),
-        'blood_type': fields.selection([
-                                        ('A', 'A'), 
-                                        ('B', 'B'),
-                                        ('AB', 'AB'),
-                                        ('O', 'O'), ], string='Blood Type'),
-        'rh': fields.selection([
-                                        ('+', '+'), 
-                                        ('-', '-'), ], string='Rh'),
         'general_info': fields.text(string='General Information', help='General information about the patient'),
-        'primary_care_doctor': fields.many2one('oemedical.physician', 'Primary Care Doctor', help='Current primary care / family doctor'),
-        'childbearing_age': fields.boolean('Potential for Childbearing'),
-        'medications': fields.one2many('oemedical.patient.medication', 'patient_id', string='Medications',),
-        'evaluations': fields.one2many('oemedical.patient.evaluation', 'patient_id', string='Evaluations',),
-        'critical_info': fields.text( string='Important disease, allergy or procedures information', help='Write any important information on the patient\'s disease, surgeries, allergies, ...'),
-        'diseases': fields.one2many('oemedical.patient.disease', 'patient_id', string='Diseases', help='Mark if the patient has died'),
-        'ethnic_group': fields.many2one('oemedical.ethnicity', string='Ethnic group',),
-        'ssn': fields.char(size=256, string='SSN',),
-        'vaccinations': fields.one2many('oemedical.vaccination', 'patient_id', 'Vaccinations',),
         'dob': fields.date(string='DoB'),
+        'medical_center_ids': fields.one2many('oemedical.patient.med.center.rel', 'patient_id', 'Related Medical Centers', readonly=True),
         'age': fields.function(_get_age, type='char', string='Age', help="It shows the age of the patient in years(y), months(m) and days(d).\nIf the patient has died, the age shown is the age at time of death, the age corresponding to the date on the death certificate. It will show also \"deceased\" on the field", multi=False),
         'marital_status': fields.selection([('s', 'Single'), ('m', 'Married'),
                                             ('w', 'Widowed'),
                                             ('d', 'Divorced'),
                                             ('x', 'Separated'),
-                                            ('z', 'law marriage'),  
+                                            ('z', 'law marriage'),
                                             ],
                                            string='Marital Status', sort=False),
+        'deceased': fields.boolean(string='Deceased'),
         'dod': fields.datetime(string='Date of Death'),
-        'current_insurance': fields.many2one('oemedical.insurance', string='Insurance', help='Insurance information. You may choose from the different insurances belonging to the patient'),
-        'cod': fields.many2one('oemedical.pathology', string='Cause of Death',),
         'identification_code': fields.char(size=256, string='ID', help='Patient Identifier provided by the Health Center.Is not the Social Security Number'),
-        'deceased': fields.boolean(string='Deceased'),
+        'active': fields.boolean('Active', help="If unchecked, it will allow you to hide the patient without removing it."),
     }
-    
-    _defaults={
-         'ref': lambda obj, cr, uid, context: 
-                obj.pool.get('ir.sequence').get(cr, uid, 'oemedical.patient'),
-                 }
 
     def create(self, cr, uid, vals, context=None):
-        sequence = unicode (self.pool.get('ir.sequence').get(cr, uid, 'oemedical.patient'))
+        sequence = unicode(self.pool.get('ir.sequence').get(cr, uid, 'oemedical.patient'))
         vals['identification_code'] = sequence
+        vals['is_patient'] = True
+        vals['customer'] = True
         return super(OeMedicalPatient, self).create(cr, uid, vals, context=context)
-    
 
 OeMedicalPatient()
 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== renamed file 'oemedical/oemedical_physician/oemedical_physician.py' => 'oemedical/models/oemedical_physician.py'
--- oemedical/oemedical_physician/oemedical_physician.py	2013-09-09 22:50:51 +0000
+++ oemedical/models/oemedical_physician.py	2013-11-25 05:38:52 +0000
@@ -19,28 +19,78 @@
 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 #/#############################################################################
-from osv import osv
-from osv import fields
-
-
-class OeMedicalPhysician(osv.Model):
+
+from openerp.osv import fields, orm
+from openerp.tools.translate import _
+
+from openerp.addons.oemedical.oemedical_constants import days, hours, minutes
+
+
+class oemedical_physician_schedule_template(orm.Model):
+    _name = 'oemedical.physician.schedule.template'
+    _columns = {
+        'physician_id': fields.many2one('oemedical.physician', 'Physician', required=True, select=1, ondelete='cascade'),
+        'day': fields.selection(days,
+                                string='Day', sort=False),
+        'start_hour': fields.selection(hours,
+            string='Hour'),
+        'start_minute': fields.selection(minutes,
+            string='Minute'),
+        'end_hour': fields.selection(hours,
+            string='Hour'),
+        'end_minute': fields.selection(minutes,
+            string='Minute'),
+        'duration': fields.selection(minutes,
+            string='Duration'),
+    }
+
+
+class OeMedicalPhysician(orm.Model):
     _name = 'oemedical.physician'
-
-    def _get_name(self, cr, uid, ids, field_name, arg, context=None):
-        res = {}
-        for record in self.browse(cr, uid, ids, context=context):
-            res[record.id] = record.physician_id.name
-        return res
-
-
+    _inherits = {
+        'res.users': 'user_id',
+    }
     _columns = {
-        'physician_id': fields.many2one('res.partner', string='Health Professional',required=True , help='Physician' ,domain=[('category_id', '=', 'Physician')]  ),
+        'id': fields.integer('ID', readonly=True),
+        'user_id': fields.many2one(
+            'res.users', 'Related User', required=True,
+            ondelete='cascade', help='User-related data of the physician'),
         'code': fields.char(size=256, string='ID'),
-        'name': fields.function(_get_name, type='char', string='Health Professional', help="", multi=False),
-        'specialty': fields.many2one('oemedical.specialty', string='Specialty',required=True, help='Specialty Code'),
-        'institution': fields.many2one('res.partner', string='Institution', help='Instituion where she/he works' ),
+        'specialty': fields.many2one('oemedical.specialty', string='Specialty', required=True, help='Specialty Code'),
         'info': fields.text(string='Extra info'),
+        'active': fields.boolean('Active', help="If unchecked, it will allow you to hide the physician without removing it."),
+        'schedule_template_ids': fields.one2many('oemedical.physician.schedule.template', 'physician_id', 'Related schedules'),
     }
 
-OeMedicalPhysician()
+    def create(self, cr, uid, vals, context=None):
+        vals['is_doctor'] = True
+        vals['supplier'] = True
+        return super(OeMedicalPhysician, self).create(cr, uid, vals, context=context)
+
+    def action_update_schedule(self, cr, uid, ids, context=None):
+
+        schedule_template_proxy = self.pool.get('oemedical.physician.schedule.template')
+
+        this = self.browse(cr, uid, ids)[0]
+        defined_templates = len(this.schedule_template_ids)
+
+        #check for overlapping ranges
+        for i in range(defined_templates):
+            day_1 = this.schedule_template_ids[i].day
+            start_time_1 = this.schedule_template_ids[i].start_hour * 60 + this.schedule_template_ids[i].start_minute
+            end_time_1 = this.schedule_template_ids[i].end_hour * 60 + this.schedule_template_ids[i].end_minute
+
+            for j in range(i + 1, defined_templates):
+                day_2 = this.schedule_template_ids[j].day
+                start_time_2 = this.schedule_template_ids[j].start_hour * 60 + this.schedule_template_ids[j].start_minute
+                end_time_2 = this.schedule_template_ids[j].end_hour * 60 + this.schedule_template_ids[j].end_minute
+                if day_1 == day_2 and \
+                    start_time_1 < end_time_2 and \
+                    end_time_1 > start_time_2:
+                    # overlaped ranges
+                    raise orm.except_orm(_('Error!'), _('Overlapped ranges for day "%s" ') % (days[day_1][1]))
+        #create
+
+        return True
+
 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== renamed file 'oemedical/oemedical_specialty/oemedical_specialty.py' => 'oemedical/models/oemedical_specialty.py'
--- oemedical/oemedical_specialty/oemedical_specialty.py	2013-09-09 22:50:51 +0000
+++ oemedical/models/oemedical_specialty.py	2013-11-25 05:38:52 +0000
@@ -19,11 +19,12 @@
 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 #/#############################################################################
-from osv import osv
-from osv import fields
-
-
-class OeMedicalSpecialty(osv.Model):
+
+from openerp.osv import fields, orm
+from openerp.tools.translate import _
+
+
+class OeMedicalSpecialty(orm.Model):
     _name = 'oemedical.specialty'
 
     _columns = {

=== renamed file 'oemedical/product_product/product_product.py' => 'oemedical/models/product_product.py'
--- oemedical/product_product/product_product.py	2013-09-09 22:50:51 +0000
+++ oemedical/models/product_product.py	2013-11-25 05:38:52 +0000
@@ -19,19 +19,20 @@
 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 #/#############################################################################
-from osv import osv
-from osv import fields
-
-
-class ProductProduct(osv.Model):
+
+from openerp.osv import fields, orm
+from openerp.tools.translate import _
+
+
+class ProductProduct(orm.Model):
     _inherit = 'product.product'
 
     _columns = {
         'is_medicament': fields.boolean(string='Medicament', help='Check if the product is a medicament'),
         'is_bed': fields.boolean(string='Bed', help='Check if the product is a bed on the gnuhealth.center'),
         'is_vaccine': fields.boolean(string='Vaccine', help='Check if the product is a vaccine'),
-        'is_medical_supply' : fields.boolean(string='Medical Supply', help='Check if the product is a medical supply'),
-        'is_insurance_plan' : fields.boolean(string='Insurance Plan', help='Check if the product is an insurance plan'),
+        'is_medical_supply': fields.boolean(string='Medical Supply', help='Check if the product is a medical supply'),
+        'is_insurance_plan': fields.boolean(string='Insurance Plan', help='Check if the product is an insurance plan'),
     }
 
 ProductProduct()

=== renamed file 'oemedical/res_partner/res_partner.py' => 'oemedical/models/res_partner.py'
--- oemedical/res_partner/res_partner.py	2013-09-09 22:50:51 +0000
+++ oemedical/models/res_partner.py	2013-11-25 05:38:52 +0000
@@ -19,51 +19,53 @@
 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 #/#############################################################################
-from osv import osv
-from osv import fields
-
-
-class ResPartner(osv.Model):
+
+from openerp.osv import fields, orm
+from openerp.tools.translate import _
+
+
+class ResPartner(orm.Model):
     _inherit = 'res.partner'
 
     _columns = {
         #'insurance_plan_ids': fields.one2many('oemedical.insurance.plan',
         #                                       'relation_id',
         #                                       string='Insurance Plans', ),
-        'is_insurance_company': fields.boolean(string='Insurance Company', 
+        'is_insurance_company': fields.boolean(string='Insurance Company',
                             help='Check if the party is an Insurance Company'),
         'relationship': fields.char(size=256, string='Relationship'),
         'insurance_company_type': fields.selection([
             ('state', 'State'),
             ('labour_union', 'Labour Union / Syndical'),
             ('private', 'Private'), ],
-            string='Insurance Type',select=True),
-        'is_institution': fields.boolean(string='Institution', 
+            string='Insurance Type', select=True),
+        'is_institution': fields.boolean(string='Institution',
                                 help='Check if the party is a Medical Center'),
         'relative_id': fields.many2one('res.partner', string='Contact', ),
-        'is_doctor': fields.boolean(string='Health Prof', 
+        'is_doctor': fields.boolean(string='Health Prof',
                             help='Check if the party is a health professional'),
-        'is_patient': fields.boolean(string='Patient', 
+        'is_patient': fields.boolean(string='Patient',
                                      help='Check if the party is a patient'),
-        'alias': fields.char(size=256, string='Alias', 
+        'alias': fields.char(size=256, string='Alias',
                              help='Common name that the Party is reffered'),
-        'internal_user': fields.many2one('res.users', string='Internal User', 
-        help='In GNU Health is the user (doctor, nurse) that logins.When the'\
-        ' party is a doctor or a health professional, it will be the user'\
+        'internal_user': fields.many2one('res.users', string='Internal User',
+        help='In GNU Health is the user (doctor, nurse) that logins.When the' \
+        ' party is a doctor or a health professional, it will be the user' \
         ' that maps the doctor\'s party name. It must be present.'),
-        'activation_date': fields.date(string='Activation date', 
+        'activation_date': fields.date(string='Activation date',
                                        help='Date of activation of the party'),
         'lastname': fields.char(size=256, string='Last Name', help='Last Name'),
         'is_work': fields.boolean(string='Work'),
-        'is_person': fields.boolean(string='Person', 
+        'is_person': fields.boolean(string='Person',
                                     help='Check if the party is a person.'),
         'is_school': fields.boolean(string='School'),
-        'is_pharmacy': fields.boolean(string='Pharmacy', 
+        'is_pharmacy': fields.boolean(string='Pharmacy',
                                       help='Check if the party is a Pharmacy'),
-        'ref': fields.char(size=256, string='SSN', 
+        'ref': fields.char(size=256, string='ID/SSN',
                            help='Patient Social Security Number or equivalent'),
         #'insurance': fields.one2many('oemedical.insurance', 'relation_id',
         #                               string='Insurance', ),
+        'patient_ids': fields.one2many('oemedical.patient.med.center.rel', 'medical_center_id', 'Related Patients'),
     }
 
 ResPartner()

=== removed directory 'oemedical/oemedical_appointment'
=== removed file 'oemedical/oemedical_appointment/__init__.py'
--- oemedical/oemedical_appointment/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_appointment/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_appointment
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== added file 'oemedical/oemedical_constants.py'
--- oemedical/oemedical_constants.py	1970-01-01 00:00:00 +0000
+++ oemedical/oemedical_constants.py	2013-11-25 05:38:52 +0000
@@ -0,0 +1,80 @@
+# -*- coding: utf-8 -*-
+##############################################################################
+#
+#    Tech-Receptives Solutions Pvt. Ltd.
+#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
+#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
+#
+#    This program is free software: you can redistribute it and/or modify
+#    it under the terms of the GNU Affero General Public License as
+#    published by the Free Software Foundation, either version 3 of the
+#    License, or (at your option) any later version.
+#
+#    This program is distributed in the hope that it will be useful,
+#    but WITHOUT ANY WARRANTY; without even the implied warranty of
+#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#    GNU Affero General Public License for more details.
+#
+#    You should have received a copy of the GNU Affero General Public License
+#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#
+##############################################################################
+
+months = {
+    1: "January", 2: "February", 3: "March", 4: "April", \
+    5: "May", 6: "June", 7: "July", 8: "August", 9: "September", \
+    10: "October", 11: "November", 12: "December"
+}
+
+days = [(1, 'Monday'),
+        (2, 'Tuesday'),
+        (3, 'Wednesday'),
+        (4, 'Thursday'),
+        (5, 'Friday'),
+        (6, 'Saturday'),
+        (7, 'Sunday'),
+]
+
+hours = [
+            ('0', '00'),
+            ('1', '01'),
+            ('2', '02'),
+            ('3', '03'),
+            ('4', '04'),
+            ('5', '05'),
+            ('6', '06'),
+            ('7', '07'),
+            ('8', '08'),
+            ('9', '09'),
+            ('10', '10'),
+            ('11', '11'),
+            ('12', '12'),
+            ('13', '13'),
+            ('14', '14'),
+            ('15', '15'),
+            ('16', '16'),
+            ('17', '17'),
+            ('18', '18'),
+            ('19', '19'),
+            ('20', '20'),
+            ('21', '21'),
+            ('22', '22'),
+            ('23', '23'),
+]
+
+minutes = [
+            ('0', '00'),
+            ('5', '05'),
+            ('10', '10'),
+            ('15', '15'),
+            ('20', '20'),
+            ('25', '25'),
+            ('30', '30'),
+            ('35', '35'),
+            ('40', '40'),
+            ('45', '45'),
+            ('50', '50'),
+            ('55', '55'),
+]
+
+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/oemedical_diagnostic_hypothesis'
=== removed file 'oemedical/oemedical_diagnostic_hypothesis/__init__.py'
--- oemedical/oemedical_diagnostic_hypothesis/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_diagnostic_hypothesis/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_diagnostic_hypothesis
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/oemedical_directions'
=== removed file 'oemedical/oemedical_directions/__init__.py'
--- oemedical/oemedical_directions/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_directions/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_directions
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/oemedical_disease_group_members'
=== removed file 'oemedical/oemedical_disease_group_members/__init__.py'
--- oemedical/oemedical_disease_group_members/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_disease_group_members/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_disease_group_members
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/oemedical_drug_form'
=== removed file 'oemedical/oemedical_drug_form/__init__.py'
--- oemedical/oemedical_drug_form/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_drug_form/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_drug_form
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/oemedical_drug_route'
=== removed file 'oemedical/oemedical_drug_route/__init__.py'
--- oemedical/oemedical_drug_route/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_drug_route/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_drug_route
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/oemedical_ethnicity'
=== removed file 'oemedical/oemedical_ethnicity/__init__.py'
--- oemedical/oemedical_ethnicity/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_ethnicity/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_ethnicity
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/oemedical_family'
=== removed file 'oemedical/oemedical_family/__init__.py'
--- oemedical/oemedical_family/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_family/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_family
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/oemedical_family_member'
=== removed file 'oemedical/oemedical_family_member/__init__.py'
--- oemedical/oemedical_family_member/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_family_member/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_family_member
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/oemedical_genetics'
=== removed file 'oemedical/oemedical_genetics/__init__.py'
--- oemedical/oemedical_genetics/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_genetics/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_disease_gene
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/oemedical_genetics/data'
=== removed directory 'oemedical/oemedical_gynecology_and_obstetrics'
=== removed file 'oemedical/oemedical_gynecology_and_obstetrics/__init__.py'
--- oemedical/oemedical_gynecology_and_obstetrics/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_gynecology_and_obstetrics/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_gynecology_and_obstetrics
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/oemedical_hospital_bed'
=== removed file 'oemedical/oemedical_hospital_bed/__init__.py'
--- oemedical/oemedical_hospital_bed/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_hospital_bed/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_hospital_bed
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/oemedical_hospital_building'
=== removed file 'oemedical/oemedical_hospital_building/__init__.py'
--- oemedical/oemedical_hospital_building/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_hospital_building/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_hospital_building
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/oemedical_hospital_or'
=== removed file 'oemedical/oemedical_hospital_or/__init__.py'
--- oemedical/oemedical_hospital_or/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_hospital_or/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_hospital_or
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/oemedical_hospital_unit'
=== removed file 'oemedical/oemedical_hospital_unit/__init__.py'
--- oemedical/oemedical_hospital_unit/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_hospital_unit/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_hospital_unit
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/oemedical_hospital_ward'
=== removed file 'oemedical/oemedical_hospital_ward/__init__.py'
--- oemedical/oemedical_hospital_ward/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_hospital_ward/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_hospital_ward
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/oemedical_icu'
=== removed file 'oemedical/oemedical_icu/__init__.py'
=== removed file 'oemedical/oemedical_icu/__openerp__.py'
=== removed directory 'oemedical/oemedical_insurance'
=== removed file 'oemedical/oemedical_insurance/__init__.py'
--- oemedical/oemedical_insurance/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_insurance/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_insurance
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/oemedical_insurance_plan'
=== removed file 'oemedical/oemedical_insurance_plan/__init__.py'
--- oemedical/oemedical_insurance_plan/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_insurance_plan/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_insurance_plan
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed file 'oemedical/oemedical_invoice/__init__.py'
--- oemedical/oemedical_invoice/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_invoice/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,26 +0,0 @@
-# -*- coding: utf-8 -*-
-##############################################################################
-#
-#    OpenERP, Open Source Management Solution
-#    Copyright (C) 2010  Adrián Bernardi, Mario Puntin
-#    $Id$
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU General Public License for more details.
-#
-#    You should have received a copy of the GNU General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-##############################################################################
-
-import medical_invoice
-import wizard
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
-

=== removed file 'oemedical/oemedical_invoice/__openerp__.py'
--- oemedical/oemedical_invoice/__openerp__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_invoice/__openerp__.py	1970-01-01 00:00:00 +0000
@@ -1,44 +0,0 @@
-# -*- coding: utf-8 -*-
-##############################################################################
-#
-#    OpenERP, Open Source Management Solution
-#    Copyright (C) 2010  Adrián Bernardi, Mario Puntin
-#    $Id$
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU General Public License for more details.
-#
-#    You should have received a copy of the GNU General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-##############################################################################
-
-{
-    "name" : "Medical Invoice",
-    "version" : "0.1",
-    "author" : "Silix",
-    "description" : """ 
-        This module add functionality to create invoices for doctor's consulting charge.
-
-        Features:
-        -Invoice of multiple appointments at a time.
-        """,
-    "website" : "http://www.silix.com.ar";,
-    "depends" : ["medical","medical_lab"],
-    "category" : "Generic Modules/Others",
-    "init_xml" : [],
-    "demo_xml" : [],
-    "update_xml" : [
-        "medical_invoice_view.xml","wizard/appointment_invoice.xml","wizard/prescription_invoice.xml","wizard/create_lab_invoice.xml"           
-    ],
-    'installable': True,
-    'active': False,
-}
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== renamed file 'oemedical/oemedical_invoice/i18n/de.po' => 'oemedical/oemedical_invoice/i18n/de.po.THIS'
=== renamed file 'oemedical/oemedical_invoice/i18n/es.po' => 'oemedical/oemedical_invoice/i18n/es.po.THIS'
=== removed file 'oemedical/oemedical_invoice/i18n/es_AR.po'
--- oemedical/oemedical_invoice/i18n/es_AR.po	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_invoice/i18n/es_AR.po	1970-01-01 00:00:00 +0000
@@ -1,368 +0,0 @@
-# Translation of OpenERP Server.
-# This file contains the translation of the following modules:
-# 
-msgid ""
-msgstr ""
-"Project-Id-Version: Medical\n"
-"Report-Msgid-Bugs-To: https://sourceforge.net/apps/mantisbt/medical\n";
-"POT-Creation-Date: 2010-12-05 21:57:25+0000\n"
-"PO-Revision-Date: 2011-02-05 18:18+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: Spanish (Argentinian) <>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Language: es_AR\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
-
-#. module: medical_invoice
-#: field:medical.patient,receivable:0
-msgid "Receivable"
-msgstr "A cobrar"
-
-#. module: medical_invoice
-#: model:ir.model,name:medical_invoice.model_medical_prescription_order
-msgid "prescription order"
-msgstr "Receta"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "The prescription is invoice exempt"
-msgstr "La receta está exenta"
-
-#. module: medical_invoice
-#: constraint:ir.model:0
-msgid "The Object name must start with x_ and not contain any special character !"
-msgstr "El nombre del Objeto debe empezar con x_ y no puede contener caracteres especiales."
-
-#. module: medical_invoice
-#: constraint:ir.actions.act_window:0
-msgid "Invalid model name in the action definition."
-msgstr "Nombre de modelo inválido en la definición de la acción"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_create_lab_invoice.py:0
-#, python-format
-msgid "At least one of the selected lab tests is already invoiced"
-msgstr "Al menos una de las pruebas de laboratorio seleccionadas ya ha sido facturada"
-
-#. module: medical_invoice
-#: view:medical.appointment.invoice:0
-msgid "Create invoices"
-msgstr "Crear facturas"
-
-#. module: medical_invoice
-#: view:medical.lab.test.invoice:0
-msgid "Create Lab Invoices"
-msgstr "Crear facturas de laboratorio"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "Prescription already invoiced"
-msgstr "Receta ya facturada"
-
-#. module: medical_invoice
-#: model:ir.module.module,shortdesc:medical_invoice.module_meta_information
-msgid "Medical Invoice"
-msgstr "Medical - Facturación"
-
-#. module: medical_invoice
-#: model:ir.model,name:medical_invoice.model_medical_appointment
-msgid "medical.appointment"
-msgstr "medical.appointment"
-
-#. module: medical_invoice
-#: model:ir.model,name:medical_invoice.model_medical_appointment_invoice
-msgid "medical.appointment.invoice"
-msgstr "medical.appointment.invoice"
-
-#. module: medical_invoice
-#: model:ir.actions.act_window,name:medical_invoice.action_create_appointment_invoice
-msgid "Create Invoice"
-msgstr "Crear factura"
-
-#. module: medical_invoice
-#: field:medical.appointment,no_invoice:0
-#: field:medical.patient.lab.test,no_invoice:0
-#: field:medical.prescription.order,no_invoice:0
-msgid "Invoice exempt"
-msgstr "Exento"
-
-#. module: medical_invoice
-#: constraint:ir.ui.menu:0
-msgid "Error ! You can not create recursive Menu."
-msgstr "¡Error! No puede crear un Menú recursivo"
-
-#. module: medical_invoice
-#: field:medical.patient.lab.test,invoice_status:0
-#: field:medical.prescription.order,invoice_status:0
-msgid "Invoice Status"
-msgstr "Estado de la facturación"
-
-#. module: medical_invoice
-#: model:ir.actions.act_window,name:medical_invoice.medical_action_tobeinvoiced_prescription
-#: model:ir.ui.menu,name:medical_invoice.medical_tobeinvoiced_prescription
-msgid "Prescriptions to be invoiced"
-msgstr "Recetas a ser facturadas"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "At least one of the selected prescriptions can not be invoiced"
-msgstr "Al menos una de las recetas seleccionadas ya ha sido facturada"
-
-#. module: medical_invoice
-#: model:ir.actions.act_window,name:medical_invoice.medical_action_today_tobeinvoiced_labtest_request
-#: model:ir.ui.menu,name:medical_invoice.medical_today_tobeinvoiced_labtest_request
-msgid "Today's Lab Requests to be invoiced"
-msgstr "Solicitudes de Laboratorio de Hoy a facturar"
-
-#. module: medical_invoice
-#: selection:medical.appointment,validity_status:0
-#: selection:medical.patient.lab.test,invoice_status:0
-#: selection:medical.prescription.order,invoice_status:0
-msgid "To be Invoiced"
-msgstr "A facturar"
-
-#. module: medical_invoice
-#: field:medical.appointment,validity_status:0
-msgid "Status"
-msgstr "Estado"
-
-#. module: medical_invoice
-#: view:medical.appointment.invoice:0
-msgid "Do you want to create the invoice(s) ?"
-msgstr "¿Desea crear la/s facturas/s?"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_create_lab_invoice.py:0
-#, python-format
-msgid "You can not invoice this lab test"
-msgstr "No es posible facturar esta prueba de laboratorio"
-
-#. module: medical_invoice
-#: model:ir.model,name:medical_invoice.model_medical_prescription_invoice
-msgid "medical.prescription.invoice"
-msgstr "medical.prescription.invoice"
-
-#. module: medical_invoice
-#: model:ir.module.module,description:medical_invoice.module_meta_information
-msgid ""
-" \n"
-"        This module add functionality to create invoices for doctor's consulting charge.\n"
-"\n"
-"        Features:\n"
-"        -Invoice of multiple appointments at a time.\n"
-"        "
-msgstr ""
-" \n"
-"        Este módulo agrega la funcionalidad para facturar consultas médicas.\n"
-"\n"
-"        Características:\n"
-"        -Facturación de múltiples consultas médicas a la vez.\n"
-"        "
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#, python-format
-msgid "The appointment is invoice exempt"
-msgstr "La consulta médica está exenta"
-
-#. module: medical_invoice
-#: field:medical.appointment,consultations:0
-msgid "Consultation Service"
-msgstr "Servicio de consulta"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#, python-format
-msgid "You can not invoice this appointment"
-msgstr "No se puede facturar esta cita"
-
-#. module: medical_invoice
-#: model:ir.ui.menu,name:medical_invoice.medical_invoice_menu
-msgid "Invoices"
-msgstr "Facturas"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "At least one of the selected prescriptions is already invoiced"
-msgstr "Al menos una de las recetas seleccionadas ya está facturada"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#, python-format
-msgid "Appointment already invoiced"
-msgstr "La cita ya fue facturada"
-
-#. module: medical_invoice
-#: model:ir.model,name:medical_invoice.model_medical_lab_test_invoice
-msgid "medical.lab.test.invoice"
-msgstr "medical.lab.test.invoice"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "You need to have at least one prescription item in your invoice"
-msgstr "Debe haber al menos un item en la receta a ser facturada"
-
-#. module: medical_invoice
-#: model:ir.actions.act_window,name:medical_invoice.action_create_lab_invoice
-#: view:medical.lab.test.invoice:0
-msgid "Create Lab Invoice"
-msgstr "Crear factura de laboratorio"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_create_lab_invoice.py:0
-#, python-format
-msgid "When multiple lab tests are selected, patient must be the same"
-msgstr "Cuando se seleccionan múltiples pruebas de laboratorio, el paciente debe ser el mismo"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#: code:addons/medical_invoice/wizard/wizard_create_lab_invoice.py:0
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "UserError"
-msgstr "Error de usuario"
-
-#. module: medical_invoice
-#: constraint:ir.ui.view:0
-msgid "Invalid XML for View Architecture!"
-msgstr "XML inválido para la Vista"
-
-#. module: medical_invoice
-#: view:medical.lab.test.invoice:0
-msgid "Do you want to generate the invoice(s) ?"
-msgstr "¿Desea generar la/s factura/s?"
-
-#. module: medical_invoice
-#: view:medical.prescription.order:0
-msgid "Prescription"
-msgstr "Receta"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "When multiple prescriptions are selected, patient must be the same"
-msgstr "Cuando se seleccionan múltiples recetas, el paciente debe ser el mismo"
-
-#. module: medical_invoice
-#: model:ir.model,name:medical_invoice.model_medical_patient
-msgid "Patient related information"
-msgstr "Información relacionada con el paciente"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#, python-format
-msgid "No consultation service is connected with the selected appointments"
-msgstr "Ningún servicio de consulta está relacionado con las citas seleccionadas"
-
-#. module: medical_invoice
-#: field:medical.appointment,appointment_validity_date:0
-msgid "Validity Date"
-msgstr "Fecha de validez"
-
-#. module: medical_invoice
-#: help:medical.appointment,consultations:0
-msgid "Consultation Services"
-msgstr "Servicios de consulta"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_create_lab_invoice.py:0
-#, python-format
-msgid "Lab test already invoiced"
-msgstr "Prueba de laboratorio ya facturada"
-
-#. module: medical_invoice
-#: model:ir.actions.act_window,name:medical_invoice.medical_action_tobeinvoiced_appointment
-#: model:ir.ui.menu,name:medical_invoice.medical_tobeinvoiced_appointment
-msgid "Appointments to be invoiced"
-msgstr "Citas a facturar"
-
-#. module: medical_invoice
-#: help:medical.patient,receivable:0
-msgid "Total amount this patient owes you"
-msgstr "Monto adeudado por el paciente"
-
-#. module: medical_invoice
-#: model:ir.model,name:medical_invoice.model_medical_patient_lab_test
-msgid "medical.patient.lab.test"
-msgstr "medical.patient.lab.test"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#, python-format
-msgid "At least one of the selected appointments can not be invoiced"
-msgstr "Al menos una de las citas seleccionadas no puede ser facturada"
-
-#. module: medical_invoice
-#: view:medical.prescription.invoice:0
-msgid "Create Prescription Invoices"
-msgstr "Crear facturas de las recetas"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_create_lab_invoice.py:0
-#, python-format
-msgid "At least one of the selected lab tests can not be invoiced"
-msgstr "Al menos una de las pruebas de laboratorio seleccionadas no puede ser facturada"
-
-#. module: medical_invoice
-#: view:medical.appointment.invoice:0
-msgid "Create Invoices"
-msgstr "Crear facturas"
-
-#. module: medical_invoice
-#: view:medical.prescription.invoice:0
-msgid "Create prescription invoices"
-msgstr "Crear facturas de las recetas"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#, python-format
-msgid "When multiple appointments are selected, patient must be the same"
-msgstr "Cuando se seleccionan varias citas, el paciente debe ser el mismo en todas ellas"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "You can not invoice this prescription"
-msgstr "No es posible facturar esta receta"
-
-#. module: medical_invoice
-#: model:ir.actions.act_window,name:medical_invoice.medical_action_tobeinvoiced_labtest_request
-#: model:ir.ui.menu,name:medical_invoice.medical_tobeinvoiced_labtest_request
-msgid "Lab Requests to be invoiced"
-msgstr "Solicitudes a laboratorio a ser facturadas"
-
-#. module: medical_invoice
-#: model:ir.actions.act_window,name:medical_invoice.action_create_prescription_invoice
-msgid "Create Prescription Invoice"
-msgstr "Crear factura de receta"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#, python-format
-msgid "At least one of the selected appointments is already invoiced"
-msgstr "Al menos una de las citas seleccionadas ya fue facturada"
-
-#. module: medical_invoice
-#: view:medical.appointment.invoice:0 view:medical.lab.test.invoice:0
-#: view:medical.prescription.invoice:0
-msgid "Cancel"
-msgstr "Cancelar"
-
-#. module: medical_invoice
-#: view:medical.prescription.invoice:0
-msgid "Do you want to create the prescription invoice(s) ?"
-msgstr "¿Desea crear la/s factura/s de la receta?"
-
-#. module: medical_invoice
-#: selection:medical.appointment,validity_status:0
-#: selection:medical.patient.lab.test,invoice_status:0
-#: selection:medical.prescription.order,invoice_status:0
-msgid "Invoiced"
-msgstr "Facturado"

=== removed file 'oemedical/oemedical_invoice/i18n/es_HN.po'
--- oemedical/oemedical_invoice/i18n/es_HN.po	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_invoice/i18n/es_HN.po	1970-01-01 00:00:00 +0000
@@ -1,366 +0,0 @@
-# Translation of OpenERP Server.
-# This file contains the translation of the following modules:
-# 
-msgid ""
-msgstr ""
-"Project-Id-Version: Medical\n"
-"Report-Msgid-Bugs-To: https://sourceforge.net/apps/mantisbt/medical\n";
-"POT-Creation-Date: 2010-12-05 21:57:25+0000\n"
-"PO-Revision-Date: 2011-02-05 18:20+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: Spanish (Castilian) <>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
-
-#. module: medical_invoice
-#: field:medical.patient,receivable:0
-msgid "Receivable"
-msgstr "A cobrar"
-
-#. module: medical_invoice
-#: model:ir.model,name:medical_invoice.model_medical_prescription_order
-msgid "prescription order"
-msgstr "receta"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "The prescription is invoice exempt"
-msgstr "La receta es exenta de factura"
-
-#. module: medical_invoice
-#: constraint:ir.model:0
-msgid "The Object name must start with x_ and not contain any special character !"
-msgstr "El nombre del objeto debe empezar con x_ y no contener ningún carácter especial!"
-
-#. module: medical_invoice
-#: constraint:ir.actions.act_window:0
-msgid "Invalid model name in the action definition."
-msgstr "Nombre del modelo no vaĺido en la definición de acción."
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_create_lab_invoice.py:0
-#, python-format
-msgid "At least one of the selected lab tests is already invoiced"
-msgstr "Al menos una de las pruebas de laboratorio seleccionada ya está facturada"
-
-#. module: medical_invoice
-#: view:medical.appointment.invoice:0
-msgid "Create invoices"
-msgstr "Crear facturas"
-
-#. module: medical_invoice
-#: view:medical.lab.test.invoice:0
-msgid "Create Lab Invoices"
-msgstr "Crear facturas de laboratorio"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "Prescription already invoiced"
-msgstr "Receta ya facturada"
-
-#. module: medical_invoice
-#: model:ir.module.module,shortdesc:medical_invoice.module_meta_information
-msgid "Medical Invoice"
-msgstr "Medical Invoice"
-
-#. module: medical_invoice
-#: model:ir.model,name:medical_invoice.model_medical_appointment
-msgid "medical.appointment"
-msgstr "medical.appointment"
-
-#. module: medical_invoice
-#: model:ir.model,name:medical_invoice.model_medical_appointment_invoice
-msgid "medical.appointment.invoice"
-msgstr "medical.appointment.invoice"
-
-#. module: medical_invoice
-#: model:ir.actions.act_window,name:medical_invoice.action_create_appointment_invoice
-msgid "Create Invoice"
-msgstr "Crear factura"
-
-#. module: medical_invoice
-#: field:medical.appointment,no_invoice:0
-#: field:medical.patient.lab.test,no_invoice:0
-#: field:medical.prescription.order,no_invoice:0
-msgid "Invoice exempt"
-msgstr "Exento de factura "
-
-#. module: medical_invoice
-#: constraint:ir.ui.menu:0
-msgid "Error ! You can not create recursive Menu."
-msgstr "¡Error! Usted no puede crear  Menú recursivo."
-
-#. module: medical_invoice
-#: field:medical.patient.lab.test,invoice_status:0
-#: field:medical.prescription.order,invoice_status:0
-msgid "Invoice Status"
-msgstr "Estado de la factura"
-
-#. module: medical_invoice
-#: model:ir.actions.act_window,name:medical_invoice.medical_action_tobeinvoiced_prescription
-#: model:ir.ui.menu,name:medical_invoice.medical_tobeinvoiced_prescription
-msgid "Prescriptions to be invoiced"
-msgstr "Recetas a facturar"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "At least one of the selected prescriptions can not be invoiced"
-msgstr "Al menos una de las recetas seleccionadas no se puede facturar"
-
-#. module: medical_invoice
-#: model:ir.actions.act_window,name:medical_invoice.medical_action_today_tobeinvoiced_labtest_request
-#: model:ir.ui.menu,name:medical_invoice.medical_today_tobeinvoiced_labtest_request
-msgid "Today's Lab Requests to be invoiced"
-msgstr "Pruebas de Laboratorio del día a facturar"
-
-#. module: medical_invoice
-#: selection:medical.appointment,validity_status:0
-#: selection:medical.patient.lab.test,invoice_status:0
-#: selection:medical.prescription.order,invoice_status:0
-msgid "To be Invoiced"
-msgstr "Para  facturar"
-
-#. module: medical_invoice
-#: field:medical.appointment,validity_status:0
-msgid "Status"
-msgstr "Estado"
-
-#. module: medical_invoice
-#: view:medical.appointment.invoice:0
-msgid "Do you want to create the invoice(s) ?"
-msgstr "¿Quiere crear la factura(s)?"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_create_lab_invoice.py:0
-#, python-format
-msgid "You can not invoice this lab test"
-msgstr "No se puede facturar este examen de laboratorio"
-
-#. module: medical_invoice
-#: model:ir.model,name:medical_invoice.model_medical_prescription_invoice
-msgid "medical.prescription.invoice"
-msgstr "medical.prescription.invoice"
-
-#. module: medical_invoice
-#: model:ir.module.module,description:medical_invoice.module_meta_information
-msgid ""
-" \n"
-"        This module add functionality to create invoices for doctor's consulting charge.\n"
-"\n"
-"        Features:\n"
-"        -Invoice of multiple appointments at a time.\n"
-"        "
-msgstr ""
-"Este módulo añade la funcionalidad de crear facturas para la carga de consulta del médico. \n"
-"\n"
-"Características:\n"
-"-Facturar varias citas a la vez."
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#, python-format
-msgid "The appointment is invoice exempt"
-msgstr "La cita es exenta de factura "
-
-#. module: medical_invoice
-#: field:medical.appointment,consultations:0
-msgid "Consultation Service"
-msgstr "Servicio de Consulta"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#, python-format
-msgid "You can not invoice this appointment"
-msgstr "No se puede facturar esta cita"
-
-#. module: medical_invoice
-#: model:ir.ui.menu,name:medical_invoice.medical_invoice_menu
-msgid "Invoices"
-msgstr "Facturas"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "At least one of the selected prescriptions is already invoiced"
-msgstr "Al menos una de las recetas seleccionadas ya se ha facturado"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#, python-format
-msgid "Appointment already invoiced"
-msgstr "La cita ya fue facturada"
-
-#. module: medical_invoice
-#: model:ir.model,name:medical_invoice.model_medical_lab_test_invoice
-msgid "medical.lab.test.invoice"
-msgstr "medical.lab.test.invoice"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "You need to have at least one prescription item in your invoice"
-msgstr "Necesita tener al menos un elemento recetado en su factura"
-
-#. module: medical_invoice
-#: model:ir.actions.act_window,name:medical_invoice.action_create_lab_invoice
-#: view:medical.lab.test.invoice:0
-msgid "Create Lab Invoice"
-msgstr "Crear Factura de Laboratorio"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_create_lab_invoice.py:0
-#, python-format
-msgid "When multiple lab tests are selected, patient must be the same"
-msgstr "Cuando múltiples pruebas de laboratorio son seleccionadas, el paciente debe ser el mismo"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#: code:addons/medical_invoice/wizard/wizard_create_lab_invoice.py:0
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "UserError"
-msgstr "UserError"
-
-#. module: medical_invoice
-#: constraint:ir.ui.view:0
-msgid "Invalid XML for View Architecture!"
-msgstr "XML no válido para la arquitectura vista!"
-
-#. module: medical_invoice
-#: view:medical.lab.test.invoice:0
-msgid "Do you want to generate the invoice(s) ?"
-msgstr "¿Quiere generar la factura(s)?"
-
-#. module: medical_invoice
-#: view:medical.prescription.order:0
-msgid "Prescription"
-msgstr "Receta"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "When multiple prescriptions are selected, patient must be the same"
-msgstr "Cuando se seleccionan varias recetas, el paciente debe ser el mismo"
-
-#. module: medical_invoice
-#: model:ir.model,name:medical_invoice.model_medical_patient
-msgid "Patient related information"
-msgstr "Información relacionada con el paciente"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#, python-format
-msgid "No consultation service is connected with the selected appointments"
-msgstr "No hay servicio de consulta relacionado con las citas seleccionadas"
-
-#. module: medical_invoice
-#: field:medical.appointment,appointment_validity_date:0
-msgid "Validity Date"
-msgstr "Fecha de validez"
-
-#. module: medical_invoice
-#: help:medical.appointment,consultations:0
-msgid "Consultation Services"
-msgstr "Servicios de Consulta "
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_create_lab_invoice.py:0
-#, python-format
-msgid "Lab test already invoiced"
-msgstr "Prueba de Laboratorio ya facturada"
-
-#. module: medical_invoice
-#: model:ir.actions.act_window,name:medical_invoice.medical_action_tobeinvoiced_appointment
-#: model:ir.ui.menu,name:medical_invoice.medical_tobeinvoiced_appointment
-msgid "Appointments to be invoiced"
-msgstr "Citas a facturar"
-
-#. module: medical_invoice
-#: help:medical.patient,receivable:0
-msgid "Total amount this patient owes you"
-msgstr "Monto adeudado por el paciente"
-
-#. module: medical_invoice
-#: model:ir.model,name:medical_invoice.model_medical_patient_lab_test
-msgid "medical.patient.lab.test"
-msgstr "medical.patient.lab.test"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#, python-format
-msgid "At least one of the selected appointments can not be invoiced"
-msgstr "Al menos una de las citas seleccionadas no puede ser facturada"
-
-#. module: medical_invoice
-#: view:medical.prescription.invoice:0
-msgid "Create Prescription Invoices"
-msgstr "Crear Facturas de Receta"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_create_lab_invoice.py:0
-#, python-format
-msgid "At least one of the selected lab tests can not be invoiced"
-msgstr "Al menos una de las pruebas de laboratorio seleccionada no se puede facturar"
-
-#. module: medical_invoice
-#: view:medical.appointment.invoice:0
-msgid "Create Invoices"
-msgstr "Crear facturas"
-
-#. module: medical_invoice
-#: view:medical.prescription.invoice:0
-msgid "Create prescription invoices"
-msgstr "Crear facturas de receta"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#, python-format
-msgid "When multiple appointments are selected, patient must be the same"
-msgstr "Cuando se seleccionan varias citas, el paciente debe ser el mismo"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "You can not invoice this prescription"
-msgstr "No se puede facturar esta receta"
-
-#. module: medical_invoice
-#: model:ir.actions.act_window,name:medical_invoice.medical_action_tobeinvoiced_labtest_request
-#: model:ir.ui.menu,name:medical_invoice.medical_tobeinvoiced_labtest_request
-msgid "Lab Requests to be invoiced"
-msgstr "Solicitudes de Laboratorio a facturar"
-
-#. module: medical_invoice
-#: model:ir.actions.act_window,name:medical_invoice.action_create_prescription_invoice
-msgid "Create Prescription Invoice"
-msgstr "Crear Factura de Receta"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#, python-format
-msgid "At least one of the selected appointments is already invoiced"
-msgstr "Al menos una de las citas seleccionadas ya fue facturada"
-
-#. module: medical_invoice
-#: view:medical.appointment.invoice:0 view:medical.lab.test.invoice:0
-#: view:medical.prescription.invoice:0
-msgid "Cancel"
-msgstr "Cancelar"
-
-#. module: medical_invoice
-#: view:medical.prescription.invoice:0
-msgid "Do you want to create the prescription invoice(s) ?"
-msgstr "¿Quiere crear la factura de la receta(s)?"
-
-#. module: medical_invoice
-#: selection:medical.appointment,validity_status:0
-#: selection:medical.patient.lab.test,invoice_status:0
-#: selection:medical.prescription.order,invoice_status:0
-msgid "Invoiced"
-msgstr "Facturado"

=== removed file 'oemedical/oemedical_invoice/i18n/es_VE.po'
--- oemedical/oemedical_invoice/i18n/es_VE.po	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_invoice/i18n/es_VE.po	1970-01-01 00:00:00 +0000
@@ -1,366 +0,0 @@
-# Translation of OpenERP Server.
-# This file contains the translation of the following modules:
-# 
-msgid ""
-msgstr ""
-"Project-Id-Version: Medical\n"
-"Report-Msgid-Bugs-To: https://sourceforge.net/apps/mantisbt/medical\n";
-"POT-Creation-Date: 2010-12-05 21:57:25+0000\n"
-"PO-Revision-Date: 2011-02-05 18:20+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: Spanish (Castilian) <>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
-
-#. module: medical_invoice
-#: field:medical.patient,receivable:0
-msgid "Receivable"
-msgstr "A cobrar"
-
-#. module: medical_invoice
-#: model:ir.model,name:medical_invoice.model_medical_prescription_order
-msgid "prescription order"
-msgstr "receta"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "The prescription is invoice exempt"
-msgstr "La receta es exenta de factura"
-
-#. module: medical_invoice
-#: constraint:ir.model:0
-msgid "The Object name must start with x_ and not contain any special character !"
-msgstr "El nombre del objeto debe empezar con x_ y no contener ningún carácter especial!"
-
-#. module: medical_invoice
-#: constraint:ir.actions.act_window:0
-msgid "Invalid model name in the action definition."
-msgstr "Nombre del modelo no vaĺido en la definición de acción."
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_create_lab_invoice.py:0
-#, python-format
-msgid "At least one of the selected lab tests is already invoiced"
-msgstr "Al menos una de las pruebas de laboratorio seleccionada ya está facturada"
-
-#. module: medical_invoice
-#: view:medical.appointment.invoice:0
-msgid "Create invoices"
-msgstr "Crear facturas"
-
-#. module: medical_invoice
-#: view:medical.lab.test.invoice:0
-msgid "Create Lab Invoices"
-msgstr "Crear facturas de laboratorio"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "Prescription already invoiced"
-msgstr "Receta ya facturada"
-
-#. module: medical_invoice
-#: model:ir.module.module,shortdesc:medical_invoice.module_meta_information
-msgid "Medical Invoice"
-msgstr "Medical Invoice"
-
-#. module: medical_invoice
-#: model:ir.model,name:medical_invoice.model_medical_appointment
-msgid "medical.appointment"
-msgstr "medical.appointment"
-
-#. module: medical_invoice
-#: model:ir.model,name:medical_invoice.model_medical_appointment_invoice
-msgid "medical.appointment.invoice"
-msgstr "medical.appointment.invoice"
-
-#. module: medical_invoice
-#: model:ir.actions.act_window,name:medical_invoice.action_create_appointment_invoice
-msgid "Create Invoice"
-msgstr "Crear factura"
-
-#. module: medical_invoice
-#: field:medical.appointment,no_invoice:0
-#: field:medical.patient.lab.test,no_invoice:0
-#: field:medical.prescription.order,no_invoice:0
-msgid "Invoice exempt"
-msgstr "Exento de factura "
-
-#. module: medical_invoice
-#: constraint:ir.ui.menu:0
-msgid "Error ! You can not create recursive Menu."
-msgstr "¡Error! Usted no puede crear  Menú recursivo."
-
-#. module: medical_invoice
-#: field:medical.patient.lab.test,invoice_status:0
-#: field:medical.prescription.order,invoice_status:0
-msgid "Invoice Status"
-msgstr "Estado de la factura"
-
-#. module: medical_invoice
-#: model:ir.actions.act_window,name:medical_invoice.medical_action_tobeinvoiced_prescription
-#: model:ir.ui.menu,name:medical_invoice.medical_tobeinvoiced_prescription
-msgid "Prescriptions to be invoiced"
-msgstr "Recetas a facturar"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "At least one of the selected prescriptions can not be invoiced"
-msgstr "Al menos una de las recetas seleccionadas no se puede facturar"
-
-#. module: medical_invoice
-#: model:ir.actions.act_window,name:medical_invoice.medical_action_today_tobeinvoiced_labtest_request
-#: model:ir.ui.menu,name:medical_invoice.medical_today_tobeinvoiced_labtest_request
-msgid "Today's Lab Requests to be invoiced"
-msgstr "Pruebas de Laboratorio del día a facturar"
-
-#. module: medical_invoice
-#: selection:medical.appointment,validity_status:0
-#: selection:medical.patient.lab.test,invoice_status:0
-#: selection:medical.prescription.order,invoice_status:0
-msgid "To be Invoiced"
-msgstr "Para  facturar"
-
-#. module: medical_invoice
-#: field:medical.appointment,validity_status:0
-msgid "Status"
-msgstr "Estado"
-
-#. module: medical_invoice
-#: view:medical.appointment.invoice:0
-msgid "Do you want to create the invoice(s) ?"
-msgstr "¿Quiere crear la factura(s)?"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_create_lab_invoice.py:0
-#, python-format
-msgid "You can not invoice this lab test"
-msgstr "No se puede facturar este examen de laboratorio"
-
-#. module: medical_invoice
-#: model:ir.model,name:medical_invoice.model_medical_prescription_invoice
-msgid "medical.prescription.invoice"
-msgstr "medical.prescription.invoice"
-
-#. module: medical_invoice
-#: model:ir.module.module,description:medical_invoice.module_meta_information
-msgid ""
-" \n"
-"        This module add functionality to create invoices for doctor's consulting charge.\n"
-"\n"
-"        Features:\n"
-"        -Invoice of multiple appointments at a time.\n"
-"        "
-msgstr ""
-"Este módulo añade la funcionalidad de crear facturas para la carga de consulta del médico. \n"
-"\n"
-"Características:\n"
-"-Facturar varias citas a la vez."
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#, python-format
-msgid "The appointment is invoice exempt"
-msgstr "La cita es exenta de factura "
-
-#. module: medical_invoice
-#: field:medical.appointment,consultations:0
-msgid "Consultation Service"
-msgstr "Servicio de Consulta"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#, python-format
-msgid "You can not invoice this appointment"
-msgstr "No se puede facturar esta cita"
-
-#. module: medical_invoice
-#: model:ir.ui.menu,name:medical_invoice.medical_invoice_menu
-msgid "Invoices"
-msgstr "Facturas"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "At least one of the selected prescriptions is already invoiced"
-msgstr "Al menos una de las recetas seleccionadas ya se ha facturado"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#, python-format
-msgid "Appointment already invoiced"
-msgstr "La cita ya fue facturada"
-
-#. module: medical_invoice
-#: model:ir.model,name:medical_invoice.model_medical_lab_test_invoice
-msgid "medical.lab.test.invoice"
-msgstr "medical.lab.test.invoice"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "You need to have at least one prescription item in your invoice"
-msgstr "Necesita tener al menos un elemento recetado en su factura"
-
-#. module: medical_invoice
-#: model:ir.actions.act_window,name:medical_invoice.action_create_lab_invoice
-#: view:medical.lab.test.invoice:0
-msgid "Create Lab Invoice"
-msgstr "Crear Factura de Laboratorio"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_create_lab_invoice.py:0
-#, python-format
-msgid "When multiple lab tests are selected, patient must be the same"
-msgstr "Cuando múltiples pruebas de laboratorio son seleccionadas, el paciente debe ser el mismo"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#: code:addons/medical_invoice/wizard/wizard_create_lab_invoice.py:0
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "UserError"
-msgstr "UserError"
-
-#. module: medical_invoice
-#: constraint:ir.ui.view:0
-msgid "Invalid XML for View Architecture!"
-msgstr "XML no válido para la arquitectura vista!"
-
-#. module: medical_invoice
-#: view:medical.lab.test.invoice:0
-msgid "Do you want to generate the invoice(s) ?"
-msgstr "¿Quiere generar la factura(s)?"
-
-#. module: medical_invoice
-#: view:medical.prescription.order:0
-msgid "Prescription"
-msgstr "Receta"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "When multiple prescriptions are selected, patient must be the same"
-msgstr "Cuando se seleccionan varias recetas, el paciente debe ser el mismo"
-
-#. module: medical_invoice
-#: model:ir.model,name:medical_invoice.model_medical_patient
-msgid "Patient related information"
-msgstr "Información relacionada con el paciente"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#, python-format
-msgid "No consultation service is connected with the selected appointments"
-msgstr "No hay servicio de consulta relacionado con las citas seleccionadas"
-
-#. module: medical_invoice
-#: field:medical.appointment,appointment_validity_date:0
-msgid "Validity Date"
-msgstr "Fecha de validez"
-
-#. module: medical_invoice
-#: help:medical.appointment,consultations:0
-msgid "Consultation Services"
-msgstr "Servicios de Consulta "
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_create_lab_invoice.py:0
-#, python-format
-msgid "Lab test already invoiced"
-msgstr "Prueba de Laboratorio ya facturada"
-
-#. module: medical_invoice
-#: model:ir.actions.act_window,name:medical_invoice.medical_action_tobeinvoiced_appointment
-#: model:ir.ui.menu,name:medical_invoice.medical_tobeinvoiced_appointment
-msgid "Appointments to be invoiced"
-msgstr "Citas a facturar"
-
-#. module: medical_invoice
-#: help:medical.patient,receivable:0
-msgid "Total amount this patient owes you"
-msgstr "Monto adeudado por el paciente"
-
-#. module: medical_invoice
-#: model:ir.model,name:medical_invoice.model_medical_patient_lab_test
-msgid "medical.patient.lab.test"
-msgstr "medical.patient.lab.test"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#, python-format
-msgid "At least one of the selected appointments can not be invoiced"
-msgstr "Al menos una de las citas seleccionadas no puede ser facturada"
-
-#. module: medical_invoice
-#: view:medical.prescription.invoice:0
-msgid "Create Prescription Invoices"
-msgstr "Crear Facturas de Receta"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_create_lab_invoice.py:0
-#, python-format
-msgid "At least one of the selected lab tests can not be invoiced"
-msgstr "Al menos una de las pruebas de laboratorio seleccionada no se puede facturar"
-
-#. module: medical_invoice
-#: view:medical.appointment.invoice:0
-msgid "Create Invoices"
-msgstr "Crear facturas"
-
-#. module: medical_invoice
-#: view:medical.prescription.invoice:0
-msgid "Create prescription invoices"
-msgstr "Crear facturas de receta"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#, python-format
-msgid "When multiple appointments are selected, patient must be the same"
-msgstr "Cuando se seleccionan varias citas, el paciente debe ser el mismo"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "You can not invoice this prescription"
-msgstr "No se puede facturar esta receta"
-
-#. module: medical_invoice
-#: model:ir.actions.act_window,name:medical_invoice.medical_action_tobeinvoiced_labtest_request
-#: model:ir.ui.menu,name:medical_invoice.medical_tobeinvoiced_labtest_request
-msgid "Lab Requests to be invoiced"
-msgstr "Solicitudes de Laboratorio a facturar"
-
-#. module: medical_invoice
-#: model:ir.actions.act_window,name:medical_invoice.action_create_prescription_invoice
-msgid "Create Prescription Invoice"
-msgstr "Crear Factura de Receta"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#, python-format
-msgid "At least one of the selected appointments is already invoiced"
-msgstr "Al menos una de las citas seleccionadas ya fue facturada"
-
-#. module: medical_invoice
-#: view:medical.appointment.invoice:0 view:medical.lab.test.invoice:0
-#: view:medical.prescription.invoice:0
-msgid "Cancel"
-msgstr "Cancelar"
-
-#. module: medical_invoice
-#: view:medical.prescription.invoice:0
-msgid "Do you want to create the prescription invoice(s) ?"
-msgstr "¿Quiere crear la factura de la receta(s)?"
-
-#. module: medical_invoice
-#: selection:medical.appointment,validity_status:0
-#: selection:medical.patient.lab.test,invoice_status:0
-#: selection:medical.prescription.order,invoice_status:0
-msgid "Invoiced"
-msgstr "Facturado"

=== removed file 'oemedical/oemedical_invoice/i18n/fr_FR.po'
--- oemedical/oemedical_invoice/i18n/fr_FR.po	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_invoice/i18n/fr_FR.po	1970-01-01 00:00:00 +0000
@@ -1,364 +0,0 @@
-# Translation of OpenERP Server.
-# This file contains the translation of the following modules:
-# 
-msgid ""
-msgstr ""
-"Project-Id-Version: Medical\n"
-"Report-Msgid-Bugs-To: https://sourceforge.net/apps/mantisbt/medical\n";
-"POT-Creation-Date: 2010-12-05 21:57:25+0000\n"
-"PO-Revision-Date: 2011-02-05 18:15+0000\n"
-"Last-Translator: gestionRessources <klinik_mailinglist@xxxxxxxxxxxxxxxxxxxxxx>\n"
-"Language-Team: French (France) <>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Language: fr_FR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1)\n"
-
-#. module: medical_invoice
-#: field:medical.patient,receivable:0
-msgid "Receivable"
-msgstr "Montant dû"
-
-#. module: medical_invoice
-#: model:ir.model,name:medical_invoice.model_medical_prescription_order
-msgid "prescription order"
-msgstr "Ordonnance"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "The prescription is invoice exempt"
-msgstr "La prescription est exonérée de facture "
-
-#. module: medical_invoice
-#: constraint:ir.model:0
-msgid "The Object name must start with x_ and not contain any special character !"
-msgstr "Le nom de l'objet doit commencer par x_ et ne pas contenir de caractères spéciaux!"
-
-#. module: medical_invoice
-#: constraint:ir.actions.act_window:0
-msgid "Invalid model name in the action definition."
-msgstr "Le nom du modèle invalide dans la définition de l'action."
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_create_lab_invoice.py:0
-#, python-format
-msgid "At least one of the selected lab tests is already invoiced"
-msgstr "Au moins un des tests de laboratoires sélectionnés est déja facturé"
-
-#. module: medical_invoice
-#: view:medical.appointment.invoice:0
-msgid "Create invoices"
-msgstr "Créer factures"
-
-#. module: medical_invoice
-#: view:medical.lab.test.invoice:0
-msgid "Create Lab Invoices"
-msgstr "Créer factures de laboratoire"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "Prescription already invoiced"
-msgstr "Prescription déjà facturé"
-
-#. module: medical_invoice
-#: model:ir.module.module,shortdesc:medical_invoice.module_meta_information
-msgid "Medical Invoice"
-msgstr "Facture médicale"
-
-#. module: medical_invoice
-#: model:ir.model,name:medical_invoice.model_medical_appointment
-msgid "medical.appointment"
-msgstr "medical.appointment"
-
-#. module: medical_invoice
-#: model:ir.model,name:medical_invoice.model_medical_appointment_invoice
-msgid "medical.appointment.invoice"
-msgstr "medical.appointment.invoice"
-
-#. module: medical_invoice
-#: model:ir.actions.act_window,name:medical_invoice.action_create_appointment_invoice
-msgid "Create Invoice"
-msgstr "Créer facture\n"
-
-#. module: medical_invoice
-#: field:medical.appointment,no_invoice:0
-#: field:medical.patient.lab.test,no_invoice:0
-#: field:medical.prescription.order,no_invoice:0
-msgid "Invoice exempt"
-msgstr "Exonéré de facture"
-
-#. module: medical_invoice
-#: constraint:ir.ui.menu:0
-msgid "Error ! You can not create recursive Menu."
-msgstr "Erreur ! Vous ne pouvez pas créer de menu récursif."
-
-#. module: medical_invoice
-#: field:medical.patient.lab.test,invoice_status:0
-#: field:medical.prescription.order,invoice_status:0
-msgid "Invoice Status"
-msgstr "Statut de la facture"
-
-#. module: medical_invoice
-#: model:ir.actions.act_window,name:medical_invoice.medical_action_tobeinvoiced_prescription
-#: model:ir.ui.menu,name:medical_invoice.medical_tobeinvoiced_prescription
-msgid "Prescriptions to be invoiced"
-msgstr "Prescriptions à facturer"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "At least one of the selected prescriptions can not be invoiced"
-msgstr "Au moins une des prescriptions sélectionnées ne peut pas être facturée"
-
-#. module: medical_invoice
-#: model:ir.actions.act_window,name:medical_invoice.medical_action_today_tobeinvoiced_labtest_request
-#: model:ir.ui.menu,name:medical_invoice.medical_today_tobeinvoiced_labtest_request
-msgid "Today's Lab Requests to be invoiced"
-msgstr "Test de laboratoire d'aujourd'hui à facturer"
-
-#. module: medical_invoice
-#: selection:medical.appointment,validity_status:0
-#: selection:medical.patient.lab.test,invoice_status:0
-#: selection:medical.prescription.order,invoice_status:0
-msgid "To be Invoiced"
-msgstr "À facturer"
-
-#. module: medical_invoice
-#: field:medical.appointment,validity_status:0
-msgid "Status"
-msgstr "Bilan"
-
-#. module: medical_invoice
-#: view:medical.appointment.invoice:0
-msgid "Do you want to create the invoice(s) ?"
-msgstr "Voulez-vous créer la(les) facture(s) ?"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_create_lab_invoice.py:0
-#, python-format
-msgid "You can not invoice this lab test"
-msgstr "Vous ne pouvez pas facturer ce test de laboratoire"
-
-#. module: medical_invoice
-#: model:ir.model,name:medical_invoice.model_medical_prescription_invoice
-msgid "medical.prescription.invoice"
-msgstr "medical.prescription.invoice"
-
-#. module: medical_invoice
-#: model:ir.module.module,description:medical_invoice.module_meta_information
-msgid ""
-" \n"
-"        This module add functionality to create invoices for doctor's consulting charge.\n"
-"\n"
-"        Features:\n"
-"        -Invoice of multiple appointments at a time.\n"
-"        "
-msgstr ""
-"Ce module ajoute les fonctionnalités de création des factures pour les frais de consultation du médecin. Caractéristiques:\n"
-"-Facture de plusieurs rendez-vous à la fois."
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#, python-format
-msgid "The appointment is invoice exempt"
-msgstr "Ce rendez-vous est exonéré de facture"
-
-#. module: medical_invoice
-#: field:medical.appointment,consultations:0
-msgid "Consultation Service"
-msgstr "Service de consultation"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#, python-format
-msgid "You can not invoice this appointment"
-msgstr "Vous ne pouvez pas facturer ce rendez-vous"
-
-#. module: medical_invoice
-#: model:ir.ui.menu,name:medical_invoice.medical_invoice_menu
-msgid "Invoices"
-msgstr "Factures"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "At least one of the selected prescriptions is already invoiced"
-msgstr "Au moins une des prescriptions selectionnées est déjà facturées"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#, python-format
-msgid "Appointment already invoiced"
-msgstr "Rendez-vous déjà facturé"
-
-#. module: medical_invoice
-#: model:ir.model,name:medical_invoice.model_medical_lab_test_invoice
-msgid "medical.lab.test.invoice"
-msgstr "medical.lab.test.invoice"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "You need to have at least one prescription item in your invoice"
-msgstr "Vous avez besoin d'au moins une prescription dans la facture"
-
-#. module: medical_invoice
-#: model:ir.actions.act_window,name:medical_invoice.action_create_lab_invoice
-#: view:medical.lab.test.invoice:0
-msgid "Create Lab Invoice"
-msgstr "Créer facture de laboratoire"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_create_lab_invoice.py:0
-#, python-format
-msgid "When multiple lab tests are selected, patient must be the same"
-msgstr "Lorsque plusieurs tests sont sélectionnés le patient doit être le même"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#: code:addons/medical_invoice/wizard/wizard_create_lab_invoice.py:0
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "UserError"
-msgstr "Erreur Utilisateur"
-
-#. module: medical_invoice
-#: constraint:ir.ui.view:0
-msgid "Invalid XML for View Architecture!"
-msgstr "XML non valide pour la Vue Architecture !"
-
-#. module: medical_invoice
-#: view:medical.lab.test.invoice:0
-msgid "Do you want to generate the invoice(s) ?"
-msgstr "Voulez-vous générer la(les) facture(s) ?"
-
-#. module: medical_invoice
-#: view:medical.prescription.order:0
-msgid "Prescription"
-msgstr "Prescription"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "When multiple prescriptions are selected, patient must be the same"
-msgstr "Lorsque plusieurs prescriptions sont sélectionnés le patient doit être le même"
-
-#. module: medical_invoice
-#: model:ir.model,name:medical_invoice.model_medical_patient
-msgid "Patient related information"
-msgstr "Information relative au patient"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#, python-format
-msgid "No consultation service is connected with the selected appointments"
-msgstr "Aucun service de consultation est lié avec le rendez-vous sélectionné"
-
-#. module: medical_invoice
-#: field:medical.appointment,appointment_validity_date:0
-msgid "Validity Date"
-msgstr "Date de validation"
-
-#. module: medical_invoice
-#: help:medical.appointment,consultations:0
-msgid "Consultation Services"
-msgstr "Service de consultation"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_create_lab_invoice.py:0
-#, python-format
-msgid "Lab test already invoiced"
-msgstr "Test de laboratoire déjà facturé"
-
-#. module: medical_invoice
-#: model:ir.actions.act_window,name:medical_invoice.medical_action_tobeinvoiced_appointment
-#: model:ir.ui.menu,name:medical_invoice.medical_tobeinvoiced_appointment
-msgid "Appointments to be invoiced"
-msgstr "Rendez-vous à facturer"
-
-#. module: medical_invoice
-#: help:medical.patient,receivable:0
-msgid "Total amount this patient owes you"
-msgstr "Montant total dû par le patient"
-
-#. module: medical_invoice
-#: model:ir.model,name:medical_invoice.model_medical_patient_lab_test
-msgid "medical.patient.lab.test"
-msgstr "medical.patient.lab.test"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#, python-format
-msgid "At least one of the selected appointments can not be invoiced"
-msgstr "Au moins un des rendez-vous sélectionnés ne peut pas être facturé"
-
-#. module: medical_invoice
-#: view:medical.prescription.invoice:0
-msgid "Create Prescription Invoices"
-msgstr "Créer facture de prescription"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_create_lab_invoice.py:0
-#, python-format
-msgid "At least one of the selected lab tests can not be invoiced"
-msgstr "Au moins l'un des tests de laboratoire sélectionné ne peut être facturé"
-
-#. module: medical_invoice
-#: view:medical.appointment.invoice:0
-msgid "Create Invoices"
-msgstr "Créer factures"
-
-#. module: medical_invoice
-#: view:medical.prescription.invoice:0
-msgid "Create prescription invoices"
-msgstr "Créer facture d'ordonnance"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#, python-format
-msgid "When multiple appointments are selected, patient must be the same"
-msgstr "Lorsque plusieurs rendez-vous sont choisis, le patient doit être le même"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "You can not invoice this prescription"
-msgstr "Vous ne pouvez pas facturer cette prescription"
-
-#. module: medical_invoice
-#: model:ir.actions.act_window,name:medical_invoice.medical_action_tobeinvoiced_labtest_request
-#: model:ir.ui.menu,name:medical_invoice.medical_tobeinvoiced_labtest_request
-msgid "Lab Requests to be invoiced"
-msgstr "Test de laboratoire à facturer"
-
-#. module: medical_invoice
-#: model:ir.actions.act_window,name:medical_invoice.action_create_prescription_invoice
-msgid "Create Prescription Invoice"
-msgstr "Créer une facture d'ordonnance"
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#, python-format
-msgid "At least one of the selected appointments is already invoiced"
-msgstr "Au moins l'un des rendez-vous sélectionné est déjà facturé"
-
-#. module: medical_invoice
-#: view:medical.appointment.invoice:0 view:medical.lab.test.invoice:0
-#: view:medical.prescription.invoice:0
-msgid "Cancel"
-msgstr "Annuler"
-
-#. module: medical_invoice
-#: view:medical.prescription.invoice:0
-msgid "Do you want to create the prescription invoice(s) ?"
-msgstr "Voulez-vous créer la facture d'ordonnance(s)?"
-
-#. module: medical_invoice
-#: selection:medical.appointment,validity_status:0
-#: selection:medical.patient.lab.test,invoice_status:0
-#: selection:medical.prescription.order,invoice_status:0
-msgid "Invoiced"
-msgstr "Facturé"

=== renamed file 'oemedical/oemedical_invoice/i18n/it.po' => 'oemedical/oemedical_invoice/i18n/it.po.THIS'
=== removed file 'oemedical/oemedical_invoice/i18n/medical_invoice.pot'
--- oemedical/oemedical_invoice/i18n/medical_invoice.pot	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_invoice/i18n/medical_invoice.pot	1970-01-01 00:00:00 +0000
@@ -1,358 +0,0 @@
-# Translation of OpenERP Server.
-# This file contains the translation of the following modules:
-#	* medical_invoice
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
-"Report-Msgid-Bugs-To: support@xxxxxxxxxxx\n"
-"POT-Creation-Date: 2010-12-05 21:57:25+0000\n"
-"PO-Revision-Date: 2010-12-05 21:57:25+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Plural-Forms: \n"
-
-#. module: medical_invoice
-#: field:medical.patient,receivable:0
-msgid "Receivable"
-msgstr ""
-
-#. module: medical_invoice
-#: model:ir.model,name:medical_invoice.model_medical_prescription_order
-msgid "prescription order"
-msgstr ""
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "The prescription is invoice exempt"
-msgstr ""
-
-#. module: medical_invoice
-#: constraint:ir.model:0
-msgid "The Object name must start with x_ and not contain any special character !"
-msgstr ""
-
-#. module: medical_invoice
-#: constraint:ir.actions.act_window:0
-msgid "Invalid model name in the action definition."
-msgstr ""
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_create_lab_invoice.py:0
-#, python-format
-msgid "At least one of the selected lab tests is already invoiced"
-msgstr ""
-
-#. module: medical_invoice
-#: view:medical.appointment.invoice:0
-msgid "Create invoices"
-msgstr ""
-
-#. module: medical_invoice
-#: view:medical.lab.test.invoice:0
-msgid "Create Lab Invoices"
-msgstr ""
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "Prescription already invoiced"
-msgstr ""
-
-#. module: medical_invoice
-#: model:ir.module.module,shortdesc:medical_invoice.module_meta_information
-msgid "Medical Invoice"
-msgstr ""
-
-#. module: medical_invoice
-#: model:ir.model,name:medical_invoice.model_medical_appointment
-msgid "medical.appointment"
-msgstr ""
-
-#. module: medical_invoice
-#: model:ir.model,name:medical_invoice.model_medical_appointment_invoice
-msgid "medical.appointment.invoice"
-msgstr ""
-
-#. module: medical_invoice
-#: model:ir.actions.act_window,name:medical_invoice.action_create_appointment_invoice
-msgid "Create Invoice"
-msgstr ""
-
-#. module: medical_invoice
-#: field:medical.appointment,no_invoice:0
-#: field:medical.patient.lab.test,no_invoice:0
-#: field:medical.prescription.order,no_invoice:0
-msgid "Invoice exempt"
-msgstr ""
-
-#. module: medical_invoice
-#: constraint:ir.ui.menu:0
-msgid "Error ! You can not create recursive Menu."
-msgstr ""
-
-#. module: medical_invoice
-#: field:medical.patient.lab.test,invoice_status:0
-#: field:medical.prescription.order,invoice_status:0
-msgid "Invoice Status"
-msgstr ""
-
-#. module: medical_invoice
-#: model:ir.actions.act_window,name:medical_invoice.medical_action_tobeinvoiced_prescription
-#: model:ir.ui.menu,name:medical_invoice.medical_tobeinvoiced_prescription
-msgid "Prescriptions to be invoiced"
-msgstr ""
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "At least one of the selected prescriptions can not be invoiced"
-msgstr ""
-
-#. module: medical_invoice
-#: model:ir.actions.act_window,name:medical_invoice.medical_action_today_tobeinvoiced_labtest_request
-#: model:ir.ui.menu,name:medical_invoice.medical_today_tobeinvoiced_labtest_request
-msgid "Today's Lab Requests to be invoiced"
-msgstr ""
-
-#. module: medical_invoice
-#: selection:medical.appointment,validity_status:0
-#: selection:medical.patient.lab.test,invoice_status:0
-#: selection:medical.prescription.order,invoice_status:0
-msgid "To be Invoiced"
-msgstr ""
-
-#. module: medical_invoice
-#: field:medical.appointment,validity_status:0
-msgid "Status"
-msgstr ""
-
-#. module: medical_invoice
-#: view:medical.appointment.invoice:0
-msgid "Do you want to create the invoice(s) ?"
-msgstr ""
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_create_lab_invoice.py:0
-#, python-format
-msgid "You can not invoice this lab test"
-msgstr ""
-
-#. module: medical_invoice
-#: model:ir.model,name:medical_invoice.model_medical_prescription_invoice
-msgid "medical.prescription.invoice"
-msgstr ""
-
-#. module: medical_invoice
-#: model:ir.module.module,description:medical_invoice.module_meta_information
-msgid " \n"
-"        This module add functionality to create invoices for doctor's consulting charge.\n"
-"\n"
-"        Features:\n"
-"        -Invoice of multiple appointments at a time.\n"
-"        "
-msgstr ""
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#, python-format
-msgid "The appointment is invoice exempt"
-msgstr ""
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#, python-format
-msgid "You can not invoice this appointment"
-msgstr ""
-
-#. module: medical_invoice
-#: model:ir.ui.menu,name:medical_invoice.medical_invoice_menu
-msgid "Invoices"
-msgstr ""
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "At least one of the selected prescriptions is already invoiced"
-msgstr ""
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#, python-format
-msgid "Appointment already invoiced"
-msgstr ""
-
-#. module: medical_invoice
-#: model:ir.model,name:medical_invoice.model_medical_lab_test_invoice
-msgid "medical.lab.test.invoice"
-msgstr ""
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "You need to have at least one prescription item in your invoice"
-msgstr ""
-
-#. module: medical_invoice
-#: model:ir.actions.act_window,name:medical_invoice.action_create_lab_invoice
-#: view:medical.lab.test.invoice:0
-msgid "Create Lab Invoice"
-msgstr ""
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_create_lab_invoice.py:0
-#, python-format
-msgid "When multiple lab tests are selected, patient must be the same"
-msgstr ""
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#: code:addons/medical_invoice/wizard/wizard_create_lab_invoice.py:0
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "UserError"
-msgstr ""
-
-#. module: medical_invoice
-#: constraint:ir.ui.view:0
-msgid "Invalid XML for View Architecture!"
-msgstr ""
-
-#. module: medical_invoice
-#: view:medical.lab.test.invoice:0
-msgid "Do you want to generate the invoice(s) ?"
-msgstr ""
-
-#. module: medical_invoice
-#: view:medical.prescription.order:0
-msgid "Prescription"
-msgstr ""
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "When multiple prescriptions are selected, patient must be the same"
-msgstr ""
-
-#. module: medical_invoice
-#: model:ir.model,name:medical_invoice.model_medical_patient
-msgid "Patient related information"
-msgstr ""
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#, python-format
-msgid "No consultation service is connected with the selected appointments"
-msgstr ""
-
-#. module: medical_invoice
-#: field:medical.appointment,appointment_validity_date:0
-msgid "Validity Date"
-msgstr ""
-
-#. module: medical_invoice
-#: help:medical.appointment,consultations:0
-msgid "Consultation Services"
-msgstr ""
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_create_lab_invoice.py:0
-#, python-format
-msgid "Lab test already invoiced"
-msgstr ""
-
-#. module: medical_invoice
-#: model:ir.actions.act_window,name:medical_invoice.medical_action_tobeinvoiced_appointment
-#: model:ir.ui.menu,name:medical_invoice.medical_tobeinvoiced_appointment
-msgid "Appointments to be invoiced"
-msgstr ""
-
-#. module: medical_invoice
-#: help:medical.patient,receivable:0
-msgid "Total amount this patient owes you"
-msgstr ""
-
-#. module: medical_invoice
-#: model:ir.model,name:medical_invoice.model_medical_patient_lab_test
-msgid "medical.patient.lab.test"
-msgstr ""
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#, python-format
-msgid "At least one of the selected appointments can not be invoiced"
-msgstr ""
-
-#. module: medical_invoice
-#: view:medical.prescription.invoice:0
-msgid "Create Prescription Invoices"
-msgstr ""
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_create_lab_invoice.py:0
-#, python-format
-msgid "At least one of the selected lab tests can not be invoiced"
-msgstr ""
-
-#. module: medical_invoice
-#: view:medical.appointment.invoice:0
-msgid "Create Invoices"
-msgstr ""
-
-#. module: medical_invoice
-#: view:medical.prescription.invoice:0
-msgid "Create prescription invoices"
-msgstr ""
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#, python-format
-msgid "When multiple appointments are selected, patient must be the same"
-msgstr ""
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_prescription_invoice.py:0
-#, python-format
-msgid "You can not invoice this prescription"
-msgstr ""
-
-#. module: medical_invoice
-#: model:ir.actions.act_window,name:medical_invoice.medical_action_tobeinvoiced_labtest_request
-#: model:ir.ui.menu,name:medical_invoice.medical_tobeinvoiced_labtest_request
-msgid "Lab Requests to be invoiced"
-msgstr ""
-
-#. module: medical_invoice
-#: model:ir.actions.act_window,name:medical_invoice.action_create_prescription_invoice
-msgid "Create Prescription Invoice"
-msgstr ""
-
-#. module: medical_invoice
-#: code:addons/medical_invoice/wizard/wizard_appointment_invoice.py:0
-#, python-format
-msgid "At least one of the selected appointments is already invoiced"
-msgstr ""
-
-#. module: medical_invoice
-#: view:medical.appointment.invoice:0
-#: view:medical.lab.test.invoice:0
-#: view:medical.prescription.invoice:0
-msgid "Cancel"
-msgstr ""
-
-#. module: medical_invoice
-#: view:medical.prescription.invoice:0
-msgid "Do you want to create the prescription invoice(s) ?"
-msgstr ""
-
-#. module: medical_invoice
-#: selection:medical.appointment,validity_status:0
-#: selection:medical.patient.lab.test,invoice_status:0
-#: selection:medical.prescription.order,invoice_status:0
-msgid "Invoiced"
-msgstr ""
-

=== renamed file 'oemedical/oemedical_invoice/i18n/pt_BR.po' => 'oemedical/oemedical_invoice/i18n/pt_BR.po.THIS'
=== renamed file 'oemedical/oemedical_invoice/i18n/tr.po' => 'oemedical/oemedical_invoice/i18n/tr.po.THIS'
=== renamed file 'oemedical/oemedical_invoice/i18n/vi.po' => 'oemedical/oemedical_invoice/i18n/vi.po.THIS'
=== removed directory 'oemedical/oemedical_invoice/wizard'
=== removed file 'oemedical/oemedical_invoice/wizard/__init__.py'
--- oemedical/oemedical_invoice/wizard/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_invoice/wizard/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,26 +0,0 @@
-# -*- coding: utf-8 -*-
-##############################################################################
-#
-#    OpenERP, Open Source Management Solution
-#    Copyright (C) 2010  Adrián Bernardi, Mario Puntin
-#    $Id$
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU General Public License for more details.
-#
-#    You should have received a copy of the GNU General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-##############################################################################
-
-import wizard_appointment_invoice
-import wizard_prescription_invoice
-import wizard_create_lab_invoice
-

=== removed directory 'oemedical/oemedical_lab'
=== removed file 'oemedical/oemedical_lab/__init__.py'
--- oemedical/oemedical_lab/__init__.py	2013-09-23 18:55:14 +0000
+++ oemedical/oemedical_lab/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,1 +0,0 @@
-import oemedical_lab

=== removed file 'oemedical/oemedical_lab/__openerp__.py'
=== removed directory 'oemedical/oemedical_lab/data'
=== removed directory 'oemedical/oemedical_lab/doc'
=== removed directory 'oemedical/oemedical_lab/i18n'
=== removed directory 'oemedical/oemedical_lab/model'
=== removed directory 'oemedical/oemedical_lab/report'
=== removed directory 'oemedical/oemedical_lab/security'
=== removed directory 'oemedical/oemedical_lab/static'
=== removed directory 'oemedical/oemedical_lab/static/description'
=== removed directory 'oemedical/oemedical_lab/static/src'
=== removed directory 'oemedical/oemedical_lab/static/src/css'
=== removed directory 'oemedical/oemedical_lab/static/src/img'
=== removed directory 'oemedical/oemedical_lab/static/src/js'
=== removed directory 'oemedical/oemedical_lab/static/src/xml'
=== removed directory 'oemedical/oemedical_lab/test'
=== removed directory 'oemedical/oemedical_lab/tests'
=== removed directory 'oemedical/oemedical_lab/view'
=== removed directory 'oemedical/oemedical_lab/wizard'
=== removed directory 'oemedical/oemedical_lifestyle'
=== removed file 'oemedical/oemedical_lifestyle/__init__.py'
--- oemedical/oemedical_lifestyle/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_lifestyle/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_lifestyle
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/oemedical_lifestyle/data'
=== removed directory 'oemedical/oemedical_medicament'
=== removed file 'oemedical/oemedical_medicament/__init__.py'
--- oemedical/oemedical_medicament/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_medicament/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_medicament
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/oemedical_medicament_category'
=== removed file 'oemedical/oemedical_medicament_category/__init__.py'
--- oemedical/oemedical_medicament_category/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_medicament_category/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_medicament_category
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/oemedical_medication_dosage'
=== removed file 'oemedical/oemedical_medication_dosage/__init__.py'
--- oemedical/oemedical_medication_dosage/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_medication_dosage/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_medication_dosage
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/oemedical_medication_template'
=== removed file 'oemedical/oemedical_medication_template/__init__.py'
--- oemedical/oemedical_medication_template/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_medication_template/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_medication_template
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed file 'oemedical/oemedical_menu.xml'
--- oemedical/oemedical_menu.xml	2013-09-23 18:55:14 +0000
+++ oemedical/oemedical_menu.xml	1970-01-01 00:00:00 +0000
@@ -1,211 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<openerp>
-	<data>
-		<menuitem id="oemedical_root" name="OeMedical" sequence="10" />
-
-
-<!--Menu Patient-->
-
-		<menuitem id="oemedical_patient_root" name="Patient" parent="oemedical_root"
-			sequence="10" />
-		<menuitem id="oemedical_patient" name=" Patient"
-			parent="oemedical_patient_root" sequence="10"
-			action="act_open_oemedical_patient_view" />
-
-		<menuitem id="oemedical_family" name=" Family" parent="oemedical_patient_root"
-			sequence="20" action="act_open_oemedical_family_view" />
-
-		<menuitem id="oemedical_family_member" name=" Family Member"
-			parent="oemedical_patient_root" sequence="30"
-			action="act_open_oemedical_family_member_view" />
-
-
-<!--Appointment-->
-
-		<menuitem id="oemedical_appoitment_root" name="Appoitment"
-			parent="oemedical_root" sequence="20" />
-
-		<menuitem id="oemedical_appointment" name=" Appointment"
-			parent="oemedical_appoitment_root" sequence="10"
-			action="act_open_oemedical_appointment_view" />
-
-<!--Prescriptions-->
-
-		<menuitem id="oemedical_prescription_root" name="Prescription"
-			parent="oemedical_root" sequence="30" />
-
-		<menuitem id="oemedical_prescription_order" name="Prescription Order"
-			parent="oemedical_prescription_root" sequence="10"
-			action="act_open_oemedical_prescription_order_view" />
-
-<!--       Laboratory    -->
-		<menuitem name="Laboratory" id="oemedical_laboratory_menu" 
-            parent="oemedical_root" sequence="4"/>
-
-
-<!--Configurations-->
-
-		<menuitem id="oemedical_root_sub" name="Configuration"
-			parent="oemedical_root" sequence="100" />
-
-<!--       Laboratory       -->
-		<menuitem name="Laboratory" id="oemedical_conf_laboratory" 
-            parent="oemedical_root_sub" sequence="3"/>
-
-
-<!-- Diseases -->
-
-		<menuitem id="oemedical_root_disease" name="Disease"
-			parent="oemedical_root_sub" sequence="10" />
-
-<!--  Menu of Pathology-->
-
-		<menuitem id="oemedical_pathology_category" name=" Pathology Category"	
-            parent="oemedical_root_disease" sequence="10"	
-            action="act_open_oemedical_pathology_category_view" />
-
-		<menuitem id="oemedical_pathology" name=" Pathology" 
-            parent="oemedical_root_disease"   sequence="30" 
-            action="act_open_oemedical_pathology_view" />
-
-		<menuitem id="oemedical_pathology_group" name=" Pathology Group" 
-            parent="oemedical_root_disease" sequence="20"
-            action="act_open_oemedical_pathology_group_view" />
-
-		<menuitem id="oemedical_root_disease_cat" name="Categories"
-			parent="oemedical_root_disease" sequence="100" />
-
-		<menuitem id="oemedical_disease_group_members" name=" Disease Group"
-			parent="oemedical_root_disease_cat" sequence="10"
-			action="act_open_oemedical_disease_group_members_view" />
-
-<!-- Misc -->
-
-		<menuitem id="oemedical_root_misc" name="Misc"
-			parent="oemedical_root_sub" sequence="200" />
-
-<!-- Occupation  ( Config/misc/Occupation) )--> 
-
-		<menuitem id="oemedical_occupation" name=" Occupation"
-			parent="oemedical_root_misc" sequence="20"
-			action="act_open_oemedical_occupation_view" />
-
-<!-- Medical Specialty  ( Config/misc/specialty) )--> 
-
-		<menuitem id="oemedical_specialty" name=" Medical Specialty"
-            parent="oemedical_root_misc" sequence="10" 
-            action="act_open_oemedical_specialty_view" />
-
-<!-- Ethnicity  ( Config/misc/Ethnicity) )--> 
-
-		<menuitem id="oemedical_ethnicity" name="Ethnicity" parent="oemedical_root_misc"
-			sequence="10" action="act_open_oemedical_ethnicity_view" />
-
-
-
-
-
-
-<!--Medicaments-->
-
-		<menuitem id="oemedical_medicament_root" name="Medicaments"
-			parent="oemedical_root_sub" sequence="50" />
-
-
-		<menuitem id="oemedical_medicament" name="Medicaments"
-			parent="oemedical_medicament_root" sequence="10"
-			action="act_open_oemedical_medicament_view" />
-
-		<menuitem id="oemedical_medication_template" name=" Medication Template"
-			parent="oemedical_medicament_root" sequence="20"
-			action="act_open_oemedical_medication_template_view" />
-
-		<menuitem id="oemedical_medication_frequencies" name="Medication Frequencies"
-			parent="oemedical_medicament_root" sequence="30"
-			action="act_open_oemedical_medication_dosage_view" />
-
-		<menuitem id="oemedical_drug_route" name=" Drug Admin Route"
-			parent="oemedical_medicament_root" sequence="80"
-			action="act_open_oemedical_drug_route_view" />
-
-		<menuitem id="oemedical_drug_form" name=" Drug Form"
-            parent="oemedical_medicament_root" sequence="90"
-            action="act_open_oemedical_drug_form_view" />
-
-
-		<menuitem id="oemedical_medicament_category" name=" Medicament Category"
-			parent="oemedical_medicament_root" sequence="100"
-			action="act_open_oemedical_medicament_category_view" />
-
-<!--Hospital Centers-->
-
-		<menuitem id="oemedical_health_center_root" name="Health Center"
-			parent="oemedical_root_sub" sequence="10" />
-
-		<menuitem id="oemedical_hospital_building" name=" Hospital Building"
-			parent="oemedical_health_center_root" sequence="10"
-			action="act_open_oemedical_hospital_building_view" />
-
-		<menuitem id="oemedical_hospital_unit" name=" Hospital Unit"
-			parent="oemedical_health_center_root" sequence="20"
-			action="act_open_oemedical_hospital_unit_view" />
-
-		<menuitem id="oemedical_hospital_ward" name=" Hospital Ward"
-			parent="oemedical_health_center_root" sequence="30"
-			action="act_open_oemedical_hospital_ward_view" />
-
-		<menuitem id="oemedical_hospital_or" name=" Hospital Or"
-			parent="oemedical_health_center_root" sequence="40"
-			action="act_open_oemedical_hospital_or_view" />
-		
-		<menuitem id="oemedical_hospital_bed" name=" Hospital Bed"
-			parent="oemedical_health_center_root" sequence="50"
-			action="act_open_oemedical_hospital_bed_view" />
-
-		<menuitem id="oemedical_operational_area" name=" Operational Area"
-			parent="oemedical_health_center_root" sequence="60"
-			action="act_open_oemedical_operational_area_view" />
-
-		<menuitem id="oemedical_operational_sector" name=" Operational Sector"
-			parent="oemedical_health_center_root" sequence="70"
-			action="act_open_oemedical_operational_sector_view" />
-
-
-<!--    Physician Conf    -->
-
-        <menuitem name="Health Professionals" id="oemedical_conf_physicians"
-            parent="oemedical_root_sub" sequence="20" />
-
-		<menuitem id="oemedical_physician" name=" Physician" parent="oemedical_conf_physicians"
-			sequence="10" action="act_open_oemedical_physician_view" />
-
-
-<!--    Insurance     -->
-
-        <menuitem name="Insurances" id="oemedical_conf_insurances"
-            parent="oemedical_root_misc" sequence="20" />
-
-		<menuitem id="oemedical_insurance" name=" Insurance" 
-            parent="oemedical_conf_insurances"	sequence="10" 
-            action="act_open_oemedical_insurance_view" />
-
-		<menuitem id="oemedical_insurance_plan" name=" Insurance Plan"
-			parent="oemedical_conf_insurances" sequence="20"
-			action="act_open_oemedical_insurance_plan_view" />
-
-
-
-
-		<menuitem id="oemedical_diagnostic_hypothesis" name=" Diagnostic Hypothesis"
-			parent="oemedical_root_sub" sequence="10"
-			action="act_open_oemedical_diagnostic_hypothesis_view" />
-		<menuitem id="oemedical_predure" name=" Procedure" parent="oemedical_root_sub"
-			sequence="10" action="act_open_oemedical_procedure_view" />
-
-		<menuitem id="oemedical_vaccination" name=" Vaccination"
-			parent="oemedical_root_sub" sequence="10"
-			action="act_open_oemedical_vaccination_view" />
-
-
-	</data>
-</openerp>

=== removed directory 'oemedical/oemedical_occupation'
=== removed file 'oemedical/oemedical_occupation/__init__.py'
--- oemedical/oemedical_occupation/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_occupation/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_occupation
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/oemedical_operational_area'
=== removed file 'oemedical/oemedical_operational_area/__init__.py'
--- oemedical/oemedical_operational_area/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_operational_area/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_operational_area
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/oemedical_operational_sector'
=== removed file 'oemedical/oemedical_operational_sector/__init__.py'
--- oemedical/oemedical_operational_sector/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_operational_sector/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_operational_sector
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/oemedical_pathology'
=== removed file 'oemedical/oemedical_pathology/__init__.py'
--- oemedical/oemedical_pathology/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_pathology/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_pathology
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/oemedical_pathology_category'
=== removed file 'oemedical/oemedical_pathology_category/__init__.py'
--- oemedical/oemedical_pathology_category/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_pathology_category/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_pathology_category
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/oemedical_pathology_group'
=== removed file 'oemedical/oemedical_pathology_group/__init__.py'
--- oemedical/oemedical_pathology_group/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_pathology_group/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_pathology_group
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/oemedical_patient'
=== removed file 'oemedical/oemedical_patient/__init__.py'
--- oemedical/oemedical_patient/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_patient/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_patient
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/oemedical_patient_disease'
=== removed file 'oemedical/oemedical_patient_disease/__init__.py'
--- oemedical/oemedical_patient_disease/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_patient_disease/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_patient_disease
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/oemedical_patient_evaluation'
=== removed file 'oemedical/oemedical_patient_evaluation/__init__.py'
--- oemedical/oemedical_patient_evaluation/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_patient_evaluation/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_patient_evaluation
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/oemedical_patient_medication'
=== removed file 'oemedical/oemedical_patient_medication/__init__.py'
--- oemedical/oemedical_patient_medication/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_patient_medication/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_patient_medication
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/oemedical_physician'
=== removed file 'oemedical/oemedical_physician/__init__.py'
--- oemedical/oemedical_physician/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_physician/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_physician
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/oemedical_prescription_line'
=== removed file 'oemedical/oemedical_prescription_line/__init__.py'
--- oemedical/oemedical_prescription_line/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_prescription_line/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_prescription_line
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/oemedical_prescription_order'
=== removed file 'oemedical/oemedical_prescription_order/__init__.py'
--- oemedical/oemedical_prescription_order/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_prescription_order/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_prescription_order
-import report
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/oemedical_prescription_order/report'
=== removed file 'oemedical/oemedical_prescription_order/report/__init__.py'
--- oemedical/oemedical_prescription_order/report/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_prescription_order/report/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,1 +0,0 @@
-import prescription_order

=== removed file 'oemedical/oemedical_prescription_order/report/prescription_order.py'
--- oemedical/oemedical_prescription_order/report/prescription_order.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_prescription_order/report/prescription_order.py	1970-01-01 00:00:00 +0000
@@ -1,12 +0,0 @@
-import time
-from report import report_sxw
-
-
-class order(report_sxw.rml_parse):
-    def __init__(self, cr, uid, name, context):
-        super(order, self).__init__(cr, uid, name, context)
-        self.localcontext.update({
-            'time': time,
-        })
-
-report_sxw.report_sxw('report.prescription.order', 'oemedical.prescription.order', 'addons/oemedical/oemedical_prescription_order/report/prescription_order.rml', parser=order, header=False)

=== removed file 'oemedical/oemedical_prescription_order/report/prescription_order.rml'
--- oemedical/oemedical_prescription_order/report/prescription_order.rml	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_prescription_order/report/prescription_order.rml	1970-01-01 00:00:00 +0000
@@ -1,279 +0,0 @@
-<?xml version="1.0"?>
-<document filename="Purchase Order.pdf">
-  <template title="Purchase Order" author="OpenERP S.A.(sales@xxxxxxxxxxx)" allowSplitting="20">
-    <pageTemplate id="first">
-      <frame id="first" x1="18.0" y1="22.0" width="535" height="770"/>
-    </pageTemplate>
-  </template>
-  <stylesheet>
-    <blockTableStyle id="Standard_Outline">
-      <blockAlignment value="LEFT"/>
-      <blockValign value="TOP"/>
-    </blockTableStyle>
-    <blockTableStyle id="Tableau1">
-      <blockAlignment value="LEFT"/>
-      <blockValign value="TOP"/>
-    </blockTableStyle>
-    <blockTableStyle id="Tableau2">
-      <blockAlignment value="LEFT"/>
-      <blockValign value="TOP"/>
-    </blockTableStyle>
-    <blockTableStyle id="Header_Order_Reference_Tbl">
-      <blockAlignment value="LEFT"/>
-      <blockValign value="TOP"/>
-      <lineStyle kind="LINEBEFORE" colorName="#e6e6e6" start="0,0" stop="0,-1"/>
-      <lineStyle kind="LINEABOVE" colorName="#e6e6e6" start="0,0" stop="0,0"/>
-      <lineStyle kind="LINEBELOW" colorName="#e6e6e6" start="0,-1" stop="0,-1"/>
-      <lineStyle kind="LINEBEFORE" colorName="#e6e6e6" start="1,0" stop="1,-1"/>
-      <lineStyle kind="LINEABOVE" colorName="#e6e6e6" start="1,0" stop="1,0"/>
-      <lineStyle kind="LINEBELOW" colorName="#e6e6e6" start="1,-1" stop="1,-1"/>
-      <lineStyle kind="LINEBEFORE" colorName="#e6e6e6" start="2,0" stop="2,-1"/>
-      <lineStyle kind="LINEABOVE" colorName="#e6e6e6" start="2,0" stop="2,0"/>
-      <lineStyle kind="LINEBELOW" colorName="#e6e6e6" start="2,-1" stop="2,-1"/>
-      <lineStyle kind="LINEBEFORE" colorName="#e6e6e6" start="3,0" stop="3,-1"/>
-      <lineStyle kind="LINEAFTER" colorName="#e6e6e6" start="3,0" stop="3,-1"/>
-      <lineStyle kind="LINEABOVE" colorName="#e6e6e6" start="3,0" stop="3,0"/>
-      <lineStyle kind="LINEBELOW" colorName="#e6e6e6" start="3,-1" stop="3,-1"/>
-    </blockTableStyle>
-    <blockTableStyle id="Content_Order_Reference_Table">
-      <blockAlignment value="LEFT"/>
-      <blockValign value="TOP"/>
-      <lineStyle kind="LINEBEFORE" colorName="#e6e6e6" start="0,0" stop="0,-1"/>
-      <lineStyle kind="LINEABOVE" colorName="#e6e6e6" start="0,0" stop="0,0"/>
-      <lineStyle kind="LINEBELOW" colorName="#e6e6e6" start="0,-1" stop="0,-1"/>
-      <lineStyle kind="LINEBEFORE" colorName="#e6e6e6" start="1,0" stop="1,-1"/>
-      <lineStyle kind="LINEABOVE" colorName="#e6e6e6" start="1,0" stop="1,0"/>
-      <lineStyle kind="LINEBELOW" colorName="#e6e6e6" start="1,-1" stop="1,-1"/>
-      <lineStyle kind="LINEBEFORE" colorName="#e6e6e6" start="2,0" stop="2,-1"/>
-      <lineStyle kind="LINEABOVE" colorName="#e6e6e6" start="2,0" stop="2,0"/>
-      <lineStyle kind="LINEBELOW" colorName="#e6e6e6" start="2,-1" stop="2,-1"/>
-      <lineStyle kind="LINEBEFORE" colorName="#e6e6e6" start="3,0" stop="3,-1"/>
-      <lineStyle kind="LINEAFTER" colorName="#e6e6e6" start="3,0" stop="3,-1"/>
-      <lineStyle kind="LINEABOVE" colorName="#e6e6e6" start="3,0" stop="3,0"/>
-      <lineStyle kind="LINEBELOW" colorName="#e6e6e6" start="3,-1" stop="3,-1"/>
-    </blockTableStyle>
-    <blockTableStyle id="Table_Header_Pur_ord_Line">
-      <blockAlignment value="LEFT"/>
-      <blockValign value="TOP"/>
-      <lineStyle kind="LINEBELOW" colorName="#000000" start="0,-1" stop="0,-1"/>
-      <lineStyle kind="LINEBELOW" colorName="#000000" start="1,-1" stop="1,-1"/>
-      <lineStyle kind="LINEBELOW" colorName="#000000" start="2,-1" stop="2,-1"/>
-      <lineStyle kind="LINEBELOW" colorName="#000000" start="3,-1" stop="3,-1"/>
-      <lineStyle kind="LINEBELOW" colorName="#000000" start="4,-1" stop="4,-1"/>
-      <lineStyle kind="LINEBELOW" colorName="#000000" start="5,-1" stop="5,-1"/>
-    </blockTableStyle>
-    <blockTableStyle id="Table_Order_Pur_line_Content">
-      <blockAlignment value="LEFT"/>
-      <blockValign value="TOP"/>
-      <lineStyle kind="LINEBELOW" colorName="#e6e6e6" start="0,-1" stop="0,-1"/>
-      <lineStyle kind="LINEBELOW" colorName="#e6e6e6" start="1,-1" stop="1,-1"/>
-      <lineStyle kind="LINEBELOW" colorName="#e6e6e6" start="2,-1" stop="2,-1"/>
-      <lineStyle kind="LINEBELOW" colorName="#e6e6e6" start="3,-1" stop="3,-1"/>
-      <lineStyle kind="LINEBELOW" colorName="#e6e6e6" start="4,-1" stop="4,-1"/>
-      <lineStyle kind="LINEBELOW" colorName="#e6e6e6" start="5,-1" stop="5,-1"/>
-      <lineStyle kind="LINEBELOW" colorName="#e6e6e6" start="0,-1" stop="0,-1"/>
-      <lineStyle kind="LINEBELOW" colorName="#e6e6e6" start="1,-1" stop="1,-1"/>
-      <lineStyle kind="LINEBELOW" colorName="#e6e6e6" start="2,-1" stop="2,-1"/>
-      <lineStyle kind="LINEBELOW" colorName="#e6e6e6" start="3,-1" stop="3,-1"/>
-      <lineStyle kind="LINEBELOW" colorName="#e6e6e6" start="4,-1" stop="4,-1"/>
-      <lineStyle kind="LINEBELOW" colorName="#e6e6e6" start="5,-1" stop="5,-1"/>
-    </blockTableStyle>
-    <blockTableStyle id="Table_All_Total_Detail">
-      <blockAlignment value="LEFT"/>
-      <blockValign value="TOP"/>
-      <lineStyle kind="LINEABOVE" colorName="#ffffff" start="0,0" stop="0,0"/>
-      <lineStyle kind="LINEABOVE" colorName="#000000" start="1,0" stop="1,0"/>
-      <lineStyle kind="LINEABOVE" colorName="#000000" start="2,0" stop="2,0"/>
-      <lineStyle kind="LINEABOVE" colorName="#000000" start="1,2" stop="1,2"/>
-      <lineStyle kind="LINEABOVE" colorName="#000000" start="2,2" stop="2,2"/>
-    </blockTableStyle>
-    <blockTableStyle id="Table_Outer_Notes">
-      <blockAlignment value="LEFT"/>
-      <blockValign value="TOP"/>
-    </blockTableStyle>
-    <initialize>
-      <paraStyle name="all" alignment="justify"/>
-    </initialize>
-    <paraStyle name="P1" fontName="Times-Roman" alignment="RIGHT"/>
-    <paraStyle name="P2" fontName="Times-Roman" fontSize="8.0" leading="10"/>
-    <paraStyle name="P3" fontName="Helvetica" fontSize="8.0" leading="10"/>
-    <paraStyle name="P4" fontName="Helvetica" fontSize="10.0" leading="13"/>
-    <paraStyle name="P5" fontName="Times-Roman"/>
-    <paraStyle name="P6" fontName="Times-Roman" alignment="RIGHT"/>
-    <paraStyle name="P6l" fontName="Times-Roman" fontSize="6.0" leading="8" rightIndent="0.0" alignment="LEFT"/>
-    <paraStyle name="P6a" fontName="Times-Roman" fontSize="6.0" leading="8" alignment="LEFT"/>
-    <paraStyle name="P7a" fontName="Times-Roman" fontSize="8.0" leading="8" alignment="LEFT"/>
-    <paraStyle name="P7bl" fontName="Times-Roman" fontSize="8.0" leftIndent="0.0" leading="8" alignment="LEFT"/>
-    <paraStyle name="P7bc" fontName="Times-Bold" fontSize="8.0" leading="8" alignment="CENTER"/>
-    <paraStyle name="P7c" fontName="Times-Roman" fontSize="7.0" leading="8" alignment="CENTER"/>
-    <paraStyle name="P7l" fontName="Times-Roman" fontSize="7.0" leading="7" rightIndent="0.0" alignment="LEFT"/>
-    <paraStyle name="P7r" fontName="Times-Roman" fontSize="7.0" leading="8" rightIndent="0.0" alignment="RIGHT"/>
-    <paraStyle name="P7" fontName="Times-Roman"/>
-    <paraStyle name="P8" fontName="Helvetica" fontSize="12.0" leading="15"/>
-    <paraStyle name="P8a" fontName="Times-Roman" fontSize="8.0" leading="8" alignment="LEFT"/>
-    <paraStyle name="P9" fontName="Helvetica" fontSize="2.0" leading="3"/>
-    <paraStyle name="P9l" fontName="Times-Roman" fontSize="9.0" leading="8" alignment="LEFT"/>
-    <paraStyle name="P9r" fontName="Times-Roman" fontSize="9.0" leading="8" alignment="RIGHT"/>
-    <paraStyle name="P10" fontName="Times-Bold" fontSize="6.0" leading="8" alignment="CENTER"/>
-    <paraStyle name="P11" fontName="Times-Roman" fontSize="6.0" leading="8" alignment="CENTER"/>
-    <paraStyle name="P11l" fontName="Times-Roman" fontSize="11.0" leading="7" rightIndent="0.0" alignment="LEFT"/>
-    <paraStyle name="P12" fontName="Times-Roman" fontSize="6.0" leading="8" alignment="CENTER"/>
-    <paraStyle name="P12r" fontName="Times-Roman" fontSize="12.0" leading="12" rightIndent="0.1" alignment="RIGHT"/>
-    <paraStyle name="P12l" fontName="Times-Roman" fontSize="12.0" leading="12" rightIndent="0.0" alignment="LEFT"/>
-    <paraStyle name="Standard" fontName="Helvetica"/>
-    <paraStyle name="Text body" fontName="Helvetica" spaceBefore="0.0" spaceAfter="6.0"/>
-    <paraStyle name="Heading" fontName="Helvetica" fontSize="14.0" leading="17" spaceBefore="12.0" spaceAfter="6.0"/>
-    <paraStyle name="List" fontName="Helvetica" spaceBefore="0.0" spaceAfter="6.0"/>
-    <paraStyle name="Table Contents" fontName="Helvetica"/>
-    <paraStyle name="Table Heading" fontName="Helvetica" alignment="CENTER"/>
-    <paraStyle name="Caption" fontName="Helvetica" fontSize="12.0" leading="15" spaceBefore="6.0" spaceAfter="6.0"/>
-    <paraStyle name="Index" fontName="Helvetica"/>
-    <paraStyle name="Footer" fontName="Helvetica"/>
-    <paraStyle name="Horizontal Line" fontName="Helvetica" fontSize="6.0" leading="8" spaceBefore="0.0" spaceAfter="14.0"/>
-    <paraStyle name="terp_header" fontName="Helvetica-Bold" fontSize="12.0" leading="15" alignment="LEFT" spaceBefore="12.0" spaceAfter="6.0"/>
-    <paraStyle name="Heading 9" fontName="Helvetica-Bold" fontSize="75%" leading="NaN" spaceBefore="12.0" spaceAfter="6.0"/>
-    <paraStyle name="terp_tblheader_General" fontName="Helvetica-Bold" fontSize="8.0" leading="10" alignment="LEFT" spaceBefore="6.0" spaceAfter="6.0"/>
-    <paraStyle name="terp_tblheader_Details" fontName="Helvetica-Bold" fontSize="9.0" leading="11" alignment="LEFT" spaceBefore="6.0" spaceAfter="6.0"/>
-    <paraStyle name="terp_default_8" fontName="Helvetica" fontSize="8.0" leading="10" alignment="LEFT" spaceBefore="0.0" spaceAfter="0.0"/>
-    <paraStyle name="terp_default_Bold_8" fontName="Helvetica-Bold" fontSize="8.0" leading="10" alignment="LEFT" spaceBefore="0.0" spaceAfter="0.0"/>
-    <paraStyle name="terp_tblheader_General_Centre" fontName="Helvetica-Bold" fontSize="8.0" leading="10" alignment="CENTER" spaceBefore="6.0" spaceAfter="6.0"/>
-    <paraStyle name="terp_tblheader_General_Right" fontName="Helvetica-Bold" fontSize="8.0" leading="10" alignment="RIGHT" spaceBefore="6.0" spaceAfter="6.0"/>
-    <paraStyle name="terp_tblheader_Details_Centre" fontName="Helvetica-Bold" fontSize="9.0" leading="11" alignment="CENTER" spaceBefore="6.0" spaceAfter="6.0"/>
-    <paraStyle name="terp_tblheader_Details_Right" fontName="Helvetica-Bold" fontSize="9.0" leading="11" alignment="RIGHT" spaceBefore="6.0" spaceAfter="6.0"/>
-    <paraStyle name="terp_default_Right_8" fontName="Helvetica" fontSize="8.0" leading="10" alignment="RIGHT" spaceBefore="0.0" spaceAfter="0.0"/>
-    <paraStyle name="terp_default_Centre_8" fontName="Helvetica" fontSize="8.0" leading="10" alignment="CENTER" spaceBefore="0.0" spaceAfter="0.0"/>
-    <paraStyle name="terp_header_Right" fontName="Helvetica-Bold" fontSize="15.0" leading="19" alignment="LEFT" spaceBefore="12.0" spaceAfter="6.0"/>
-    <paraStyle name="terp_header_Centre" fontName="Helvetica-Bold" fontSize="12.0" leading="15" alignment="CENTER" spaceBefore="12.0" spaceAfter="6.0"/>
-    <paraStyle name="terp_default_address" fontName="Helvetica" fontSize="10.0" leading="13" alignment="LEFT" spaceBefore="0.0" spaceAfter="0.0"/>
-    <paraStyle name="terp_default_9" fontName="Helvetica" fontSize="9.0" leading="11" alignment="LEFT" spaceBefore="0.0" spaceAfter="0.0"/>
-    <paraStyle name="terp_default_Bold_9" fontName="Helvetica-Bold" fontSize="9.0" leading="11" alignment="LEFT" spaceBefore="0.0" spaceAfter="0.0"/>
-    <paraStyle name="terp_default_Centre_9" fontName="Helvetica" fontSize="9.0" leading="11" alignment="CENTER" spaceBefore="0.0" spaceAfter="0.0"/>
-    <paraStyle name="terp_default_Right_9" fontName="Helvetica" fontSize="9.0" leading="11" alignment="RIGHT" spaceBefore="0.0" spaceAfter="0.0"/>
-    <paraStyle name="terp_default_Bold_9_Right" fontName="Helvetica-Bold" fontSize="9.0" leading="11" alignment="RIGHT" spaceBefore="0.0" spaceAfter="0.0"/>
-    <paraStyle name="terp_default_8_Italic" fontName="Helvetica-Oblique" fontSize="8.0" leading="10" alignment="LEFT" spaceBefore="0.0" spaceAfter="0.0"/>
-    <paraStyle name="terp_default_2" fontName="Helvetica" fontSize="2.0" leading="3" alignment="LEFT" spaceBefore="0.0" spaceAfter="0.0"/>
-    <images/>
-  </stylesheet>
-  <story>
-  <pto>
-  <para style="terp_default_8">[[repeatIn(objects,'o')]]</para>
-
-    <blockTable colWidths="292.0,272.0,20.0" >
-      <tr>
-        <td>
-        </td>
-        <td>
-            <para style="P12r">[[ formatLang(o.prescription_date,date = True)  ]]</para>
-        </td>
-        <td>
-        </td>
-      </tr>
-      <tr>
-        <td>
-        </td>
-        <td>
-            <para style="P6">
-                <font color="white"> </font>
-            </para>
-            <para style="P6">
-                <font color="white"> </font>
-            </para>
-            <para style="P12l">Patient: [[ o.patient_id.name ]]</para>
-        </td>
-        <td>
-        </td>
-      </tr>
-    </blockTable>
-    <section>
-      <para style="terp_default_1">[[ repeatIn(o.prescription_line,'pres_line') ]]</para>
-      <blockTable colWidths="292.0,270.0,20.0" >
-            <tr>
-                <td>
-                    <para style="P7l">  </para>
-                </td>
-                <td>
-                    <para style="P12l">Medicament: [[ (pres_line.template.medicament_id.product_id.name) or '' ]]</para>
-                    <para style="P12l">Active Component: [[ (pres_line.template.medicament_id.active_component) or '' ]]</para>
-                </td>
-                <td>
-                    <para style="P7l">  </para>
-                </td>
-            </tr>
-            <tr>
-                <td>
-                    <para style="P7l">  </para>
-                </td>
-                <td>
-                    <para style="P11l">Dose: [[  (pres_line.dose) or '0' ]] [[ (pres_line.dose_unit.name) or '0' ]] [[ pres_line.duration ]] [[ pres_line.duration_period ]] - Frequency: [[  (pres_line.frequency) or '0' ]]  ( [[ (pres_line.admin_times) ]] ) </para>
-                </td>
-                <td>
-                    <para style="P7l">  </para>
-                </td>
-            </tr>
-      </blockTable>
-    </section>
-    <blockTable colWidths="292.0,272.0,20.0" >
-      <tr>
-        <td>
-        </td>
-        <td>
-            <para style="P6">
-                <font color="white"> </font>
-            </para>
-            <para style="P6">
-                <font color="white"> </font>
-            </para>
-            <para style="P6">
-                <font color="white"> </font>
-            </para>
-            <para style="P6">
-                <font color="white"> </font>
-            </para>
-        </td>
-        <td>
-        </td>
-      </tr>
-      <tr>
-        <td>
-        </td>
-        <td>
-            <para style="P6">
-                <font color="white"> </font>
-            </para>
-            <para style="P6">
-                <font color="white"> </font>
-            </para>
-            <para style="P6">
-                <font color="white"> </font>
-            </para>
-            <para style="P6">
-                <font color="white"> </font>
-            </para>
-        </td>
-        <td>
-        </td>
-      </tr>
-      <tr>
-        <td>
-        </td>
-        <td>
-
-            <para style="P6">
-                <font color="white"> </font>
-            </para>
-            <para style="P12l">[[ o.physician_id.name ]]</para>
-
-        </td>
-        <td>
-        </td>
-      </tr>
-    </blockTable>
-            
-
-
-    <para style="terp_default_9">
-      <font color="white"> </font>
-    </para>
-  </pto>
-  </story>
-</document>

=== removed directory 'oemedical/oemedical_procedure'
=== removed file 'oemedical/oemedical_procedure/__init__.py'
--- oemedical/oemedical_procedure/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_procedure/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_procedure
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/oemedical_secondary_condition'
=== removed file 'oemedical/oemedical_secondary_condition/__init__.py'
--- oemedical/oemedical_secondary_condition/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_secondary_condition/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_secondary_condition
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/oemedical_signs_and_symptoms'
=== removed file 'oemedical/oemedical_signs_and_symptoms/__init__.py'
--- oemedical/oemedical_signs_and_symptoms/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_signs_and_symptoms/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_signs_and_symptoms
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/oemedical_socioeconomics'
=== removed file 'oemedical/oemedical_socioeconomics/__init__.py'
--- oemedical/oemedical_socioeconomics/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_socioeconomics/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,24 +0,0 @@
-# -*- coding: utf-8 -*-
-##############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-##############################################################################
-
-
-import oemedical_socioeconomics

=== removed directory 'oemedical/oemedical_specialty'
=== removed file 'oemedical/oemedical_specialty/__init__.py'
--- oemedical/oemedical_specialty/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_specialty/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_specialty
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed file 'oemedical/oemedical_surgery/__init__.py'
--- oemedical/oemedical_surgery/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_surgery/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,1 +0,0 @@
-import medical_surgery 

=== removed file 'oemedical/oemedical_surgery/__openerp__.py'
--- oemedical/oemedical_surgery/__openerp__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_surgery/__openerp__.py	1970-01-01 00:00:00 +0000
@@ -1,19 +0,0 @@
-# -*- encoding: utf-8 -*-
-{
-
-	'name' : 'Medical : Surgery module',  
-	'version' : '1.0',
-	'author' : 'Thymbra',
-	'category' : 'Generic Modules/Others',
-	'depends' : ['medical'],
-	'description' : """
-
-Surgery Module for Medical.
-
-If you want to include standard procedures, please install the correspondant procedure module (such as medical_icd10)
-""",
-	"website" : "http://medical.sourceforge.net";,
-	"init_xml" : [],
-	"update_xml" : ["medical_surgery_view.xml","security/ir.model.access.csv"],
-	"active": False 
-}

=== removed directory 'oemedical/oemedical_surgery/data'
=== renamed file 'oemedical/oemedical_surgery/i18n/de.po' => 'oemedical/oemedical_surgery/i18n/de.po.THIS'
=== renamed file 'oemedical/oemedical_surgery/i18n/es.po' => 'oemedical/oemedical_surgery/i18n/es.po.THIS'
=== removed file 'oemedical/oemedical_surgery/i18n/es_AR.po'
--- oemedical/oemedical_surgery/i18n/es_AR.po	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_surgery/i18n/es_AR.po	1970-01-01 00:00:00 +0000
@@ -1,141 +0,0 @@
-# Translation of OpenERP Server.
-# This file contains the translation of the following modules:
-# 
-msgid ""
-msgstr ""
-"Project-Id-Version: Medical\n"
-"Report-Msgid-Bugs-To: https://sourceforge.net/apps/mantisbt/medical\n";
-"POT-Creation-Date: 2010-12-05 21:38:03+0000\n"
-"PO-Revision-Date: 2011-01-10 22:20+0000\n"
-"Last-Translator: mariomop <mariomop@xxxxxxxxx>\n"
-"Language-Team: Spanish (Argentinian) <>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Language: es_AR\n"
-"Plural-Forms: nplurals=2; plural=(n != 1)\n"
-
-#. module: medical_surgery
-#: constraint:ir.model:0
-msgid "The Object name must start with x_ and not contain any special character !"
-msgstr "¡El nombre del Objeto debe empezar con x_ y no contener ningún carácter especial!"
-
-#. module: medical_surgery
-#: model:ir.module.module,shortdesc:medical_surgery.module_meta_information
-msgid "Medical : Surgery module"
-msgstr "Medical: Módulo de Cirugía"
-
-#. module: medical_surgery
-#: field:medical.surgery,pathology:0
-msgid "Base condition"
-msgstr "Condición base"
-
-#. module: medical_surgery
-#: field:medical.surgery,classification:0
-msgid "Surgery Classification"
-msgstr "Clasificación de la Intervención"
-
-#. module: medical_surgery
-#: help:medical.surgery,name:0
-msgid "Procedure Code, for example ICD-10-PCS Code 7-character string"
-msgstr "Códigos de Procedimiento, por ejemplo CIE-10-PCS Código de 7 caracteres"
-
-#. module: medical_surgery
-#: help:medical.surgery,age:0
-msgid "Patient age at the moment of the surgery. Can be estimative"
-msgstr "Edad del paciente al momento de la intervención quirúrgica. Puede ser estimativa"
-
-#. module: medical_surgery
-#: field:medical.surgery,surgeon:0
-msgid "Surgeon"
-msgstr "Cirujano"
-
-#. module: medical_surgery
-#: selection:medical.surgery,classification:0
-msgid "Optional"
-msgstr "Opcional"
-
-#. module: medical_surgery
-#: constraint:ir.ui.view:0
-msgid "Invalid XML for View Architecture!"
-msgstr "XML inválido para la definición de la vista"
-
-#. module: medical_surgery
-#: help:medical.surgery,surgeon:0
-msgid "Surgeon who did the procedure"
-msgstr "Cirujano que intervino en la operación"
-
-#. module: medical_surgery
-#: model:ir.module.module,description:medical_surgery.module_meta_information
-msgid ""
-"\n"
-"\n"
-"Surgery Module for Medical.\n"
-"\n"
-"If you want to include standard procedures, please install the correspondant procedure module (such as medical_icd10)\n"
-msgstr ""
-"\n"
-"Módulo de Cirugía para Medical.\n"
-"\n"
-"Si quiere incluir procedimientos estándar, por favor instale el correspondiente módulo del procedimiento (como medical_icd10)\n"
-
-#. module: medical_surgery
-#: selection:medical.surgery,classification:0
-msgid "Required"
-msgstr "Requerido"
-
-#. module: medical_surgery
-#: field:medical.surgery,date:0
-msgid "Date of the surgery"
-msgstr "Fecha de la operación"
-
-#. module: medical_surgery
-#: view:medical.patient:0 field:medical.patient,surgery:0
-msgid "Surgeries"
-msgstr "Cirugías"
-
-#. module: medical_surgery
-#: view:medical.procedure:0
-msgid "Procedure"
-msgstr "Procedimiento"
-
-#. module: medical_surgery
-#: field:medical.surgery,description:0
-msgid "Description"
-msgstr "Descripción"
-
-#. module: medical_surgery
-#: field:medical.surgery,name:0
-msgid "Code"
-msgstr "Código"
-
-#. module: medical_surgery
-#: help:medical.surgery,pathology:0
-msgid "Base Condition / Reason"
-msgstr "Condición de base / Razón"
-
-#. module: medical_surgery
-#: selection:medical.surgery,classification:0
-msgid "Urgent"
-msgstr "Urgente"
-
-#. module: medical_surgery
-#: field:medical.surgery,extra_info:0
-msgid "Extra Info"
-msgstr "Información extra"
-
-#. module: medical_surgery
-#: field:medical.surgery,age:0
-msgid "Patient age"
-msgstr "Edad del paciente"
-
-#. module: medical_surgery
-#: model:ir.model,name:medical_surgery.model_medical_patient
-msgid "Patient related information"
-msgstr "Información relativa al paciente"
-
-#. module: medical_surgery
-#: model:ir.model,name:medical_surgery.model_medical_surgery
-#: view:medical.surgery:0
-msgid "Surgery"
-msgstr "Cirugía"

=== removed file 'oemedical/oemedical_surgery/i18n/fr_FR.po'
--- oemedical/oemedical_surgery/i18n/fr_FR.po	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_surgery/i18n/fr_FR.po	1970-01-01 00:00:00 +0000
@@ -1,140 +0,0 @@
-# Translation of OpenERP Server.
-# This file contains the translation of the following modules:
-# 
-msgid ""
-msgstr ""
-"Project-Id-Version: Medical\n"
-"Report-Msgid-Bugs-To: https://sourceforge.net/apps/mantisbt/medical\n";
-"POT-Creation-Date: 2010-12-05 21:38:03+0000\n"
-"PO-Revision-Date: 2011-02-05 18:44+0000\n"
-"Last-Translator: gestionRessources <klinik_mailinglist@xxxxxxxxxxxxxxxxxxxxxx>\n"
-"Language-Team: French (France) <>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Language: fr_FR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1)\n"
-
-#. module: medical_surgery
-#: constraint:ir.model:0
-msgid "The Object name must start with x_ and not contain any special character !"
-msgstr "Le nom de l'objet doit commencer par x_ et ne pas contenir de caractères spéciaux!"
-
-#. module: medical_surgery
-#: model:ir.module.module,shortdesc:medical_surgery.module_meta_information
-msgid "Medical : Surgery module"
-msgstr "Médical: Module Chirurgie"
-
-#. module: medical_surgery
-#: field:medical.surgery,pathology:0
-msgid "Base condition"
-msgstr "Condition de base"
-
-#. module: medical_surgery
-#: field:medical.surgery,classification:0
-msgid "Surgery Classification"
-msgstr "Classification de l'intervention"
-
-#. module: medical_surgery
-#: help:medical.surgery,name:0
-msgid "Procedure Code, for example ICD-10-PCS Code 7-character string"
-msgstr "Code de la procédure : par exemple CIM-10-PCS Code 7-chaine de caractères"
-
-#. module: medical_surgery
-#: help:medical.surgery,age:0
-msgid "Patient age at the moment of the surgery. Can be estimative"
-msgstr "Age du patient au moment de l'intervention - peut être approximatif"
-
-#. module: medical_surgery
-#: field:medical.surgery,surgeon:0
-msgid "Surgeon"
-msgstr "Chirurgien"
-
-#. module: medical_surgery
-#: selection:medical.surgery,classification:0
-msgid "Optional"
-msgstr "Facultatif"
-
-#. module: medical_surgery
-#: constraint:ir.ui.view:0
-msgid "Invalid XML for View Architecture!"
-msgstr "Architecture  XML non valide pour la vue!"
-
-#. module: medical_surgery
-#: help:medical.surgery,surgeon:0
-msgid "Surgeon who did the procedure"
-msgstr "Chirurgien qui a effectué l'intervention"
-
-#. module: medical_surgery
-#: model:ir.module.module,description:medical_surgery.module_meta_information
-msgid ""
-"\n"
-"\n"
-"Surgery Module for Medical.\n"
-"\n"
-"If you want to include standard procedures, please install the correspondant procedure module (such as medical_icd10)\n"
-msgstr ""
-"Module Chirurgie. \n"
-"\n"
-"Si vous souhaitez inclure les procédures standards, s'il vous plaît installer le module correspondant de procédure (par exemple  medical_icd10 (CIM-10))\n"
-
-#. module: medical_surgery
-#: selection:medical.surgery,classification:0
-msgid "Required"
-msgstr "Requis"
-
-#. module: medical_surgery
-#: field:medical.surgery,date:0
-msgid "Date of the surgery"
-msgstr "Date de la chirurgie"
-
-#. module: medical_surgery
-#: view:medical.patient:0 field:medical.patient,surgery:0
-msgid "Surgeries"
-msgstr "Chirurgies"
-
-#. module: medical_surgery
-#: view:medical.procedure:0
-msgid "Procedure"
-msgstr "Intervention"
-
-#. module: medical_surgery
-#: field:medical.surgery,description:0
-msgid "Description"
-msgstr "Description"
-
-#. module: medical_surgery
-#: field:medical.surgery,name:0
-msgid "Code"
-msgstr "Code"
-
-#. module: medical_surgery
-#: help:medical.surgery,pathology:0
-msgid "Base Condition / Reason"
-msgstr "Condition de base / Raison"
-
-#. module: medical_surgery
-#: selection:medical.surgery,classification:0
-msgid "Urgent"
-msgstr "Urgent"
-
-#. module: medical_surgery
-#: field:medical.surgery,extra_info:0
-msgid "Extra Info"
-msgstr "Info supplémentaire"
-
-#. module: medical_surgery
-#: field:medical.surgery,age:0
-msgid "Patient age"
-msgstr "Âge du patient"
-
-#. module: medical_surgery
-#: model:ir.model,name:medical_surgery.model_medical_patient
-msgid "Patient related information"
-msgstr "Renseignements sur le patient"
-
-#. module: medical_surgery
-#: model:ir.model,name:medical_surgery.model_medical_surgery
-#: view:medical.surgery:0
-msgid "Surgery"
-msgstr "Chirurgie"

=== renamed file 'oemedical/oemedical_surgery/i18n/it.po' => 'oemedical/oemedical_surgery/i18n/it.po.THIS'
=== removed file 'oemedical/oemedical_surgery/i18n/medical_surgery.pot'
--- oemedical/oemedical_surgery/i18n/medical_surgery.pot	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_surgery/i18n/medical_surgery.pot	1970-01-01 00:00:00 +0000
@@ -1,139 +0,0 @@
-# Translation of OpenERP Server.
-# This file contains the translation of the following modules:
-#	* medical_surgery
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
-"Report-Msgid-Bugs-To: support@xxxxxxxxxxx\n"
-"POT-Creation-Date: 2010-12-05 21:38:03+0000\n"
-"PO-Revision-Date: 2010-12-05 21:38:03+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Plural-Forms: \n"
-
-#. module: medical_surgery
-#: constraint:ir.model:0
-msgid "The Object name must start with x_ and not contain any special character !"
-msgstr ""
-
-#. module: medical_surgery
-#: model:ir.module.module,shortdesc:medical_surgery.module_meta_information
-msgid "Medical : Surgery module"
-msgstr ""
-
-#. module: medical_surgery
-#: field:medical.surgery,pathology:0
-msgid "Base condition"
-msgstr ""
-
-#. module: medical_surgery
-#: field:medical.surgery,classification:0
-msgid "Surgery Classification"
-msgstr ""
-
-#. module: medical_surgery
-#: help:medical.surgery,name:0
-msgid "Procedure Code, for example ICD-10-PCS Code 7-character string"
-msgstr ""
-
-#. module: medical_surgery
-#: help:medical.surgery,age:0
-msgid "Patient age at the moment of the surgery. Can be estimative"
-msgstr ""
-
-#. module: medical_surgery
-#: field:medical.surgery,surgeon:0
-msgid "Surgeon"
-msgstr ""
-
-#. module: medical_surgery
-#: selection:medical.surgery,classification:0
-msgid "Optional"
-msgstr ""
-
-#. module: medical_surgery
-#: constraint:ir.ui.view:0
-msgid "Invalid XML for View Architecture!"
-msgstr ""
-
-#. module: medical_surgery
-#: help:medical.surgery,surgeon:0
-msgid "Surgeon who did the procedure"
-msgstr ""
-
-#. module: medical_surgery
-#: model:ir.module.module,description:medical_surgery.module_meta_information
-msgid "\n"
-"\n"
-"Surgery Module for Medical.\n"
-"\n"
-"If you want to include standard procedures, please install the correspondant procedure module (such as medical_icd10)\n"
-""
-msgstr ""
-
-#. module: medical_surgery
-#: selection:medical.surgery,classification:0
-msgid "Required"
-msgstr ""
-
-#. module: medical_surgery
-#: field:medical.surgery,date:0
-msgid "Date of the surgery"
-msgstr ""
-
-#. module: medical_surgery
-#: view:medical.patient:0
-#: field:medical.patient,surgery:0
-msgid "Surgeries"
-msgstr ""
-
-#. module: medical_surgery
-#: view:medical.procedure:0
-msgid "Procedure"
-msgstr ""
-
-#. module: medical_surgery
-#: field:medical.surgery,description:0
-msgid "Description"
-msgstr ""
-
-#. module: medical_surgery
-#: field:medical.surgery,name:0
-msgid "Code"
-msgstr ""
-
-#. module: medical_surgery
-#: help:medical.surgery,pathology:0
-msgid "Base Condition / Reason"
-msgstr ""
-
-#. module: medical_surgery
-#: selection:medical.surgery,classification:0
-msgid "Urgent"
-msgstr ""
-
-#. module: medical_surgery
-#: field:medical.surgery,extra_info:0
-msgid "Extra Info"
-msgstr ""
-
-#. module: medical_surgery
-#: field:medical.surgery,age:0
-msgid "Patient age"
-msgstr ""
-
-#. module: medical_surgery
-#: model:ir.model,name:medical_surgery.model_medical_patient
-msgid "Patient related information"
-msgstr ""
-
-#. module: medical_surgery
-#: model:ir.model,name:medical_surgery.model_medical_surgery
-#: view:medical.surgery:0
-msgid "Surgery"
-msgstr ""
-

=== renamed file 'oemedical/oemedical_surgery/i18n/pt_BR.po' => 'oemedical/oemedical_surgery/i18n/pt_BR.po.THIS'
=== renamed file 'oemedical/oemedical_surgery/i18n/tr.po' => 'oemedical/oemedical_surgery/i18n/tr.po.THIS'
=== renamed file 'oemedical/oemedical_surgery/i18n/vi.po' => 'oemedical/oemedical_surgery/i18n/vi.po.THIS'
=== removed file 'oemedical/oemedical_surgery/medical_surgery.py'
--- oemedical/oemedical_surgery/medical_surgery.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_surgery/medical_surgery.py	1970-01-01 00:00:00 +0000
@@ -1,58 +0,0 @@
-# coding=utf-8
-
-#    Copyright (C) 2008-2010  Luis Falcon
-
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
-
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU General Public License for more details.
-
-#    You should have received a copy of the GNU General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-
-
-
-from osv import fields, osv
-
-
-class surgery (osv.osv):
-	_name = "medical.surgery"
-	_description = "Surgery"
-	_columns = {
-		'name' : fields.many2one ('medical.procedure','Code', help="Procedure Code, for example ICD-10-PCS Code 7-character string"),
-		'pathology' : fields.many2one ('medical.pathology','Base condition', help="Base Condition / Reason"),
-		'classification' : fields.selection ([
-				('o','Optional'),
-				('r','Required'),
-				('u','Urgent'),
-                                ], 'Surgery Classification', select=True),
-		'surgeon' : fields.many2one('medical.physician','Surgeon', help="Surgeon who did the procedure"),
-		'date': fields.datetime ('Date of the surgery'),
-		'age': fields.char ('Patient age',size=3,help='Patient age at the moment of the surgery. Can be estimative'),
-		'description' : fields.char ('Description', size=128),
-		'extra_info' : fields.text ('Extra Info'),
-		}
-
-surgery ()
-
-
-# Add to the Medical patient_data class (medical.patient) the surgery field.
-
-class medical_patient (osv.osv):
-	_name = "medical.patient"
-	_inherit = "medical.patient"
-	_columns = {
-		'surgery' : fields.many2many ('medical.surgery', 'patient_surgery_rel','patient_id','surgery_id', 'Surgeries'),
-		
-	}
-
-medical_patient ()
-
-
-
-

=== removed file 'oemedical/oemedical_surgery/medical_surgery_view.xml'
--- oemedical/oemedical_surgery/medical_surgery_view.xml	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_surgery/medical_surgery_view.xml	1970-01-01 00:00:00 +0000
@@ -1,91 +0,0 @@
-<?xml version="1.0" ?>
-<openerp>
-        <data>
-
-
-<!-- Surgery -->
-
-	<record model="ir.ui.view" id="medical_surgery_view">
-		<field name="name">Surgery</field>
-		<field name="model">medical.surgery</field>
-		<field name="type">form</field>
-			<field name="arch" type="xml">
-				<form string="Surgery">
-					<field name="name"></field>
-					<field name="description" required="1"></field>
-					<newline/>
-					<field name="pathology"></field>
-					<field name="classification"></field>
-					<newline/>
-					<field name="date"></field>
-					<field name="age"></field>
-					<field name="surgeon"></field>
-					<newline/>
-					<field name="extra_info" colspan='4'></field>
-				</form>
-			</field>
-	</record>
-
-
-		<record model="ir.ui.view" id="medical_surgery_tree">
-			<field name="name">Surgery Lists</field>
-			<field name="model">medical.surgery</field>
-			<field name="type">tree</field>
-			<field name="arch" type="xml">
-				<tree string='Surgery'>
-					<field name="name"></field>
-					<field name="description"></field>
-					<field name="pathology"></field>
-					<field name="classification"></field>
-					<field name="date"></field>
-				</tree>
-			</field>
-		</record>
-
-
-<!-- Procedure -->
-
-	<record model="ir.ui.view" id="medical_procedure_view">
-		<field name="name">Procedure</field>
-		<field name="model">medical.procedure</field>
-		<field name="type">form</field>
-			<field name="arch" type="xml">
-				<form string="Procedure">
-					<field name="name"></field>
-					<field name="description"></field>
-				</form>
-			</field>
-	</record>
-
-
-		<record model="ir.ui.view" id="medical_procedure_tree">
-			<field name="name">Procedure List</field>
-			<field name="model">medical.procedure</field>
-			<field name="type">tree</field>
-			<field name="arch" type="xml">
-				<tree string='Procedure'>
-					<field name="name"></field>
-					<field name="description"></field>
-				</tree>
-			</field>
-		</record>
-
-
-<!-- Include the Surgery page into the Patient History -->
-
-		<record model="ir.ui.view" id="medical_patient_view">
-			<field name="name">Patient</field>
-			<field name="model">medical.patient</field>
-                        <field name="inherit_id" ref="medical.medical_patient_view" />
-			<field name="type">form</field>
-			<field name="arch" type="xml">
-				<notebook>
-				        <page string="Surgeries">
-					        <field name="surgery" colspan="4" nolabel="1" widget="one2many_list"/>
-				        </page>
-				</notebook>
-			</field>
-		</record>
-	</data>
-</openerp>
-

=== removed directory 'oemedical/oemedical_surgery/security'
=== removed file 'oemedical/oemedical_surgery/security/ir.model.access.csv'
--- oemedical/oemedical_surgery/security/ir.model.access.csv	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_surgery/security/ir.model.access.csv	1970-01-01 00:00:00 +0000
@@ -1,2 +0,0 @@
-"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink"
-"access_medical_surgery","medical.surgery","model_medical_surgery","medical.group_medical_user",1,1,1,1

=== removed directory 'oemedical/oemedical_vaccination'
=== removed file 'oemedical/oemedical_vaccination/__init__.py'
--- oemedical/oemedical_vaccination/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/oemedical_vaccination/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import oemedical_vaccination
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/product_product'
=== removed file 'oemedical/product_product/__init__.py'
--- oemedical/product_product/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/product_product/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import product_product
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== removed directory 'oemedical/res_partner'
=== removed file 'oemedical/res_partner/__init__.py'
--- oemedical/res_partner/__init__.py	2013-09-09 22:50:51 +0000
+++ oemedical/res_partner/__init__.py	1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
-# -*- coding: utf-8 -*-
-#/#############################################################################
-#
-#    Tech-Receptives Solutions Pvt. Ltd.
-#    Copyright (C) 2004-TODAY Tech-Receptives(<http://www.techreceptives.com>)
-#    Special Credit and Thanks to Thymbra Latinoamericana S.A.
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#/#############################################################################
-import res_partner
-
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== modified file 'oemedical/security/ir.model.access.csv'
--- oemedical/security/ir.model.access.csv	2013-09-09 22:50:51 +0000
+++ oemedical/security/ir.model.access.csv	2013-11-25 05:38:52 +0000
@@ -1,41 +1,8 @@
 id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
-access_oemedical_secondary_condition,model,model_oemedical_secondary_condition,base.group_user,1,1,1,0
-access_oemedical_pathology_category,model,model_oemedical_pathology_category,base.group_user,1,1,1,0
-access_oemedical_signs_and_symptoms,model,model_oemedical_signs_and_symptoms,base.group_user,1,1,1,0
-access_product_product,model,model_product_product,base.group_user,1,1,1,0
-access_oemedical_physician,model,model_oemedical_physician,base.group_user,1,1,1,0
-access_oemedical_directions,model,model_oemedical_directions,base.group_user,1,1,1,0
-access_oemedical_insurance,model,model_oemedical_insurance,base.group_user,1,1,1,0
-access_res_partner,model,model_res_partner,base.group_user,1,1,1,0
-access_oemedical_pathology,model,model_oemedical_pathology,base.group_user,1,1,1,0
-access_oemedical_operational_area,model,model_oemedical_operational_area,base.group_user,1,1,1,0
-access_oemedical_ethnicity,model,model_oemedical_ethnicity,base.group_user,1,1,1,0
-access_oemedical_operational_sector,model,model_oemedical_operational_sector,base.group_user,1,1,1,0
-access_oemedical_prescription_order,model,model_oemedical_prescription_order,base.group_user,1,1,1,0
-access_oemedical_medicament_category,model,model_oemedical_medicament_category,base.group_user,1,1,1,0
-access_oemedical_insurance_plan,model,model_oemedical_insurance_plan,base.group_user,1,1,1,0
-access_oemedical_diagnostic_hypothesis,model,model_oemedical_diagnostic_hypothesis,base.group_user,1,1,1,0
-access_oemedical_procedure,model,model_oemedical_procedure,base.group_user,1,1,1,0
-access_oemedical_medication_template,model,model_oemedical_medication_template,base.group_user,1,1,1,0
-access_oemedical_vaccination,model,model_oemedical_vaccination,base.group_user,1,1,1,0
-access_oemedical_medication_dosage,model,model_oemedical_medication_dosage,base.group_user,1,1,1,0
-access_oemedical_family_member,model,model_oemedical_family_member,base.group_user,1,1,1,0
-access_oemedical_hospital_ward,model,model_oemedical_hospital_ward,base.group_user,1,1,1,0
-access_oemedical_hospital_or,model,model_oemedical_hospital_or,base.group_user,1,1,1,0
-access_oemedical_drug_form,model,model_oemedical_drug_form,base.group_user,1,1,1,0
-access_oemedical_patient_medication,model,model_oemedical_patient_medication,base.group_user,1,1,1,0
-access_oemedical_patient_evaluation,model,model_oemedical_patient_evaluation,base.group_user,1,1,1,0
-access_oemedical_hospital_building,model,model_oemedical_hospital_building,base.group_user,1,1,1,0
-access_oemedical_patient,model,model_oemedical_patient,base.group_user,1,1,1,0
-access_oemedical_prescription_line,model,model_oemedical_prescription_line,base.group_user,1,1,1,0
-access_oemedical_patient_disease,model,model_oemedical_patient_disease,base.group_user,1,1,1,0
-access_oemedical_drug_route,model,model_oemedical_drug_route,base.group_user,1,1,1,0
-access_oemedical_hospital_unit,model,model_oemedical_hospital_unit,base.group_user,1,1,1,0
-access_oemedical_appointment,model,model_oemedical_appointment,base.group_user,1,1,1,0
-access_oemedical_specialty,model,model_oemedical_specialty,base.group_user,1,1,1,0
-access_oemedical_family,model,model_oemedical_family,base.group_user,1,1,1,0
-access_oemedical_hospital_bed,model,model_oemedical_hospital_bed,base.group_user,1,1,1,0
-access_oemedical_occupation,model,model_oemedical_occupation,base.group_user,1,1,1,0
-access_oemedical_disease_group_members,model,model_oemedical_disease_group_members,base.group_user,1,1,1,0
-access_oemedical_medicament,model,model_oemedical_medicament,base.group_user,1,1,1,0
-access_oemedical_pathology_group,model,model_oemedical_pathology_group,base.group_user,1,1,1,0
+access_product_product,model,model_product_product,group_oemedical_user,1,1,1,0
+access_res_partner,model,model_res_partner,group_oemedical_user,1,1,1,0
+access_oemedical_physician,model,model_oemedical_physician,group_oemedical_user,1,1,1,0
+access_oemedical_patient,model,model_oemedical_patient,group_oemedical_user,1,1,1,0
+access_oemedical_appointment_history,model,model_oemedical_appointment_history,group_oemedical_user,1,1,1,0
+access_oemedical_appointment,model,model_oemedical_appointment,group_oemedical_user,1,1,1,0
+access_oemedical_specialty,model,model_oemedical_specialty,group_oemedical_user,1,1,1,0

=== added file 'oemedical/security/oemedical_security.xml'
--- oemedical/security/oemedical_security.xml	1970-01-01 00:00:00 +0000
+++ oemedical/security/oemedical_security.xml	2013-11-25 05:38:52 +0000
@@ -0,0 +1,57 @@
+<?xml version="1.0" encoding="utf-8"?>
+<openerp>
+<data noupdate="0">
+
+    <record id="group_oemedical_user" model="res.groups">
+        <field name="name">OEMedical User</field>
+        <field name="category_id" ref="base.module_category_accounting_and_finance"/>
+        <field name="users" eval="[(4, ref('base.user_root'))]"/>
+        <field name="implied_ids" eval="[(4, ref('base.group_user'))]"/>
+    </record>
+
+    <record id="group_oemedical_doctor" model="res.groups">
+        <field name="name">OEMedical Doctor</field>
+        <field name="category_id" ref="base.module_category_accounting_and_finance"/>
+        <field name="users" eval="[(4, ref('base.user_root'))]"/>
+        <field name="implied_ids" eval="[(4, ref('group_oemedical_user')),(4, ref('base.group_user'))]"/>
+    </record>
+
+    <record id="group_oemedical_assistant" model="res.groups">
+        <field name="name">OEMedical Assistant</field>
+        <field name="category_id" ref="base.module_category_accounting_and_finance"/>
+        <field name="users" eval="[(4, ref('base.user_root'))]"/>
+        <field name="implied_ids" eval="[(4, ref('group_oemedical_user')),(4, ref('base.group_user'))]"/>
+    </record>
+
+    <record id="group_oemedical_center_manager" model="res.groups">
+        <field name="name">OEMedical Center Manager</field>
+        <field name="category_id" ref="base.module_category_accounting_and_finance"/>
+        <field name="implied_ids" eval="[(4, ref('group_oemedical_user')),(4, ref('group_oemedical_doctor'))]"/>
+    </record>
+
+    <record id="group_oemedical_manager" model="res.groups">
+        <field name="name">OEMedical Manager</field>
+        <field name="category_id" ref="base.module_category_accounting_and_finance"/>
+        <field name="implied_ids" eval="[(4, ref('group_oemedical_center_manager'))]"/>
+    </record>
+
+</data>
+
+<data noupdate="0">
+    <record id="oemedical_appointment_access_rule_physician" model="ir.rule">
+        <field name="name">Appointment Entry</field>
+        <field name="model_id" ref="model_oemedical_appointment"/>
+        <field name="global" eval="True"/>
+        <field name="groups" eval="[(4, ref('group_oemedical_doctor'))]"/>
+        <field name="domain_force">[('doctor.user_id', '=', user.id)]</field>
+    </record>
+
+    <record id="oemedical_appointment_access_rule_assistant" model="ir.rule">
+        <field name="name">Appointment Entry</field>
+        <field name="model_id" ref="model_oemedical_appointment"/>
+        <field name="global" eval="True"/>
+        <field name="groups" eval="[(4, ref('group_oemedical_assistant'))]"/>
+        <field name="domain_force">[('institution','=',user.parent_id.id)]</field>
+    </record>
+</data>
+</openerp>

=== removed directory 'oemedical/sequence'
=== removed file 'oemedical/sequence/oemedical_sequence.xml'
--- oemedical/sequence/oemedical_sequence.xml	2013-09-09 22:50:51 +0000
+++ oemedical/sequence/oemedical_sequence.xml	1970-01-01 00:00:00 +0000
@@ -1,46 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<openerp>
-    <data noupdate="1">
-
-        <!-- Sequences for oemedical.patient -->
-        <record id="seq_type_oemedical_patient" model="ir.sequence.type">
-            <field name="name">OeMedical Patient</field>
-            <field name="code">oemedical.patient</field>
-        </record>
-
-        <record id="seq_oemedical_patient" model="ir.sequence">
-            <field name="name">OeMedical Patient</field>
-            <field name="code">oemedical.patient</field>
-            <field name="prefix">IP</field>
-            <field name="padding">3</field>
-        </record>
-        
-        <!-- Sequences for oemedical.appointment -->
-        <record id="seq_type_oemedical_appointment" model="ir.sequence.type">
-            <field name="name">OeMedical Appointment</field>
-            <field name="code">oemedical.appointment</field>
-        </record>
-
-        <record id="seq_oemedical_appointment" model="ir.sequence">
-            <field name="name">OeMedical Appointment</field>
-            <field name="code">oemedical.appointment</field>
-            <field name="prefix">AP</field>
-            <field name="padding">3</field>
-        </record>
-        
-        <!-- Sequences for oemedical.prescription.order -->
-        <record id="seq_type_oemedical_prescription_order" model="ir.sequence.type">
-            <field name="name">OeMedical Prescription Order</field>
-            <field name="code">oemedical.prescription.order</field>
-        </record>
-
-        <record id="seq_oemedical_prescription_order" model="ir.sequence">
-            <field name="name">OeMedical Prescription Order</field>
-            <field name="code">oemedical.prescription.order</field>
-            <field name="prefix">PRO</field>
-            <field name="padding">3</field>
-        </record>
-		
-		
-    </data>
-</openerp>
\ No newline at end of file

=== added directory 'oemedical/static/description'
=== added directory 'oemedical/static/src/js'
=== added directory 'oemedical/static/src/xml'
=== removed directory 'oemedical/test'
=== removed file 'oemedical/test/insurance.yml'
--- oemedical/test/insurance.yml	2013-09-09 22:50:51 +0000
+++ oemedical/test/insurance.yml	1970-01-01 00:00:00 +0000
@@ -1,9 +0,0 @@
--
-  Create New Insurance
--
-  !record {model: oemedical.insurance, id: oe_ins_1}:
-    name: Medical Insurance
-    category: Medical
-    company: ins_com_lombard
-    plan_id: oe_insplan_1
-    number: 101   
\ No newline at end of file

=== removed file 'oemedical/test/insurance_plan.yml'
--- oemedical/test/insurance_plan.yml	2013-09-09 22:50:51 +0000
+++ oemedical/test/insurance_plan.yml	1970-01-01 00:00:00 +0000
@@ -1,8 +0,0 @@
--
-  Create New Insurance Plan
--
-  !record {model: oemedical.insurance.plan, id: oe_insplan_1}:
-    name: Medical Insurance - Surgery
-    is_default: True
-    company: ins_com_lombard
-    
\ No newline at end of file

=== removed file 'oemedical/test/partners.yml'
--- oemedical/test/partners.yml	2013-09-09 22:50:51 +0000
+++ oemedical/test/partners.yml	1970-01-01 00:00:00 +0000
@@ -1,26 +0,0 @@
--
-  Create New Insurance Company
--
-  !record {model: res.partner, id: ins_com_lombard}:
-    name: Lombard Insurance Group
-    is_company: True
-    street: Ground Floor, Building C
-    street2: Sunnyside Office Park,2 Carse O'Gowrie Road
-    city: Parktown
-    country_id: base.us
-    phone: +325-5689871
-    email: info@xxxxxxxxxxx
-
-
--
-  Create New Hospital Information
--
-  !record {model: res.partner, id: ins_hos_marco}:
-    name: Marcopolo Institute of Health
-    is_company: True
-    street: 3rd Floor Sunclare
-    street2: 21 Dreyer Street
-    city: Claremont
-    country_id: base.us
-    phone: +325-6325842
-    email: info@xxxxxxxxxxxxx

=== removed file 'oemedical/test/patient.yml'
--- oemedical/test/patient.yml	2013-09-09 22:50:51 +0000
+++ oemedical/test/patient.yml	1970-01-01 00:00:00 +0000
@@ -1,11 +0,0 @@
--
-  Create New Patient Arun B Soni
--
-  !record {model: oemedical.patient, id: oe_patient_arun}:
-    name: Arun
-    lastname: Soni
-    dob: !eval time.strftime('1990-07-24')
-    ssn: 'BDM87654PN'
-    age: 22
-    identification_code: 'P101'
-    photo: '/9j/4AAQSkZJRgABAQEAYABgAAD/7AARRHVja3kAAQAEAAAAQQAA/9sAQwACAQECAQECAgICAgICAgMFAwMDAwMGBAQDBQcGBwcHBgcHCAkLCQgICggHBwoNCgoLDAwMDAcJDg8NDA4LDAwM/9sAQwECAgIDAwMGAwMGDAgHCAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwM/8AAEQgAgACAAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A+vtLtWm+K9i+DsEoUA8Z5rsfjk/2a0traJfvv8zA+/as7wn4ffVvihbsG2iFgw9BzW18bIGnktHA+Uysp/76FAHrXgmyZPg1BhcEMvJFQePLIN4IuuVACfUDpXQ+C7ASfB+EZ+7tPfPSqGo6C0/hyRZhsSTA29fxoA8v+LNkFtNF4B32ygGur/ZS1Cy8Mt4hvr+7trOysbdpJZ55VjiiVQSWZycAADJJ6Vyv7XvjLSPgx4AfX9eulstF0LTjc3l0/CxRqMnp37D1JA71/Pp+2l/wUM+JX7cOuanbRa1qPg/4WyMTDoUUxRtUjH3ftO0jzCcbirEqvYcFgAfpj+27/wAHDnwm+Hvi270LwNpuofESa1nKvqlrILTTGcHBVJGDSS4/vJGVOeCcV4z4m/4Oi/EeuW0dj/wqfQdKtYkAMkmqTyyqcgAHMYHTHOPUYzX5ZxaqmmweVbWzW1tDB5lt5RQyynhA7NgnltoCjOOgwMmnaZ8JNW8S6fPqMduI7LeZEkvF+65XLKG3Ek4OT8oxjrigD9FfD/8AwcS69B4jF1rvgnw9c6ekmYn0+4eBgB94EO7ZB9cggjPI4r7w/ZT/AODin9nz9o3w

Follow ups