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.
129 lines
6.0 KiB
129 lines
6.0 KiB
# -*- coding: utf-8 -*-
|
|
###############################################################################
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
#
|
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
|
|
# Author: Ayana KP (odoo@cybrosys.com)
|
|
#
|
|
# You can modify it under the terms of the GNU AFFERO
|
|
# GENERAL PUBLIC LICENSE (AGPL v3), Version 3.
|
|
#
|
|
# 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details.
|
|
#
|
|
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
# (AGPL v3) along with this program.
|
|
# If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
###############################################################################
|
|
from odoo.tools.translate import _
|
|
from odoo import fields, models
|
|
|
|
|
|
class VehicleDetails(models.Model):
|
|
"""Model for vehicle details in car work shop"""
|
|
_name = 'vehicle.details'
|
|
_description = "Vehicles Details in Car Workshop"
|
|
_inherit = ['mail.thread']
|
|
_rec_name = 'vehicle_id'
|
|
|
|
active = fields.Boolean('Active', default=True,
|
|
help='Enables will Active this record')
|
|
vehicle_id = fields.Many2one('fleet.vehicle',
|
|
string='Vehicle Name', help='Vehicle details',
|
|
tracking=True, required=True)
|
|
sequence = fields.Integer('Sequence',
|
|
help="Gives the sequence order when displaying"
|
|
" a list of Projects.")
|
|
label_tasks = fields.Char(string='Use Tasks as',
|
|
help="Gives label to Work on kanban view.",
|
|
default="Task")
|
|
worksheet_ids = fields.One2many('car.workshop',
|
|
'vehicle_id',string="Task Activities",
|
|
help=' The work details of vehicle')
|
|
type_ids = fields.Many2many('worksheet.stages',
|
|
'car_workshop_type_rel',
|
|
'vehicle_id', 'type_id',
|
|
string='Worksheet Stages',
|
|
help='The type of vehicle')
|
|
task_count = fields.Integer(compute='_compute_task_count', type='integer',
|
|
string="Tasks",
|
|
help='The number of created for the vehicle')
|
|
task_ids = fields.One2many('car.workshop', 'vehicle_id',
|
|
help='The task of vehicle created',
|
|
domain=['|', ('stage_id.is_fold', '=', False),
|
|
('stage_id', '=', False)])
|
|
doc_count = fields.Integer(compute='_compute_attached_docs_count',
|
|
string="Number of documents attached",
|
|
help='The number of attachments created')
|
|
color = fields.Integer(string='Color Index', help='The color of tags')
|
|
partner_id = fields.Many2one('res.partner', string='Customer',
|
|
help='The owner of vehicle')
|
|
state = fields.Selection([('draft', 'New'),
|
|
('open', 'In Progress'),
|
|
('cancelled', 'Cancelled'),
|
|
('pending', 'Pending'),
|
|
('close', 'Closed')], string='Status',
|
|
required=True, tracking=True, default='open',
|
|
copy=False, help='State details of vehicle')
|
|
date = fields.Date(string='Expiration Date', index=True,
|
|
tracking=True)
|
|
is_use_tasks = fields.Boolean(string='Use in Tasks', default=True)
|
|
image_128 = fields.Image(related='vehicle_id.image_128', readonly=False)
|
|
|
|
def _get_visibility_selection_id(self, cr, uid, context=None):
|
|
"""Returns the list of users in work shop """
|
|
return [('portal',
|
|
_('Customer Works: visible in portal if the customer is a follower')),
|
|
(
|
|
'employees', _('All Employees Work: all employees can access')),
|
|
('followers', _('Private Work: followers only'))]
|
|
|
|
_visibility_selections = lambda self, *args, **kwargs: self._get_visibility_selection_id(*args, **kwargs)
|
|
|
|
def _compute_attached_docs_count(self):
|
|
"""Used to compute the attached document in work shop task"""
|
|
Attachment = self.env['ir.attachment']
|
|
for vehicle in self:
|
|
vehicle.doc_count = Attachment.search_count([
|
|
'|',
|
|
'&',
|
|
('res_model', '=', 'vehicle.details'), ('res_id', '=', vehicle.id),
|
|
'&',
|
|
('res_model', '=', 'car.worksheet'),
|
|
('res_id', 'in', vehicle.task_ids.ids)
|
|
])
|
|
|
|
def _compute_task_count(self):
|
|
"""Used to compute the task count for a vehicle """
|
|
for vehicle in self:
|
|
vehicle.task_count = len(vehicle.task_ids)
|
|
|
|
def attachment_tree_views(self):
|
|
""" Get the attachment in the task """
|
|
self.ensure_one()
|
|
domain = [
|
|
'|',
|
|
'&', ('res_model', '=', 'vehicle.details'), ('res_id', 'in', self.ids),
|
|
'&', ('res_model', '=', 'car.workshop'),
|
|
('res_id', 'in', self.task_ids.ids)]
|
|
return {
|
|
'name': _('Attachments'),
|
|
'domain': domain,
|
|
'res_model': 'ir.attachment',
|
|
'type': 'ir.actions.act_window',
|
|
'view_id': False,
|
|
'view_mode': 'kanban,tree,form',
|
|
'view_type': 'form',
|
|
'help': _('''<p class="oe_view_nocontent_create">
|
|
Documents are attached to the tasks and issues of your Worksheet.</p><p>
|
|
Send messages or log internal notes with attachments to link
|
|
documents to your Worksheet.
|
|
</p>'''),
|
|
'limit': 80,
|
|
'context': "{'default_res_model': '%s','default_res_id': %d}" % (
|
|
self._name, self.id)
|
|
}
|
|
|