Add module pos_config_single_user

Several usability enhancements in sale, purchase, product and account
This commit is contained in:
Alexis de Lattre
2016-12-09 08:35:00 +01:00
committed by Raphaël Valyi
parent 1bd86ce02a
commit 8598673530

View File

@@ -21,3 +21,10 @@ class ProductProduct(models.Model):
'default_code_uniq',
'unique(default_code)',
'This internal reference already exists!')]
class ProductSupplierinfo(models.Model):
_inherit = 'product.supplierinfo'
name = fields.Many2one(
domain=[('supplier', '=', True), ('parent_id', '=', False)])