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
309 B
14 lines
309 B
# -*- coding: utf-8 -*-
|
|
|
|
from openerp import _, models, api
|
|
|
|
|
|
class BarcodeRule(models.Model):
|
|
_inherit = 'barcode.rule'
|
|
|
|
@api.model
|
|
def _get_type_selection(self):
|
|
res = super(BarcodeRule, self)._get_type_selection()
|
|
res.append(
|
|
('tare', _('Tare')))
|
|
return res
|