res_company.py 916 B

123456789101112131415161718192021222324
  1. # -*- coding: utf-8 -*-
  2. #################################################################################
  3. # Author : Acespritech Solutions Pvt. Ltd. (<www.acespritech.com>)
  4. # Copyright(c): 2012-Present Acespritech Solutions Pvt. Ltd.
  5. # All Rights Reserved.
  6. #
  7. # This program is copyright property of the author mentioned above.
  8. # You can`t redistribute it and/or modify it.
  9. #
  10. #################################################################################
  11. from openerp import models, fields, api, _
  12. class res_company(models.Model):
  13. _inherit = "res.company"
  14. pos_price = fields.Char(string="Price", size=1)
  15. pos_quantity = fields.Char(string="Quantity", size=1)
  16. pos_discount = fields.Char(string=" Discount", size=1)
  17. pos_search = fields.Char(string="Search", size=1)
  18. pos_next = fields.Char(string="Next order", size=1)
  19. # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: