mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
42 lines
1.6 KiB
Python
42 lines
1.6 KiB
Python
# -*- coding: utf-8 -*-
|
|
##############################################################################
|
|
#
|
|
# OpenERP, Open Source Management Solution
|
|
# Copyright (C) 2017 Solucións Aloxa S.L. <info@aloxa.eu>
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
##############################################################################
|
|
from openerp import models, api
|
|
|
|
|
|
class ProductPricelist(models.Model):
|
|
_inherit = 'product.pricelist'
|
|
|
|
@api.multi
|
|
@api.depends('name')
|
|
def name_get(self):
|
|
pricelist_id = self.env['ir.default'].sudo().get(
|
|
'res.config.settings', 'parity_pricelist_id')
|
|
if pricelist_id:
|
|
pricelist_id = int(pricelist_id)
|
|
org_names = super(ProductPricelist, self).name_get()
|
|
names = []
|
|
for name in org_names:
|
|
if name[0] == pricelist_id:
|
|
names.append((name[0], '%s (Parity)' % name[1]))
|
|
else:
|
|
names.append((name[0], name[1]))
|
|
return names
|