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