2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-01-16 11:34:37 +01:00
|
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
2018-01-16 06:58:15 +01:00
|
|
|
|
2018-01-16 11:34:37 +01:00
|
|
|
from flectra import fields, models
|
|
|
|
from flectra.addons.base.res.res_partner import WARNING_MESSAGE, WARNING_HELP
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
class Partner(models.Model):
|
|
|
|
_inherit = 'res.partner'
|
|
|
|
|
|
|
|
property_stock_customer = fields.Many2one(
|
|
|
|
'stock.location', string="Customer Location", company_dependent=True,
|
|
|
|
help="This stock location will be used, instead of the default one, as the destination location for goods you send to this partner")
|
|
|
|
property_stock_supplier = fields.Many2one(
|
|
|
|
'stock.location', string="Vendor Location", company_dependent=True,
|
|
|
|
help="This stock location will be used, instead of the default one, as the source location for goods you receive from the current partner")
|
|
|
|
picking_warn = fields.Selection(WARNING_MESSAGE, 'Stock Picking', help=WARNING_HELP, default='no-message', required=True)
|
|
|
|
# TDE FIXME: expand this message / help
|
|
|
|
picking_warn_msg = fields.Text('Message for Stock Picking')
|