stock.py 456 B

123456789101112
  1. # -*- coding: utf-8 -*-
  2. ##############################################################################
  3. # For copyright and license notices, see __openerp__.py file in module root
  4. # directory
  5. ##############################################################################
  6. from openerp import models, fields
  7. class stock_warehouse(models.Model):
  8. _inherit = 'stock.warehouse'
  9. disable_sale_stock_warning = fields.Boolean('Disable Sale Stock Warning')