~iratzio-gutierrez/oemedical/oemedical-csm

« back to all changes in this revision

Viewing changes to oemedical/product_product/product_product.py

  • Committer: Nhomar - Vauxoo
  • Date: 2013-10-23 03:02:27 UTC
  • mfrom: (83.1.120 openobject-oemedical)
  • Revision ID: nhomar@gmail.com-20131023030227-dwgs8z939r2f5al7
[MERGE] Federicos branch, several change and finishing a lot of concepts, sorry for the delay. Thanks, Note: See the commit log for the origin of the merge for more details.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
    _inherit = 'product.product'
28
28
 
29
29
    _columns = {
30
 
        'is_medicament': fields.boolean(string='Medicament', 
31
 
                                help='Check if the product is a medicament'),
32
 
        'is_bed': fields.boolean(string='Bed', 
33
 
                 help='Check if the product is a bed on the gnuhealth.center'),
34
 
        'is_vaccine': fields.boolean(string='Vaccine', 
35
 
                                     help='Check if the product is a vaccine'),
 
30
        'is_medicament': fields.boolean(string='Medicament', help='Check if the product is a medicament'),
 
31
        'is_bed': fields.boolean(string='Bed', help='Check if the product is a bed on the gnuhealth.center'),
 
32
        'is_vaccine': fields.boolean(string='Vaccine', help='Check if the product is a vaccine'),
 
33
        'is_medical_supply' : fields.boolean(string='Medical Supply', help='Check if the product is a medical supply'),
 
34
        'is_insurance_plan' : fields.boolean(string='Insurance Plan', help='Check if the product is an insurance plan'),
36
35
    }
37
36
 
38
37
ProductProduct()