diff --git a/odoo_parking_management/README.rst b/odoo_parking_management/README.rst new file mode 100644 index 000000000..d88fe0d80 --- /dev/null +++ b/odoo_parking_management/README.rst @@ -0,0 +1,44 @@ +.. image:: https://img.shields.io/badge/licence-LGPL--3-blue.svg + :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 + +Parking Management +================== +This module is developed for managing the vehicle parking and providing the +parking tickets for any type of customers. + +Configuration +============= +* No additional configurations needed + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developers: (V18) Fathima Mazlin AM, + (V17) Vishnu kp, +Contact : odoo@cybrosys.com + +License +------- +* Lesser General Public License, Version 3 (LGPL v3). +(https://www.gnu.org/licenses/lgpl-3.0-standalone.html) + +Bug Tracker +----------- +Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. + +Maintainer +========== +.. image:: https://cybrosys.com/images/logo.png + :target: https://cybrosys.com + +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit `Our Website `__ + +Further information +=================== +HTML Description: ``__ diff --git a/odoo_parking_management/__init__.py b/odoo_parking_management/__init__.py new file mode 100644 index 000000000..538e9f004 --- /dev/null +++ b/odoo_parking_management/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import models +from . import wizard diff --git a/odoo_parking_management/__manifest__.py b/odoo_parking_management/__manifest__.py new file mode 100644 index 000000000..ea1a8ca70 --- /dev/null +++ b/odoo_parking_management/__manifest__.py @@ -0,0 +1,54 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +{ + 'name': 'Parking Management', + 'version': '18.0.1.0.0', + 'category': 'Industries', + 'summary': 'Manage the parking of vehicles', + 'description': """This module is developed for managing the vehicle + parking and providing the parking tickets for any type of customers.""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['base', 'fleet', 'account', 'project'], + 'data': [ + 'security/odoo_parking_management_groups.xml', + 'security/parking_entry_security.xml', + 'security/ir.model.access.csv', + 'data/report_paperformat_data.xml', + 'data/ir_sequence_data.xml', + 'report/parking_ticket_report_templates.xml', + 'wizard/register_payment_views.xml', + 'views/parking_entry_views.xml', + 'views/slot_type_views.xml', + 'views/location_details_views.xml', + 'views/slot_details_views.xml', + 'views/member_slot_reservation_views.xml', + 'views/vehicle_details_views.xml', + ], + 'images': ['static/description/banner.jpg'], + 'license': 'LGPL-3', + 'installable': True, + 'auto_install': False, + 'application': True, +} diff --git a/odoo_parking_management/data/ir_sequence_data.xml b/odoo_parking_management/data/ir_sequence_data.xml new file mode 100644 index 000000000..054cab7c7 --- /dev/null +++ b/odoo_parking_management/data/ir_sequence_data.xml @@ -0,0 +1,21 @@ + + + + + + Public Parking Entry + public.parking.entry + PUBLIC/PARKING/ + 5 + + + + + Private Parking Entry + private.parking.entry + MEMBER/PARKING/ + 5 + + + + diff --git a/odoo_parking_management/data/report_paperformat_data.xml b/odoo_parking_management/data/report_paperformat_data.xml new file mode 100644 index 000000000..312cfbd00 --- /dev/null +++ b/odoo_parking_management/data/report_paperformat_data.xml @@ -0,0 +1,19 @@ + + + + + Gate Pass + + custom + 120 + 70 + Portrait + 40 + 10 + 5 + 5 + + 40 + 90 + + diff --git a/odoo_parking_management/doc/RELEASE_NOTES.md b/odoo_parking_management/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..5e322a03a --- /dev/null +++ b/odoo_parking_management/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 24.04.2025 +#### Version 18.0.1.0.0 +#### ADD +- Initial commit for Parking Management diff --git a/odoo_parking_management/models/__init__.py b/odoo_parking_management/models/__init__.py new file mode 100644 index 000000000..efb4c831e --- /dev/null +++ b/odoo_parking_management/models/__init__.py @@ -0,0 +1,27 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import location_details +from . import member_slot_reservation +from . import parking_entry +from . import slot_details +from . import slot_type +from . import vehicle_details diff --git a/odoo_parking_management/models/location_details.py b/odoo_parking_management/models/location_details.py new file mode 100644 index 000000000..c3f0badcc --- /dev/null +++ b/odoo_parking_management/models/location_details.py @@ -0,0 +1,31 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import fields, models + + +class LocationDetails(models.Model): + """Details for a location""" + _name = 'location.details' + _description = 'Location Details' + + name = fields.Char(string='Locations', required=True, + help='Name of the location') diff --git a/odoo_parking_management/models/member_slot_reservation.py b/odoo_parking_management/models/member_slot_reservation.py new file mode 100644 index 000000000..e5c3f84e7 --- /dev/null +++ b/odoo_parking_management/models/member_slot_reservation.py @@ -0,0 +1,43 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import fields, models + + +class MemberSlotReservation(models.Model): + """Details for MemberSlotReservation""" + _name = 'member.slot.reservation' + _inherit = ['mail.thread', 'mail.activity.mixin'] + _rec_name = 'slot_id' + _description = 'Member Slot Reservation' + + slot_id = fields.Many2one('slot.details', string='Slot', + tracking=True, + required=True, + help='Field for the ID of the slot') + partner_id = fields.Many2one('res.partner', string='Member', + tracking=True, required=True, + help='Field for Reserved Member') + start_date = fields.Date(string='Start Date', tracking=True, + required=True, + help='Field for adding the start date') + end_date = fields.Date(string='End Date', tracking=True, required=True, + help='Field for adding end date') diff --git a/odoo_parking_management/models/parking_entry.py b/odoo_parking_management/models/parking_entry.py new file mode 100644 index 000000000..bbd8cd3cd --- /dev/null +++ b/odoo_parking_management/models/parking_entry.py @@ -0,0 +1,174 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +import datetime +from odoo import api, fields, models, _ + + +class ParkingEntry(models.Model): + """Details about the Parking""" + _name = 'parking.entry' + _inherit = ['mail.thread', 'mail.activity.mixin'] + _description = 'Public Park Entry' + + name = fields.Char(string='Reference', readonly=True, + default=lambda self: _('New'), + help='Field for the sequence of parking entries') + partner_id = fields.Many2one('res.partner', string='Contact', + tracking=True, help='Field for customer') + mobile = fields.Char(related='partner_id.phone', string='Mobile', + store=True, readonly=False, + help='Mobile number of customer') + email = fields.Char(related='partner_id.email', string='Email', + store=True, readonly=False, + help='E-mail of customer') + check_in = fields.Datetime(string='Check In', readonly=True, + tracking=True, help='Check In time of the ' + 'vehicle for parking') + vehicle_id = fields.Many2one('vehicle.details', string='Vehicle', + tracking=True, required=True, + help='Vehicle of Customer') + vehicle_number = fields.Char(related='vehicle_id.number_plate', + string='Vehicle Number', store=True, + readonly=False, tracking=True, + help='Vehicle number of customer') + slot_type_id = fields.Many2one('slot.type', string='Slot Type', + tracking=True, required=True, + help='Slot type fr the vehicle') + slot_id = fields.Many2one('slot.details', string='Slot', + tracking=True, + required=True, + help='Slot assigned for vehicle of Customer') + user_id = fields.Many2one('res.users', string='Created By', + default=lambda self: self.env.user, + tracking=True, + help='Field for user that entries are created') + created_date = fields.Datetime(string='Created Datetime', + default=lambda self: fields.Datetime.now(), + tracking=True, + help='Date which entry was created') + check_out = fields.Datetime(string='Check Out', readonly=True, + tracking=True, help='Check Out time of vehicle') + duration = fields.Float(string='Duration', compute='_compute_duration', + store=True, help='Time spent by the vehicles') + customer_type = fields.Selection( + [('private', 'Private'), ('public', 'Public')], + string='Type', default='public', + tracking=True, required=True, + help='Type of the customer') + company_id = fields.Many2one('res.company', string='Company', + default=lambda self: self.env.company, + help='Name of the company') + location_id = fields.Many2one('location.details', + string='Location', + tracking=True, required=True, + help='Name of the location') + state = fields.Selection([('draft', 'Draft'), + ('check_in', 'Check In'), + ('check_out', ' Check Out'), + ('payment', 'Payment')], + string='Status', default='draft', tracking=True, + help='Status of the vehicle', copy=False) + currency_id = fields.Many2one('res.currency', string='Currency', + related='company_id.currency_id', + help='Currency used by the company') + parking_cost = fields.Monetary(string='Parking Cost', tracking=True, + help='Cost for the parking.') + check_in_bool = fields.Boolean(string='Check In Bool', + default=False, + copy=False, + help='Check if checked in.') + check_out_bool = fields.Boolean(string='Check Out Bool', + default=False, + copy=False, + help='Check if checked out.') + paid_bool = fields.Boolean(string='Paid Bool', + default=False, + copy=False, + help='Check if paid.') + + @api.model + def create(self, values): + """Method for generating the sequence for public and private users""" + res = super(ParkingEntry, self).create(values) + if res.customer_type == "private": + res['name'] = self.env['ir.sequence'].next_by_code( + 'private.parking.entry') + if res.customer_type == 'public': + res['name'] = self.env['ir.sequence'].next_by_code( + 'public.parking.entry') + return res + + @api.depends('check_out') + def _compute_duration(self): + """Method for computing the duration of checking in and checking out + of vehicles""" + for rec in self: + rec.duration = False + if rec.check_out: + entry = datetime.datetime.strptime(str(rec.check_in), + "%Y-%m-%d %H:%M:%S") + out = datetime.datetime.strptime(str(rec.check_out), + "%Y-%m-%d %H:%M:%S") + dur_dif = out - entry + total_minutes = dur_dif.total_seconds() // 60 + hours = total_minutes // 60 + minutes = total_minutes % 60 + rec.duration = hours + minutes + + @api.onchange('slot_type_id') + def onchange_slot_type_id(self): + """Method for changing the slot type""" + domain = {'slot_id': [('slot_type_id', '=', self.slot_type_id.id)]} + return {'domain': domain} + + def action_check_in(self): + """Method for checking in""" + self.state = 'check_in' + self.check_in_bool = True + self.check_out_bool = False + self.check_in = fields.Datetime.now() + + def action_check_out(self): + """Method for checking out""" + self.state = 'check_out' + self.check_out_bool = True + self.check_in_bool = False + self.check_out = fields.Datetime.now() + + def action_register_payment(self): + """Method for viewing the wizard for register payment""" + view_id = self.env.ref('odoo_parking_management' + '.register_payment_wizard_view_form').id + return { + 'name': 'Register Payment', + 'type': 'ir.actions.act_window', + 'view_mode': 'form', + 'res_model': 'register.payment.wizard', + 'views': [(view_id, 'form')], + 'context': { + 'default_partner_id': self.partner_id.id, + 'default_parking_duration': self.duration, + 'default_amount': self.parking_cost, + 'default_ref': self.name + }, + 'target': 'new', + } diff --git a/odoo_parking_management/models/slot_details.py b/odoo_parking_management/models/slot_details.py new file mode 100644 index 000000000..7ffd5b1be --- /dev/null +++ b/odoo_parking_management/models/slot_details.py @@ -0,0 +1,37 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import fields, models + + +class SlotDetails(models.Model): + """Details for Slot""" + _name = 'slot.details' + _inherit = ['mail.thread', 'mail.activity.mixin'] + _description = 'Details about slot' + + code = fields.Char(string='Code', tracking=True, required=True, + help='Unique identifier for slot') + name = fields.Char(string='Name', required=True, + help='Name of the slot') + slot_type_id = fields.Many2one('slot.type', string='Slot Type', + tracking=True, required=True, + help='Type of the slot') diff --git a/odoo_parking_management/models/slot_type.py b/odoo_parking_management/models/slot_type.py new file mode 100644 index 000000000..4a9a79412 --- /dev/null +++ b/odoo_parking_management/models/slot_type.py @@ -0,0 +1,37 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import fields, models + + +class SlotType(models.Model): + """Details of slot type""" + _name = 'slot.type' + _inherit = ['mail.thread', 'mail.activity.mixin'] + _rec_name = 'vehicle_type' + _description = 'Slot Type' + + vehicle_type = fields.Char(string='Name', required=True, + tracking=True, help='Name of vehicle') + code = fields.Char(string='Code', tracking=True, + help='Unique identifier for vehicle') + allowed_park_duration = fields.Float(string='Allowed Parking Time', + help='Time allowed for the vehicle') diff --git a/odoo_parking_management/models/vehicle_details.py b/odoo_parking_management/models/vehicle_details.py new file mode 100644 index 000000000..f4984cd62 --- /dev/null +++ b/odoo_parking_management/models/vehicle_details.py @@ -0,0 +1,45 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import fields, models + + +class VehicleDetails(models.Model): + """Details of Vehicle""" + _name = 'vehicle.details' + _inherit = ['mail.thread', 'mail.activity.mixin'] + _rec_name = 'vehicle_name' + _description = 'Vehicle Details' + + vehicle_name = fields.Char(string='Name', + help='Field for the sequence of parking entries') + vehicle_id = fields.Many2one('fleet.vehicle', string='Vehicle', + tracking=True, required=True, + help='Name of vehicle') + partner_id = fields.Many2one('res.partner', string='Owner', + tracking=True, help=' Name of Partner') + number_plate = fields.Char(string='Number Plate', tracking=True, + required=True, help='Number for the vehicle') + ownership_type = fields.Selection([('outsider', 'Outsider'), + ('member', 'Member')], + string='Ownership Type', tracking=True, + required=True, help='Type of the owner ' + 'of vehicle') diff --git a/odoo_parking_management/report/parking_ticket_report_templates.xml b/odoo_parking_management/report/parking_ticket_report_templates.xml new file mode 100644 index 000000000..a4291b426 --- /dev/null +++ b/odoo_parking_management/report/parking_ticket_report_templates.xml @@ -0,0 +1,73 @@ + + + + + + + Parking Ticket Report + parking.entry + qweb-pdf + odoo_parking_management.parking_ticket + odoo_parking_management.parking_ticket + + report + + + diff --git a/odoo_parking_management/security/ir.model.access.csv b/odoo_parking_management/security/ir.model.access.csv new file mode 100644 index 000000000..22e75af2a --- /dev/null +++ b/odoo_parking_management/security/ir.model.access.csv @@ -0,0 +1,8 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_slot_type,access.slot.type,model_slot_type,base.group_user,1,1,1,1 +access_location_details,access.location.details,model_location_details,base.group_user,1,1,1,1 +access_slot_details,access.slot.details,model_slot_details,base.group_user,1,1,1,1 +access_member_slot_reservation,access.member.slot.reservation,model_member_slot_reservation,base.group_user,1,1,1,1 +access_vehicle_details,access.vehicle.details,model_vehicle_details,base.group_user,1,1,1,1 +access_parking_entry,access.parking.entry,model_parking_entry,base.group_user,1,1,1,1 +access_register_payment_wizard,access.register.payment.wizard,model_register_payment_wizard,base.group_user,1,1,1,1 diff --git a/odoo_parking_management/security/odoo_parking_management_groups.xml b/odoo_parking_management/security/odoo_parking_management_groups.xml new file mode 100644 index 000000000..3200e63b9 --- /dev/null +++ b/odoo_parking_management/security/odoo_parking_management_groups.xml @@ -0,0 +1,21 @@ + + + + + Parking Management + Category for Parking Management + + + + User + + + + + Manager + + + + diff --git a/odoo_parking_management/security/parking_entry_security.xml b/odoo_parking_management/security/parking_entry_security.xml new file mode 100644 index 000000000..cedc13e39 --- /dev/null +++ b/odoo_parking_management/security/parking_entry_security.xml @@ -0,0 +1,20 @@ + + + + + View Own Docs + + ['|',('user_id', '=', user.id),('create_uid','=', user.id)] + + + + + + View All Docs + + [(1, '=', 1)] + + + diff --git a/odoo_parking_management/static/description/assets/cybro-icon.png b/odoo_parking_management/static/description/assets/cybro-icon.png new file mode 100755 index 000000000..06e73e11d Binary files /dev/null and b/odoo_parking_management/static/description/assets/cybro-icon.png differ diff --git a/odoo_parking_management/static/description/assets/cybro-odoo.png b/odoo_parking_management/static/description/assets/cybro-odoo.png new file mode 100755 index 000000000..ed02e07a4 Binary files /dev/null and b/odoo_parking_management/static/description/assets/cybro-odoo.png differ diff --git a/odoo_parking_management/static/description/assets/h2.png b/odoo_parking_management/static/description/assets/h2.png new file mode 100755 index 000000000..0bfc4707d Binary files /dev/null and b/odoo_parking_management/static/description/assets/h2.png differ diff --git a/odoo_parking_management/static/description/assets/icons/arrows-repeat.svg b/odoo_parking_management/static/description/assets/icons/arrows-repeat.svg new file mode 100755 index 000000000..1d7efabc5 --- /dev/null +++ b/odoo_parking_management/static/description/assets/icons/arrows-repeat.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/odoo_parking_management/static/description/assets/icons/banner-1.png b/odoo_parking_management/static/description/assets/icons/banner-1.png new file mode 100755 index 000000000..c180db172 Binary files /dev/null and b/odoo_parking_management/static/description/assets/icons/banner-1.png differ diff --git a/odoo_parking_management/static/description/assets/icons/banner-2.svg b/odoo_parking_management/static/description/assets/icons/banner-2.svg new file mode 100755 index 000000000..e606d97d9 --- /dev/null +++ b/odoo_parking_management/static/description/assets/icons/banner-2.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo_parking_management/static/description/assets/icons/banner-bg.png b/odoo_parking_management/static/description/assets/icons/banner-bg.png new file mode 100755 index 000000000..a8238d3c0 Binary files /dev/null and b/odoo_parking_management/static/description/assets/icons/banner-bg.png differ diff --git a/odoo_parking_management/static/description/assets/icons/banner-bg.svg b/odoo_parking_management/static/description/assets/icons/banner-bg.svg new file mode 100755 index 000000000..b1378103e --- /dev/null +++ b/odoo_parking_management/static/description/assets/icons/banner-bg.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/odoo_parking_management/static/description/assets/icons/banner-call.svg b/odoo_parking_management/static/description/assets/icons/banner-call.svg new file mode 100755 index 000000000..96c687e81 --- /dev/null +++ b/odoo_parking_management/static/description/assets/icons/banner-call.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/odoo_parking_management/static/description/assets/icons/banner-mail.svg b/odoo_parking_management/static/description/assets/icons/banner-mail.svg new file mode 100755 index 000000000..cbf0d158d --- /dev/null +++ b/odoo_parking_management/static/description/assets/icons/banner-mail.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/odoo_parking_management/static/description/assets/icons/banner-pattern.svg b/odoo_parking_management/static/description/assets/icons/banner-pattern.svg new file mode 100755 index 000000000..9c1c7e101 --- /dev/null +++ b/odoo_parking_management/static/description/assets/icons/banner-pattern.svg @@ -0,0 +1,343 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo_parking_management/static/description/assets/icons/banner-promo.svg b/odoo_parking_management/static/description/assets/icons/banner-promo.svg new file mode 100755 index 000000000..d52791b11 --- /dev/null +++ b/odoo_parking_management/static/description/assets/icons/banner-promo.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo_parking_management/static/description/assets/icons/brand-pair.svg b/odoo_parking_management/static/description/assets/icons/brand-pair.svg new file mode 100755 index 000000000..d8db7fc1e --- /dev/null +++ b/odoo_parking_management/static/description/assets/icons/brand-pair.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo_parking_management/static/description/assets/icons/check.png b/odoo_parking_management/static/description/assets/icons/check.png new file mode 100755 index 000000000..c8e85f51d Binary files /dev/null and b/odoo_parking_management/static/description/assets/icons/check.png differ diff --git a/odoo_parking_management/static/description/assets/icons/chevron.png b/odoo_parking_management/static/description/assets/icons/chevron.png new file mode 100755 index 000000000..2089293d6 Binary files /dev/null and b/odoo_parking_management/static/description/assets/icons/chevron.png differ diff --git a/odoo_parking_management/static/description/assets/icons/close-icon.svg b/odoo_parking_management/static/description/assets/icons/close-icon.svg new file mode 100755 index 000000000..df8cce37a --- /dev/null +++ b/odoo_parking_management/static/description/assets/icons/close-icon.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/odoo_parking_management/static/description/assets/icons/cogs.png b/odoo_parking_management/static/description/assets/icons/cogs.png new file mode 100755 index 000000000..95d0bad62 Binary files /dev/null and b/odoo_parking_management/static/description/assets/icons/cogs.png differ diff --git a/odoo_parking_management/static/description/assets/icons/collabarate-icon.svg b/odoo_parking_management/static/description/assets/icons/collabarate-icon.svg new file mode 100755 index 000000000..dd4e10518 --- /dev/null +++ b/odoo_parking_management/static/description/assets/icons/collabarate-icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo_parking_management/static/description/assets/icons/consultation.png b/odoo_parking_management/static/description/assets/icons/consultation.png new file mode 100755 index 000000000..8319d4baa Binary files /dev/null and b/odoo_parking_management/static/description/assets/icons/consultation.png differ diff --git a/odoo_parking_management/static/description/assets/icons/cybro-logo.png b/odoo_parking_management/static/description/assets/icons/cybro-logo.png new file mode 100755 index 000000000..ff4b78220 Binary files /dev/null and b/odoo_parking_management/static/description/assets/icons/cybro-logo.png differ diff --git a/odoo_parking_management/static/description/assets/icons/down.svg b/odoo_parking_management/static/description/assets/icons/down.svg new file mode 100755 index 000000000..f21c36271 --- /dev/null +++ b/odoo_parking_management/static/description/assets/icons/down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/odoo_parking_management/static/description/assets/icons/ecom-black.png b/odoo_parking_management/static/description/assets/icons/ecom-black.png new file mode 100755 index 000000000..a9385ff13 Binary files /dev/null and b/odoo_parking_management/static/description/assets/icons/ecom-black.png differ diff --git a/odoo_parking_management/static/description/assets/icons/education-black.png b/odoo_parking_management/static/description/assets/icons/education-black.png new file mode 100755 index 000000000..3eb09b27b Binary files /dev/null and b/odoo_parking_management/static/description/assets/icons/education-black.png differ diff --git a/odoo_parking_management/static/description/assets/icons/faq.png b/odoo_parking_management/static/description/assets/icons/faq.png new file mode 100755 index 000000000..4250b5b81 Binary files /dev/null and b/odoo_parking_management/static/description/assets/icons/faq.png differ diff --git a/odoo_parking_management/static/description/assets/icons/feature-icon.svg b/odoo_parking_management/static/description/assets/icons/feature-icon.svg new file mode 100755 index 000000000..fa0ea6850 --- /dev/null +++ b/odoo_parking_management/static/description/assets/icons/feature-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/odoo_parking_management/static/description/assets/icons/feature.png b/odoo_parking_management/static/description/assets/icons/feature.png new file mode 100755 index 000000000..ac7a785c0 Binary files /dev/null and b/odoo_parking_management/static/description/assets/icons/feature.png differ diff --git a/odoo_parking_management/static/description/assets/icons/gear.svg b/odoo_parking_management/static/description/assets/icons/gear.svg new file mode 100755 index 000000000..0cc66b6ea --- /dev/null +++ b/odoo_parking_management/static/description/assets/icons/gear.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/odoo_parking_management/static/description/assets/icons/hire-odoo.svg b/odoo_parking_management/static/description/assets/icons/hire-odoo.svg new file mode 100755 index 000000000..e1ac089b0 --- /dev/null +++ b/odoo_parking_management/static/description/assets/icons/hire-odoo.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/odoo_parking_management/static/description/assets/icons/hotel-black.png b/odoo_parking_management/static/description/assets/icons/hotel-black.png new file mode 100755 index 000000000..130f613be Binary files /dev/null and b/odoo_parking_management/static/description/assets/icons/hotel-black.png differ diff --git a/odoo_parking_management/static/description/assets/icons/license.png b/odoo_parking_management/static/description/assets/icons/license.png new file mode 100755 index 000000000..a5869797e Binary files /dev/null and b/odoo_parking_management/static/description/assets/icons/license.png differ diff --git a/odoo_parking_management/static/description/assets/icons/life-ring-icon.svg b/odoo_parking_management/static/description/assets/icons/life-ring-icon.svg new file mode 100755 index 000000000..3ae6e1d89 --- /dev/null +++ b/odoo_parking_management/static/description/assets/icons/life-ring-icon.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/odoo_parking_management/static/description/assets/icons/lifebuoy.png b/odoo_parking_management/static/description/assets/icons/lifebuoy.png new file mode 100755 index 000000000..658d56ccc Binary files /dev/null and b/odoo_parking_management/static/description/assets/icons/lifebuoy.png differ diff --git a/odoo_parking_management/static/description/assets/icons/mail.svg b/odoo_parking_management/static/description/assets/icons/mail.svg new file mode 100755 index 000000000..1eedde695 --- /dev/null +++ b/odoo_parking_management/static/description/assets/icons/mail.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo_parking_management/static/description/assets/icons/manufacturing-black.png b/odoo_parking_management/static/description/assets/icons/manufacturing-black.png new file mode 100755 index 000000000..697eb0e9f Binary files /dev/null and b/odoo_parking_management/static/description/assets/icons/manufacturing-black.png differ diff --git a/odoo_parking_management/static/description/assets/icons/notes.png b/odoo_parking_management/static/description/assets/icons/notes.png new file mode 100755 index 000000000..ee5e95404 Binary files /dev/null and b/odoo_parking_management/static/description/assets/icons/notes.png differ diff --git a/odoo_parking_management/static/description/assets/icons/notification icon.svg b/odoo_parking_management/static/description/assets/icons/notification icon.svg new file mode 100755 index 000000000..053189973 --- /dev/null +++ b/odoo_parking_management/static/description/assets/icons/notification icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/odoo_parking_management/static/description/assets/icons/odoo-consultancy.svg b/odoo_parking_management/static/description/assets/icons/odoo-consultancy.svg new file mode 100755 index 000000000..e05f65bde --- /dev/null +++ b/odoo_parking_management/static/description/assets/icons/odoo-consultancy.svg @@ -0,0 +1,4 @@ + + + + diff --git a/odoo_parking_management/static/description/assets/icons/odoo-licencing.svg b/odoo_parking_management/static/description/assets/icons/odoo-licencing.svg new file mode 100755 index 000000000..2606c88b0 --- /dev/null +++ b/odoo_parking_management/static/description/assets/icons/odoo-licencing.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo_parking_management/static/description/assets/icons/odoo-logo.png b/odoo_parking_management/static/description/assets/icons/odoo-logo.png new file mode 100755 index 000000000..0e4d0eb5a Binary files /dev/null and b/odoo_parking_management/static/description/assets/icons/odoo-logo.png differ diff --git a/odoo_parking_management/static/description/assets/icons/patter.svg b/odoo_parking_management/static/description/assets/icons/patter.svg new file mode 100755 index 000000000..25c9c0a8f --- /dev/null +++ b/odoo_parking_management/static/description/assets/icons/patter.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/odoo_parking_management/static/description/assets/icons/pattern1.png b/odoo_parking_management/static/description/assets/icons/pattern1.png new file mode 100755 index 000000000..09ab0fb2d Binary files /dev/null and b/odoo_parking_management/static/description/assets/icons/pattern1.png differ diff --git a/odoo_parking_management/static/description/assets/icons/pos-black.png b/odoo_parking_management/static/description/assets/icons/pos-black.png new file mode 100755 index 000000000..97c0f90c1 Binary files /dev/null and b/odoo_parking_management/static/description/assets/icons/pos-black.png differ diff --git a/odoo_parking_management/static/description/assets/icons/puzzle-piece-icon.svg b/odoo_parking_management/static/description/assets/icons/puzzle-piece-icon.svg new file mode 100755 index 000000000..3e9ad9373 --- /dev/null +++ b/odoo_parking_management/static/description/assets/icons/puzzle-piece-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/odoo_parking_management/static/description/assets/icons/puzzle.png b/odoo_parking_management/static/description/assets/icons/puzzle.png new file mode 100755 index 000000000..65cf854e7 Binary files /dev/null and b/odoo_parking_management/static/description/assets/icons/puzzle.png differ diff --git a/odoo_parking_management/static/description/assets/icons/replace-icon.svg b/odoo_parking_management/static/description/assets/icons/replace-icon.svg new file mode 100755 index 000000000..d0e3a7af1 --- /dev/null +++ b/odoo_parking_management/static/description/assets/icons/replace-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/odoo_parking_management/static/description/assets/icons/restaurant-black.png b/odoo_parking_management/static/description/assets/icons/restaurant-black.png new file mode 100755 index 000000000..4a35eb939 Binary files /dev/null and b/odoo_parking_management/static/description/assets/icons/restaurant-black.png differ diff --git a/odoo_parking_management/static/description/assets/icons/screenshot-main.png b/odoo_parking_management/static/description/assets/icons/screenshot-main.png new file mode 100755 index 000000000..575f8e676 Binary files /dev/null and b/odoo_parking_management/static/description/assets/icons/screenshot-main.png differ diff --git a/odoo_parking_management/static/description/assets/icons/screenshot.png b/odoo_parking_management/static/description/assets/icons/screenshot.png new file mode 100755 index 000000000..cef272529 Binary files /dev/null and b/odoo_parking_management/static/description/assets/icons/screenshot.png differ diff --git a/odoo_parking_management/static/description/assets/icons/service-black.png b/odoo_parking_management/static/description/assets/icons/service-black.png new file mode 100755 index 000000000..301ab51cb Binary files /dev/null and b/odoo_parking_management/static/description/assets/icons/service-black.png differ diff --git a/odoo_parking_management/static/description/assets/icons/skype-fill.svg b/odoo_parking_management/static/description/assets/icons/skype-fill.svg new file mode 100755 index 000000000..c17423639 --- /dev/null +++ b/odoo_parking_management/static/description/assets/icons/skype-fill.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/odoo_parking_management/static/description/assets/icons/skype.png b/odoo_parking_management/static/description/assets/icons/skype.png new file mode 100755 index 000000000..51b409fb3 Binary files /dev/null and b/odoo_parking_management/static/description/assets/icons/skype.png differ diff --git a/odoo_parking_management/static/description/assets/icons/skype.svg b/odoo_parking_management/static/description/assets/icons/skype.svg new file mode 100755 index 000000000..df3dad39b --- /dev/null +++ b/odoo_parking_management/static/description/assets/icons/skype.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo_parking_management/static/description/assets/icons/star-1.svg b/odoo_parking_management/static/description/assets/icons/star-1.svg new file mode 100755 index 000000000..7e55ab162 --- /dev/null +++ b/odoo_parking_management/static/description/assets/icons/star-1.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo_parking_management/static/description/assets/icons/star-2.svg b/odoo_parking_management/static/description/assets/icons/star-2.svg new file mode 100755 index 000000000..5ae9f507a --- /dev/null +++ b/odoo_parking_management/static/description/assets/icons/star-2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/odoo_parking_management/static/description/assets/icons/support.png b/odoo_parking_management/static/description/assets/icons/support.png new file mode 100755 index 000000000..4f18b8b82 Binary files /dev/null and b/odoo_parking_management/static/description/assets/icons/support.png differ diff --git a/odoo_parking_management/static/description/assets/icons/test-1 - Copy.png b/odoo_parking_management/static/description/assets/icons/test-1 - Copy.png new file mode 100755 index 000000000..f6a902663 Binary files /dev/null and b/odoo_parking_management/static/description/assets/icons/test-1 - Copy.png differ diff --git a/odoo_parking_management/static/description/assets/icons/test-1.png b/odoo_parking_management/static/description/assets/icons/test-1.png new file mode 100755 index 000000000..0908add2b Binary files /dev/null and b/odoo_parking_management/static/description/assets/icons/test-1.png differ diff --git a/odoo_parking_management/static/description/assets/icons/test-2.png b/odoo_parking_management/static/description/assets/icons/test-2.png new file mode 100755 index 000000000..4671fe91e Binary files /dev/null and b/odoo_parking_management/static/description/assets/icons/test-2.png differ diff --git a/odoo_parking_management/static/description/assets/icons/trading-black.png b/odoo_parking_management/static/description/assets/icons/trading-black.png new file mode 100755 index 000000000..9398ba2f1 Binary files /dev/null and b/odoo_parking_management/static/description/assets/icons/trading-black.png differ diff --git a/odoo_parking_management/static/description/assets/icons/training.png b/odoo_parking_management/static/description/assets/icons/training.png new file mode 100755 index 000000000..884ca024d Binary files /dev/null and b/odoo_parking_management/static/description/assets/icons/training.png differ diff --git a/odoo_parking_management/static/description/assets/icons/translate.svg b/odoo_parking_management/static/description/assets/icons/translate.svg new file mode 100755 index 000000000..af9c8a1aa --- /dev/null +++ b/odoo_parking_management/static/description/assets/icons/translate.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/odoo_parking_management/static/description/assets/icons/update.png b/odoo_parking_management/static/description/assets/icons/update.png new file mode 100755 index 000000000..ecbc5a01a Binary files /dev/null and b/odoo_parking_management/static/description/assets/icons/update.png differ diff --git a/odoo_parking_management/static/description/assets/icons/user.png b/odoo_parking_management/static/description/assets/icons/user.png new file mode 100755 index 000000000..6ffb23d9f Binary files /dev/null and b/odoo_parking_management/static/description/assets/icons/user.png differ diff --git a/odoo_parking_management/static/description/assets/icons/video.png b/odoo_parking_management/static/description/assets/icons/video.png new file mode 100755 index 000000000..576705b17 Binary files /dev/null and b/odoo_parking_management/static/description/assets/icons/video.png differ diff --git a/odoo_parking_management/static/description/assets/icons/whatsapp.png b/odoo_parking_management/static/description/assets/icons/whatsapp.png new file mode 100755 index 000000000..d513a5356 Binary files /dev/null and b/odoo_parking_management/static/description/assets/icons/whatsapp.png differ diff --git a/odoo_parking_management/static/description/assets/icons/wrench-icon.svg b/odoo_parking_management/static/description/assets/icons/wrench-icon.svg new file mode 100755 index 000000000..174b5a465 --- /dev/null +++ b/odoo_parking_management/static/description/assets/icons/wrench-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/odoo_parking_management/static/description/assets/icons/wrench.png b/odoo_parking_management/static/description/assets/icons/wrench.png new file mode 100755 index 000000000..6c04dea0f Binary files /dev/null and b/odoo_parking_management/static/description/assets/icons/wrench.png differ diff --git a/odoo_parking_management/static/description/assets/modules/1.gif b/odoo_parking_management/static/description/assets/modules/1.gif new file mode 100644 index 000000000..ae3a880a2 Binary files /dev/null and b/odoo_parking_management/static/description/assets/modules/1.gif differ diff --git a/odoo_parking_management/static/description/assets/modules/1.jpg b/odoo_parking_management/static/description/assets/modules/1.jpg new file mode 100644 index 000000000..08bbafeb6 Binary files /dev/null and b/odoo_parking_management/static/description/assets/modules/1.jpg differ diff --git a/odoo_parking_management/static/description/assets/modules/1.png b/odoo_parking_management/static/description/assets/modules/1.png new file mode 100644 index 000000000..c9d686d47 Binary files /dev/null and b/odoo_parking_management/static/description/assets/modules/1.png differ diff --git a/odoo_parking_management/static/description/assets/modules/2.gif b/odoo_parking_management/static/description/assets/modules/2.gif new file mode 100644 index 000000000..d19e2b352 Binary files /dev/null and b/odoo_parking_management/static/description/assets/modules/2.gif differ diff --git a/odoo_parking_management/static/description/assets/modules/2.jpg b/odoo_parking_management/static/description/assets/modules/2.jpg new file mode 100644 index 000000000..39006b41a Binary files /dev/null and b/odoo_parking_management/static/description/assets/modules/2.jpg differ diff --git a/odoo_parking_management/static/description/assets/modules/2.png b/odoo_parking_management/static/description/assets/modules/2.png new file mode 100644 index 000000000..a1209a01f Binary files /dev/null and b/odoo_parking_management/static/description/assets/modules/2.png differ diff --git a/odoo_parking_management/static/description/assets/modules/3.jpg b/odoo_parking_management/static/description/assets/modules/3.jpg new file mode 100644 index 000000000..3d171226b Binary files /dev/null and b/odoo_parking_management/static/description/assets/modules/3.jpg differ diff --git a/odoo_parking_management/static/description/assets/modules/3.png b/odoo_parking_management/static/description/assets/modules/3.png new file mode 100644 index 000000000..8513873ea Binary files /dev/null and b/odoo_parking_management/static/description/assets/modules/3.png differ diff --git a/odoo_parking_management/static/description/assets/modules/4.jpg b/odoo_parking_management/static/description/assets/modules/4.jpg new file mode 100644 index 000000000..1f3f2e27f Binary files /dev/null and b/odoo_parking_management/static/description/assets/modules/4.jpg differ diff --git a/odoo_parking_management/static/description/assets/modules/4.png b/odoo_parking_management/static/description/assets/modules/4.png new file mode 100644 index 000000000..3bedf7981 Binary files /dev/null and b/odoo_parking_management/static/description/assets/modules/4.png differ diff --git a/odoo_parking_management/static/description/assets/modules/5.jpg b/odoo_parking_management/static/description/assets/modules/5.jpg new file mode 100644 index 000000000..0db717519 Binary files /dev/null and b/odoo_parking_management/static/description/assets/modules/5.jpg differ diff --git a/odoo_parking_management/static/description/assets/modules/5.png b/odoo_parking_management/static/description/assets/modules/5.png new file mode 100644 index 000000000..0e311ca87 Binary files /dev/null and b/odoo_parking_management/static/description/assets/modules/5.png differ diff --git a/odoo_parking_management/static/description/assets/modules/6.jpg b/odoo_parking_management/static/description/assets/modules/6.jpg new file mode 100644 index 000000000..67c7f7062 Binary files /dev/null and b/odoo_parking_management/static/description/assets/modules/6.jpg differ diff --git a/odoo_parking_management/static/description/assets/modules/6.png b/odoo_parking_management/static/description/assets/modules/6.png new file mode 100644 index 000000000..14391fa4e Binary files /dev/null and b/odoo_parking_management/static/description/assets/modules/6.png differ diff --git a/odoo_parking_management/static/description/assets/modules/courier_management.jpg b/odoo_parking_management/static/description/assets/modules/courier_management.jpg new file mode 100644 index 000000000..3e4a22c32 Binary files /dev/null and b/odoo_parking_management/static/description/assets/modules/courier_management.jpg differ diff --git a/odoo_parking_management/static/description/assets/modules/cw_sale.png b/odoo_parking_management/static/description/assets/modules/cw_sale.png new file mode 100644 index 000000000..1b75c62d5 Binary files /dev/null and b/odoo_parking_management/static/description/assets/modules/cw_sale.png differ diff --git a/odoo_parking_management/static/description/assets/modules/cw_stock.png b/odoo_parking_management/static/description/assets/modules/cw_stock.png new file mode 100644 index 000000000..62af09ec6 Binary files /dev/null and b/odoo_parking_management/static/description/assets/modules/cw_stock.png differ diff --git a/odoo_parking_management/static/description/assets/modules/delivery_split.jpg b/odoo_parking_management/static/description/assets/modules/delivery_split.jpg new file mode 100644 index 000000000..76724ebda Binary files /dev/null and b/odoo_parking_management/static/description/assets/modules/delivery_split.jpg differ diff --git a/odoo_parking_management/static/description/assets/modules/module_image (1).jpeg b/odoo_parking_management/static/description/assets/modules/module_image (1).jpeg new file mode 100644 index 000000000..5ae24843e Binary files /dev/null and b/odoo_parking_management/static/description/assets/modules/module_image (1).jpeg differ diff --git a/odoo_parking_management/static/description/assets/modules/module_image (1).png b/odoo_parking_management/static/description/assets/modules/module_image (1).png new file mode 100644 index 000000000..0dea4f332 Binary files /dev/null and b/odoo_parking_management/static/description/assets/modules/module_image (1).png differ diff --git a/odoo_parking_management/static/description/assets/modules/module_image (2).png b/odoo_parking_management/static/description/assets/modules/module_image (2).png new file mode 100644 index 000000000..a5dc79613 Binary files /dev/null and b/odoo_parking_management/static/description/assets/modules/module_image (2).png differ diff --git a/odoo_parking_management/static/description/assets/modules/module_image-1.jpeg b/odoo_parking_management/static/description/assets/modules/module_image-1.jpeg new file mode 100644 index 000000000..31f066e9c Binary files /dev/null and b/odoo_parking_management/static/description/assets/modules/module_image-1.jpeg differ diff --git a/odoo_parking_management/static/description/assets/modules/module_image.jpeg b/odoo_parking_management/static/description/assets/modules/module_image.jpeg new file mode 100644 index 000000000..0cbac311c Binary files /dev/null and b/odoo_parking_management/static/description/assets/modules/module_image.jpeg differ diff --git a/odoo_parking_management/static/description/assets/modules/module_image.png b/odoo_parking_management/static/description/assets/modules/module_image.png new file mode 100644 index 000000000..612be4b77 Binary files /dev/null and b/odoo_parking_management/static/description/assets/modules/module_image.png differ diff --git a/odoo_parking_management/static/description/assets/modules/multi_product_return_from_website.jpg b/odoo_parking_management/static/description/assets/modules/multi_product_return_from_website.jpg new file mode 100644 index 000000000..7f2cc2ab5 Binary files /dev/null and b/odoo_parking_management/static/description/assets/modules/multi_product_return_from_website.jpg differ diff --git a/odoo_parking_management/static/description/assets/modules/purchase_history_of_product.jpg b/odoo_parking_management/static/description/assets/modules/purchase_history_of_product.jpg new file mode 100644 index 000000000..dab7b184c Binary files /dev/null and b/odoo_parking_management/static/description/assets/modules/purchase_history_of_product.jpg differ diff --git a/odoo_parking_management/static/description/assets/screenshots/Parking_entry.png b/odoo_parking_management/static/description/assets/screenshots/Parking_entry.png new file mode 100644 index 000000000..9a313db22 Binary files /dev/null and b/odoo_parking_management/static/description/assets/screenshots/Parking_entry.png differ diff --git a/odoo_parking_management/static/description/assets/screenshots/after_payment.png b/odoo_parking_management/static/description/assets/screenshots/after_payment.png new file mode 100644 index 000000000..c230b4aa3 Binary files /dev/null and b/odoo_parking_management/static/description/assets/screenshots/after_payment.png differ diff --git a/odoo_parking_management/static/description/assets/screenshots/checkin.png b/odoo_parking_management/static/description/assets/screenshots/checkin.png new file mode 100644 index 000000000..7cbaf3fee Binary files /dev/null and b/odoo_parking_management/static/description/assets/screenshots/checkin.png differ diff --git a/odoo_parking_management/static/description/assets/screenshots/checkout.png b/odoo_parking_management/static/description/assets/screenshots/checkout.png new file mode 100644 index 000000000..dc0116859 Binary files /dev/null and b/odoo_parking_management/static/description/assets/screenshots/checkout.png differ diff --git a/odoo_parking_management/static/description/assets/screenshots/configuration_page.png b/odoo_parking_management/static/description/assets/screenshots/configuration_page.png new file mode 100644 index 000000000..706172d36 Binary files /dev/null and b/odoo_parking_management/static/description/assets/screenshots/configuration_page.png differ diff --git a/odoo_parking_management/static/description/assets/screenshots/hero.gif b/odoo_parking_management/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..243272bc9 Binary files /dev/null and b/odoo_parking_management/static/description/assets/screenshots/hero.gif differ diff --git a/odoo_parking_management/static/description/assets/screenshots/kanban_view.png b/odoo_parking_management/static/description/assets/screenshots/kanban_view.png new file mode 100644 index 000000000..05e20bce1 Binary files /dev/null and b/odoo_parking_management/static/description/assets/screenshots/kanban_view.png differ diff --git a/odoo_parking_management/static/description/assets/screenshots/payment.png b/odoo_parking_management/static/description/assets/screenshots/payment.png new file mode 100644 index 000000000..0ab214ef4 Binary files /dev/null and b/odoo_parking_management/static/description/assets/screenshots/payment.png differ diff --git a/odoo_parking_management/static/description/assets/screenshots/report.png b/odoo_parking_management/static/description/assets/screenshots/report.png new file mode 100644 index 000000000..e852c5339 Binary files /dev/null and b/odoo_parking_management/static/description/assets/screenshots/report.png differ diff --git a/odoo_parking_management/static/description/assets/screenshots/reporting.png b/odoo_parking_management/static/description/assets/screenshots/reporting.png new file mode 100644 index 000000000..da5b9167d Binary files /dev/null and b/odoo_parking_management/static/description/assets/screenshots/reporting.png differ diff --git a/odoo_parking_management/static/description/assets/screenshots/slot_menu.png b/odoo_parking_management/static/description/assets/screenshots/slot_menu.png new file mode 100644 index 000000000..57b1bb9b7 Binary files /dev/null and b/odoo_parking_management/static/description/assets/screenshots/slot_menu.png differ diff --git a/odoo_parking_management/static/description/assets/screenshots/user.png b/odoo_parking_management/static/description/assets/screenshots/user.png new file mode 100644 index 000000000..a1b147222 Binary files /dev/null and b/odoo_parking_management/static/description/assets/screenshots/user.png differ diff --git a/odoo_parking_management/static/description/assets/y18.jpg b/odoo_parking_management/static/description/assets/y18.jpg new file mode 100755 index 000000000..eea1714f2 Binary files /dev/null and b/odoo_parking_management/static/description/assets/y18.jpg differ diff --git a/odoo_parking_management/static/description/banner.jpg b/odoo_parking_management/static/description/banner.jpg new file mode 100644 index 000000000..4dce76126 Binary files /dev/null and b/odoo_parking_management/static/description/banner.jpg differ diff --git a/odoo_parking_management/static/description/icon.png b/odoo_parking_management/static/description/icon.png new file mode 100644 index 000000000..91b9a8745 Binary files /dev/null and b/odoo_parking_management/static/description/icon.png differ diff --git a/odoo_parking_management/static/description/index.html b/odoo_parking_management/static/description/index.html new file mode 100644 index 000000000..e73ead0aa --- /dev/null +++ b/odoo_parking_management/static/description/index.html @@ -0,0 +1,1316 @@ + + + + + + Parking Management + + + + + + + + + + +
+
+ + + +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ +
+
+
+
+

+ A Perfect Vehicle Parking Management. +

+

Parking Management +

+
+
+ +
+ +
+ +
+
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+

Key + Highlights

+
+
+
+
+ +
+
+ Odoo 18 Community & Enterprise Edition + Support. +
+

+ Parking Management system in Odoo 18 + Community & Enterprise Edition.

+
+
+
+
+
+ +
+
+ User and Manager Level Access +
+

+ Set the Manager and User in settings +

+
+
+
+
+
+ +
+
+ Two Type of Parking Section +
+

+ Create private/public parking entry. +

+
+
+
+
+
+ +
+
+ Parking Report +
+

+ Displays Report Based on the all Parking + Entries.

+
+
+
+
+
+ +
+
+ Slot Availability Status +
+

+ Create Slots and make them allocated and not + allocated.

+
+
+
+
+ +
+
+
+ Parking Management +

+ Are you ready to make your business more + organized? +
Improve now! +

+ +
+
+ +
+
+
+ + + + +
+
+ +
+
+
+
+ acc_bg +
+ +
+
+
+
+

+ + + User Access Level +

+
+
+

+ Choose the Access Level For the + Module +

+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ + + Form View. +

+
+
+

+ After filling out the Parking + Entry Form, click the Check + In Button. +

+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ + Checked in Page +

+
+
+

+ After checking in, you will + be redirected to a page with + Check Out Button. +

+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ Check Out + + Page +

+
+
+

+ After checking out, you will + be redirected to a page with + Register Payment Button. +

+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ Payment + + + Wizard. +

+
+
+

+ Clicking the 'Register + Payment' button will open the Payment entry wizard. +

+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ After Payment + + + Page +

+
+
+

+ After Payment, your page will + display a ribbon with the 'Paid' status. +

+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ + + + Parking Ticket. +

+
+
+

+ User can Download the Parking + Ticket +

+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ +Kanban + + View. +

+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ + + + Slots Menu. +

+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ +Configuration + + Page. +

+
+
+

+ User can Set up The Module + Configuration Here. +

+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ Reporting + + Page. +

+
+
+

+ User can Set up The Reporting + Tab. +

+
+
+
+ +
+
+
+
+
+
+
+
+ +
+
+
+
+ +
+

+ User and Manager Level + Access.

+
+ +
+
+
+
+
+
+ +
+

+ Two Type of Parking Section.

+
+
+
+
+
+
+
+ +
+

+ Displays Report Based on the all + Parking Entries.

+
+ + +
+
+
+
+
+
+ +
+

+ Slot Availability Status

+
+
+
+
+
+
+
+
+
+
+ +
+ +
+ +
+

+ After Check out + you Will Redirect to + the Page Having + Register Payment + Button.Clicking on + the Register Payment + Button Will Open The + Payment Filing + Wizard. +

+
+
+ +
+ +
+

+ Reporting Menu is + provided +

+
+
+
+ +
+
+
+
+
+
+ +
+
+

+ Latest Release 18.0.1.0.0 +

+ + 3th January, 2025 + +
+
+
+
+
+ Add +
+
+
+
    +
  • + Initial Commit +
  • + +
+
+
+
+
+
+
+
+
+
+ + + + +
+

+ Related Products +

+ +
+ + + +
+

+ Our Services

+ +
+
+ +
+
+ .... +
+
+ +
+ +
+
+ + + + + + diff --git a/odoo_parking_management/views/location_details_views.xml b/odoo_parking_management/views/location_details_views.xml new file mode 100644 index 000000000..24977bde0 --- /dev/null +++ b/odoo_parking_management/views/location_details_views.xml @@ -0,0 +1,33 @@ + + + + + location.details.view.tree + location.details + + + + + + + + + Location + ir.actions.act_window + location.details + list + {'search_default_available':1} + +

+ Create Your First Location +

+
+
+ + +
diff --git a/odoo_parking_management/views/member_slot_reservation_views.xml b/odoo_parking_management/views/member_slot_reservation_views.xml new file mode 100644 index 000000000..cab279cab --- /dev/null +++ b/odoo_parking_management/views/member_slot_reservation_views.xml @@ -0,0 +1,58 @@ + + + + + member.slot.reservation.view.tree + member.slot.reservation + + + + + + + + + + + + member.slot.reservation.view.form + member.slot.reservation + +
+ + + + + + + + + + + + + + +
+
+ + + Member Slot Reservations + ir.actions.act_window + member.slot.reservation + list,form + {'search_default_available':1} + +

+ Create Your First Member Slot Reservation +

+
+
+ + +
diff --git a/odoo_parking_management/views/parking_entry_views.xml b/odoo_parking_management/views/parking_entry_views.xml new file mode 100644 index 000000000..1d086abbb --- /dev/null +++ b/odoo_parking_management/views/parking_entry_views.xml @@ -0,0 +1,241 @@ + + + + + parking.entry.view.kanban + parking.entry + + + + + + + + + +
+
+ + +
+ Slot: + +
+ Vehicle: + +
+ Check In: + +
+ Check Out: + +
+
+
+
+
+
+
+
+
+ + + parking.entry.view.kanban.allocated + parking.entry + + + + + +
+
+ + +
+
+
+
+
+
+
+
+
+ + + parking.entry.view.kanban.non.allocated + parking.entry + + + + + +
+
+ + +
+
+
+
+
+
+
+
+
+ + + parking.entry.view.tree + parking.entry + + + + + + + + + + + + + + parking.entry.view.form + parking.entry + +
+
+
+ + + + +

+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+
+ + + Public Parking Entry + ir.actions.act_window + parking.entry + kanban,list,form + {'default_customer_type':'public'} + [('customer_type', '=', ('public'))] + +

+ Create Your First Public Parking Entry +

+
+
+ + + Private Parking Entry + ir.actions.act_window + parking.entry + kanban,list,form + {'default_customer_type':'private'} + [('customer_type', '=', ('private'))] + +

+ Create Your First Private Parking Entry +

+
+
+ + + + + + + + All Parking Entry + ir.actions.act_window + parking.entry + kanban,list,form + {'search_default_available':1} + +

+ View Your Parking Entries +

+
+
+ + +
diff --git a/odoo_parking_management/views/slot_details_views.xml b/odoo_parking_management/views/slot_details_views.xml new file mode 100644 index 000000000..ea3b371e3 --- /dev/null +++ b/odoo_parking_management/views/slot_details_views.xml @@ -0,0 +1,143 @@ + + + + + slot.details.view.kanban + slot.details + + + + + +
+
+ + +
+
+
+
+
+
+
+
+
+ + + slot.details.view.tree + slot.details + + + + + + + + + + + slot.details.view.form + slot.details + +
+ + + + + + + + + + + + + + +
+
+ + + Slots + ir.actions.act_window + slot.details + list,form + {'search_default_available':1} + +

+ Create Your First Slot +

+
+
+ + + All Slots + ir.actions.act_window + slot.details + kanban,list,form + {'search_default_available':1} + +

+ Display all the slots +

+
+
+ + + Allocated Slots + ir.actions.act_window + parking.entry + kanban,list,form + + [('state','=',('check_in'))] + +

+ First Allocated Parking Entry +

+
+
+ + + Non Allocated Slots + ir.actions.act_window + parking.entry + kanban,list,form + + [('state','=',('check_out'))] + +

+ First Non Allocated Parking Entry +

+
+
+ + + + + + +
diff --git a/odoo_parking_management/views/slot_type_views.xml b/odoo_parking_management/views/slot_type_views.xml new file mode 100644 index 000000000..08b62c3dd --- /dev/null +++ b/odoo_parking_management/views/slot_type_views.xml @@ -0,0 +1,58 @@ + + + + + slot.type.view.tree + slot.type + + + + + + + + + + slot_type.view.form + slot.type + +
+ +

+ +

+ + + + + + + + +
+ + +
+
+ + + Slot Types + ir.actions.act_window + slot.type + list,form + {'search_default_available':1} + +

+ Create Your First Slot Type +

+
+
+ + +
diff --git a/odoo_parking_management/views/vehicle_details_views.xml b/odoo_parking_management/views/vehicle_details_views.xml new file mode 100644 index 000000000..d66f46703 --- /dev/null +++ b/odoo_parking_management/views/vehicle_details_views.xml @@ -0,0 +1,60 @@ + + + + + vehicle.details.view.tree + vehicle.details + + + + + + + + + + + + + vehicle.details.view.form + vehicle.details + +
+ + + + + + + + + + + + + + + +
+
+ + + Vehicle + ir.actions.act_window + vehicle.details + list,form + {'search_default_available':1} + +

+ Create Your First Vehicle Entry +

+
+
+ + +
diff --git a/odoo_parking_management/wizard/__init__.py b/odoo_parking_management/wizard/__init__.py new file mode 100644 index 000000000..5e55920e9 --- /dev/null +++ b/odoo_parking_management/wizard/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import register_payment diff --git a/odoo_parking_management/wizard/register_payment.py b/odoo_parking_management/wizard/register_payment.py new file mode 100644 index 000000000..fea639fd6 --- /dev/null +++ b/odoo_parking_management/wizard/register_payment.py @@ -0,0 +1,54 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import fields, models + + +class RegisterPaymentWizard(models.TransientModel): + """Details for a payment for parking""" + _name = 'register.payment.wizard' + _description = 'Register Parking Payment' + + partner_id = fields.Many2one('res.partner', + string='Partner', + help='Name of partner to register the payment') + parking_duration = fields.Float(string='Duration', + help='Duration of the parking vehicle') + amount = fields.Float(string='Amount', + help='Amount of the parking vehicle') + ref = fields.Char(string='Reference', + help='Reference to the parking ticket') + date = fields.Date(string='Date', default=fields.Date.context_today, + help='Date when payment was made') + + def parking_payment(self): + """Returns the amount of the parking ticket for the customer.""" + active_id = self._context.get('active_id') + active_record = self.env['parking.entry'].browse(active_id) + payment = self.env['account.payment'].create({ + 'payment_type': 'inbound', + 'partner_id': self.partner_id.id, + 'amount': self.amount, + 'memo': self.ref, + }) + payment.action_post() + active_record.paid_bool = True + active_record.state = 'payment' diff --git a/odoo_parking_management/wizard/register_payment_views.xml b/odoo_parking_management/wizard/register_payment_views.xml new file mode 100644 index 000000000..555fb9db4 --- /dev/null +++ b/odoo_parking_management/wizard/register_payment_views.xml @@ -0,0 +1,27 @@ + + + + + register.payment.wizard.view.form + register.payment.wizard + +
+ + + + + + + + + + + + +
+
+
+