40 lines
1.5 KiB
Python
40 lines
1.5 KiB
Python
# This file is part of Tryton. The COPYRIGHT file at the top level of this
|
|
# repository contains the full copyright notices and license terms.
|
|
from trytond.model import ModelSQL, ValueMixin, fields
|
|
from trytond.pool import Pool, PoolMeta
|
|
|
|
|
|
class Party(metaclass=PoolMeta):
|
|
__name__ = 'party.party'
|
|
|
|
sale_shipment_grouping_method = fields.MultiValue(fields.Selection([
|
|
(None, 'None'),
|
|
('standard', 'Standard'),
|
|
],
|
|
'Sale Shipment Grouping Method'))
|
|
sale_shipment_grouping_methods = fields.One2Many(
|
|
'party.party.sale_shipment_grouping_method', 'party',
|
|
"Sale Shipment Grouping Methods")
|
|
|
|
@classmethod
|
|
def default_sale_shipment_grouping_method(cls, **pattern):
|
|
pool = Pool()
|
|
Configuration = pool.get('sale.configuration')
|
|
return Configuration(1).get_multivalue(
|
|
'sale_shipment_grouping_method', **pattern)
|
|
|
|
|
|
class PartySaleShipmentGroupingMethod(ModelSQL, ValueMixin):
|
|
__name__ = 'party.party.sale_shipment_grouping_method'
|
|
party = fields.Many2One(
|
|
'party.party', "Party", ondelete='CASCADE')
|
|
sale_shipment_grouping_method = fields.Selection(
|
|
'get_sale_shipment_grouping_methods', "Sale Shipment Grouping Method")
|
|
|
|
@classmethod
|
|
def get_sale_shipment_grouping_methods(cls):
|
|
pool = Pool()
|
|
Party = pool.get('party.party')
|
|
field_name = 'sale_shipment_grouping_method'
|
|
return Party.fields_get([field_name])[field_name]['selection']
|