trytond-product_special_price/product.py

72 lines
2.6 KiB
Python
Raw Normal View History

2013-04-29 16:07:21 +02:00
# This file is part of product_special_price module for Tryton.
# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
from trytond.pool import Pool, PoolMeta
from trytond.model import fields
from trytond.pyson import Eval
from trytond.transaction import Transaction
from trytond.config import CONFIG
DIGITS = int(CONFIG.get('unit_price_digits', 4))
2013-04-29 16:07:21 +02:00
__all__ = ['Template', 'Product']
__metaclass__ = PoolMeta
STATES = {
'readonly': ~Eval('active', True),
}
DEPENDS = ['active']
class Template:
__name__ = 'product.template'
special_price = fields.Property(fields.Numeric('Special Price',
states=STATES, digits=(16, DIGITS), depends=DEPENDS))
2014-05-06 18:52:46 +02:00
special_price_from = fields.Date('Special Price From')
special_price_to = fields.Date('Special Price To')
2013-04-29 16:07:21 +02:00
class Product:
__name__ = 'product.product'
@classmethod
def get_sale_price(cls, products, quantity=0):
2014-06-08 16:37:25 +02:00
pool = Pool()
Date = pool.get('ir.date')
User = pool.get('res.user')
PriceList = pool.get('product.price_list')
Uom = pool.get('product.uom')
2014-05-06 18:52:46 +02:00
2013-04-29 16:07:21 +02:00
prices = super(Product, cls).get_sale_price(products, quantity)
if Transaction().context.get('without_special_price'):
return prices
2013-08-28 17:37:33 +02:00
2013-04-29 16:07:21 +02:00
if (Transaction().context.get('customer')):
today = Date.today()
2013-04-29 16:07:21 +02:00
user = User(Transaction().user)
if user.shop and user.shop.special_price:
for product in products:
2014-05-06 18:52:46 +02:00
if product.special_price_from and product.special_price_to:
if not (product.special_price_from <= today <= product.special_price_to):
continue
2013-04-29 16:07:21 +02:00
special_price = 0.0
if user.shop.type_special_price == 'pricelist':
2013-08-28 17:37:33 +02:00
price_list = PriceList(user.shop.special_pricelist)
customer = Transaction().context['customer']
2014-06-08 16:37:25 +02:00
uom_id = Transaction().context.get('uom', None)
if uom_id:
uom = Uom(uom_id)
else:
uom = product.default_uom
2013-08-28 17:37:33 +02:00
special_price = price_list.compute(customer, product,
prices[product.id], quantity, uom)
2013-04-29 16:07:21 +02:00
else:
special_price = product.special_price
2013-08-28 17:37:33 +02:00
2013-04-29 16:07:21 +02:00
if special_price != 0.0 and special_price != None and \
special_price < prices[product.id]:
prices[product.id] = special_price
2013-08-28 17:37:33 +02:00
2013-04-29 16:07:21 +02:00
return prices