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 api, fields, models, _
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
class ChooseDeliveryPackage(models.TransientModel):
|
|
|
|
_name = 'choose.delivery.package'
|
|
|
|
_description = 'Delivery Package Selection Wizard'
|
|
|
|
|
|
|
|
stock_quant_package_id = fields.Many2one(
|
|
|
|
'stock.quant.package',
|
|
|
|
string="Physical Package",
|
|
|
|
default=lambda self: self._default_stock_quant_package_id()
|
|
|
|
)
|
|
|
|
delivery_packaging_id = fields.Many2one(
|
|
|
|
'product.packaging',
|
|
|
|
default=lambda self: self._default_delivery_packaging_id()
|
|
|
|
)
|
|
|
|
shipping_weight = fields.Float(
|
|
|
|
string='Shipping Weight',
|
|
|
|
default=lambda self: self._default_shipping_weight()
|
|
|
|
)
|
|
|
|
|
|
|
|
def _default_stock_quant_package_id(self):
|
|
|
|
if self.env.context.get('default_stock_quant_package_id'):
|
|
|
|
return self.env['stock.quant.package'].browse(self.env.context['stock_quant_package_id'])
|
|
|
|
|
|
|
|
def _default_delivery_packaging_id(self):
|
|
|
|
res = None
|
|
|
|
if self.env.context.get('default_delivery_packaging_id'):
|
|
|
|
res = self.env['product.packaging'].browse(self.env.context['default_delivery_packaging_id'])
|
|
|
|
if self.env.context.get('default_stock_quant_package_id'):
|
|
|
|
stock_quant_package = self.env['stock.quant.package'].browse(self.env.context['default_stock_quant_package_id'])
|
|
|
|
res = stock_quant_package.packaging_id
|
|
|
|
return res
|
|
|
|
|
|
|
|
def _default_shipping_weight(self):
|
|
|
|
if self.env.context.get('default_stock_quant_package_id'):
|
|
|
|
stock_quant_package = self.env['stock.quant.package'].browse(self.env.context['default_stock_quant_package_id'])
|
|
|
|
return stock_quant_package.shipping_weight
|
|
|
|
else:
|
|
|
|
picking_id = self.env['stock.picking'].browse(self.env.context['active_id'])
|
|
|
|
move_line_ids = [po for po in picking_id.move_line_ids if po.qty_done > 0 and not po.result_package_id]
|
|
|
|
total_weight = sum([po.qty_done * po.product_id.weight for po in move_line_ids])
|
|
|
|
return total_weight
|
|
|
|
|
|
|
|
def put_in_pack(self):
|
|
|
|
picking_id = self.env['stock.picking'].browse(self.env.context['active_id'])
|
|
|
|
if not self.stock_quant_package_id:
|
|
|
|
stock_quant_package = picking_id._put_in_pack()
|
|
|
|
self.stock_quant_package_id = stock_quant_package
|
|
|
|
# write shipping weight and product_packaging on 'stock_quant_package' if needed
|
|
|
|
if self.delivery_packaging_id:
|
|
|
|
self.stock_quant_package_id.packaging_id = self.delivery_packaging_id
|
|
|
|
if self.shipping_weight:
|
|
|
|
self.stock_quant_package_id.shipping_weight = self.shipping_weight
|