|
@@ -29,7 +29,7 @@ class StockInventory(models.Model):
|
|
|
|
|
|
categ_id = fields.Many2one(
|
|
|
comodel_name='product.category',
|
|
|
- string='Inventoried Product Category',
|
|
|
+ string='Categoría de producto',
|
|
|
readonly=True,
|
|
|
states={'draft': [('readonly', False)]},
|
|
|
help="Specify Product Category to focus your inventory on a particular Product Category."
|
|
@@ -42,7 +42,7 @@ class StockInventory(models.Model):
|
|
|
@api.model
|
|
|
def _get_available_filters(self):
|
|
|
res_filter = super(StockInventory, self)._get_available_filters()
|
|
|
- res_filter.append(('category', _('Only Products from Product Category')))
|
|
|
+ res_filter.append(('category', _('Por categoría de producto')))
|
|
|
return res_filter
|
|
|
|
|
|
@api.model
|