OCA reporting engine fork for dev and update.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
276 B

10 years ago
  1. from openerp.osv import fields, osv
  2. class py3o_template(osv.Model):
  3. _name = 'py3o.template'
  4. _columns = {
  5. 'name': fields.char(
  6. u"Name",
  7. ),
  8. 'py3o_template_data': fields.binary(
  9. u"LibreOffice template",
  10. ),
  11. }