You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
2.5 KiB
58 lines
2.5 KiB
# -*- coding: utf-8 -*-
|
|
##############################################################################
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
# Copyright (C) 2017-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
|
|
# Author: Saritha Sahadevan(<https://www.cybrosys.com>)
|
|
# you can modify it under the terms of the GNU LESSER
|
|
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
|
|
#
|
|
# It is forbidden to publish, distribute, sublicense, or sell copies
|
|
# of the Software or modified copies of the Software.
|
|
#
|
|
# 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
|
|
#
|
|
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
|
|
# GENERAL PUBLIC LICENSE (LGPL v3) along with this program.
|
|
# If not, see <https://www.gnu.org/licenses/>.
|
|
#
|
|
##############################################################################
|
|
|
|
from odoo import models, fields, api
|
|
|
|
|
|
class VehicleSaleOrder(models.Model):
|
|
_inherit = 'stock.picking'
|
|
|
|
transportation_name = fields.Char(string="Transportation Via", compute="get_transportation")
|
|
no_parcels = fields.Integer(string="No Of Parcels")
|
|
transportation_details = fields.One2many('vehicle.status', compute='fetch_details', string="Transportation Details")
|
|
|
|
@api.multi
|
|
def get_transportation(self):
|
|
res = self.env['sale.order'].search([('name', '=', self.sale_id.name)])
|
|
self.transportation_name = res.transportation_name.name
|
|
order = self.env['vehicle.status'].search([('sale_order', '=', self.sale_id.name)])
|
|
if not order and self.transportation_name:
|
|
vals = {'name': self.transportation_name,
|
|
'no_parcels': self.no_parcels,
|
|
'sale_order': self.sale_id.name,
|
|
'delivery_order': self.name,
|
|
'transport_date': self.min_date,
|
|
}
|
|
obj = self.env['vehicle.status'].create(vals)
|
|
return obj
|
|
|
|
@api.onchange('no_parcels')
|
|
def get_parcel(self):
|
|
order = self.env['vehicle.status'].search([('sale_order', '=', self.sale_id.name)])
|
|
vals = {'no_parcels': self.no_parcels}
|
|
order.write(vals)
|
|
|
|
@api.multi
|
|
def fetch_details(self):
|
|
order = self.env['vehicle.status'].search([('sale_order', '=', self.sale_id.name)])
|
|
self.transportation_details = order
|
|
|