diff --git a/gatepass_slip/README.rst b/gatepass_slip/README.rst new file mode 100644 index 000000000..53e28ec8d --- /dev/null +++ b/gatepass_slip/README.rst @@ -0,0 +1,42 @@ +.. image:: https://img.shields.io/badge/licence-LGPL--3-blue.svg + :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 + +Delivery Gate Pass +============================= +Gatepass tickets for delivery orders. + +Configuration +============= +* No additional configurations needed + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developer: Mohamed Muzammil VP @cybrosys + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com +* Website : https://cybrosys.com + +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/gatepass_slip/__init__.py b/gatepass_slip/__init__.py new file mode 100644 index 000000000..a17c35ebf --- /dev/null +++ b/gatepass_slip/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################### +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2023-TODAY Cybrosys Technologies (). +# Author: Mohamed Muzammil VP() +# +# This program is free software: you can modify +# it under the terms of the GNU Lesser General Public License(LGPLv3) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# 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 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 . +# +############################################################################### +from . import models diff --git a/gatepass_slip/__manifest__.py b/gatepass_slip/__manifest__.py new file mode 100644 index 000000000..7b392f29a --- /dev/null +++ b/gatepass_slip/__manifest__.py @@ -0,0 +1,46 @@ +# -*- coding: utf-8 -*- +############################################################################### +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2023-TODAY Cybrosys Technologies (). +# Author: Mohamed Muzammil VP() +# +# This program is free software: you can modify +# it under the terms of the GNU Lesser General Public License(LGPLv3) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# 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 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 . +# +############################################################################### +{ + 'name': 'Delivery Gate Pass', + 'summary': """Generating Gate pass slip in delivery orders""", + 'version': '15.0.1.0.0', + 'description': """This module facilitates the creation of gate pass slips + for users, which can be used as a pass to let a vehicle + into a facility. The slips allow for the addition of + driver and vehicle-related information.""", + 'author': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'website': 'http://www.cybrosys.com', + 'category': 'Inventory/Delivery', + 'depends': ['base', 'stock'], + 'license': 'LGPL-3', + 'data': [ + 'views/stock_picking_views.xml', + 'report/stock_picking_reports.xml', + 'report/stock_picking_templates.xml', + ], + 'images': ['static/description/banner.jpg'], + 'installable': True, + 'application': False, + 'auto_install': False, +} diff --git a/gatepass_slip/doc/RELEASE_NOTES.md b/gatepass_slip/doc/RELEASE_NOTES.md new file mode 100755 index 000000000..ae078365c --- /dev/null +++ b/gatepass_slip/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 30.03.2023 +#### Version 15.0.1.0.0 +##### ADD +- Initial commit for Delivery Gate Pass diff --git a/gatepass_slip/models/__init__.py b/gatepass_slip/models/__init__.py new file mode 100644 index 000000000..014026f6b --- /dev/null +++ b/gatepass_slip/models/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################### +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2023-TODAY Cybrosys Technologies (). +# Author: Mohamed Muzammil VP() +# +# This program is free software: you can modify +# it under the terms of the GNU Lesser General Public License(LGPLv3) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# 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 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 . +# +############################################################################### +from . import stock_picking diff --git a/gatepass_slip/models/stock_picking.py b/gatepass_slip/models/stock_picking.py new file mode 100644 index 000000000..4245173d7 --- /dev/null +++ b/gatepass_slip/models/stock_picking.py @@ -0,0 +1,43 @@ +# -*- coding: utf-8 -*- +############################################################################### +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2023-TODAY Cybrosys Technologies (). +# Author: Mohamed Muzammil VP() +# +# This program is free software: you can modify +# it under the terms of the GNU Lesser General Public License(LGPLv3) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# 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 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 . +# +############################################################################### + +from odoo import fields, models + + +class StockPicking(models.Model): + """Adding some fields to stock.picking to print a report""" + _inherit = 'stock.picking' + + enable_order_line = fields.Boolean(string='Include Product Details', + default=True, + help="If you want to print the product " + "details in your report enable " + "this field") + vehicle_no = fields.Char(string='Vehicle Number', + help="Enter the vehicle number") + vehicle_driver_name = fields.Char(string='Driver Name', + help="Enter the driver's name") + driver_contact_number = fields.Char(string='Contact No', + help="Enter the driver's contact" + " number") + corresponding_company = fields.Char(string='Company', + help="Enter the corresponding company") diff --git a/gatepass_slip/report/stock_picking_reports.xml b/gatepass_slip/report/stock_picking_reports.xml new file mode 100644 index 000000000..ea85786a7 --- /dev/null +++ b/gatepass_slip/report/stock_picking_reports.xml @@ -0,0 +1,31 @@ + + + + + Gate Pass + + custom + 150 + 240 + Portrait + 40 + 5 + 5 + 5 + + 40 + 90 + + + + + Gate Pass + stock.picking + qweb-pdf + gatepass_slip.report_gatepass_slip + gatepass_slip.report_gatepass_slip + + + report + + \ No newline at end of file diff --git a/gatepass_slip/report/stock_picking_templates.xml b/gatepass_slip/report/stock_picking_templates.xml new file mode 100644 index 000000000..d45d463bf --- /dev/null +++ b/gatepass_slip/report/stock_picking_templates.xml @@ -0,0 +1,143 @@ + + + + + + \ No newline at end of file diff --git a/gatepass_slip/static/description/assets/icons/check.png b/gatepass_slip/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/gatepass_slip/static/description/assets/icons/check.png differ diff --git a/gatepass_slip/static/description/assets/icons/chevron.png b/gatepass_slip/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/gatepass_slip/static/description/assets/icons/chevron.png differ diff --git a/gatepass_slip/static/description/assets/icons/cogs.png b/gatepass_slip/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/gatepass_slip/static/description/assets/icons/cogs.png differ diff --git a/gatepass_slip/static/description/assets/icons/consultation.png b/gatepass_slip/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/gatepass_slip/static/description/assets/icons/consultation.png differ diff --git a/gatepass_slip/static/description/assets/icons/ecom-black.png b/gatepass_slip/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/gatepass_slip/static/description/assets/icons/ecom-black.png differ diff --git a/gatepass_slip/static/description/assets/icons/education-black.png b/gatepass_slip/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/gatepass_slip/static/description/assets/icons/education-black.png differ diff --git a/gatepass_slip/static/description/assets/icons/hotel-black.png b/gatepass_slip/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/gatepass_slip/static/description/assets/icons/hotel-black.png differ diff --git a/gatepass_slip/static/description/assets/icons/license.png b/gatepass_slip/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/gatepass_slip/static/description/assets/icons/license.png differ diff --git a/gatepass_slip/static/description/assets/icons/lifebuoy.png b/gatepass_slip/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/gatepass_slip/static/description/assets/icons/lifebuoy.png differ diff --git a/gatepass_slip/static/description/assets/icons/logo.png b/gatepass_slip/static/description/assets/icons/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/gatepass_slip/static/description/assets/icons/logo.png differ diff --git a/gatepass_slip/static/description/assets/icons/manufacturing-black.png b/gatepass_slip/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/gatepass_slip/static/description/assets/icons/manufacturing-black.png differ diff --git a/gatepass_slip/static/description/assets/icons/pos-black.png b/gatepass_slip/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/gatepass_slip/static/description/assets/icons/pos-black.png differ diff --git a/gatepass_slip/static/description/assets/icons/puzzle.png b/gatepass_slip/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/gatepass_slip/static/description/assets/icons/puzzle.png differ diff --git a/gatepass_slip/static/description/assets/icons/restaurant-black.png b/gatepass_slip/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/gatepass_slip/static/description/assets/icons/restaurant-black.png differ diff --git a/gatepass_slip/static/description/assets/icons/service-black.png b/gatepass_slip/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/gatepass_slip/static/description/assets/icons/service-black.png differ diff --git a/gatepass_slip/static/description/assets/icons/trading-black.png b/gatepass_slip/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/gatepass_slip/static/description/assets/icons/trading-black.png differ diff --git a/gatepass_slip/static/description/assets/icons/training.png b/gatepass_slip/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/gatepass_slip/static/description/assets/icons/training.png differ diff --git a/gatepass_slip/static/description/assets/icons/update.png b/gatepass_slip/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/gatepass_slip/static/description/assets/icons/update.png differ diff --git a/gatepass_slip/static/description/assets/icons/user.png b/gatepass_slip/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/gatepass_slip/static/description/assets/icons/user.png differ diff --git a/gatepass_slip/static/description/assets/icons/wrench.png b/gatepass_slip/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/gatepass_slip/static/description/assets/icons/wrench.png differ diff --git a/gatepass_slip/static/description/assets/modules/1.png b/gatepass_slip/static/description/assets/modules/1.png new file mode 100644 index 000000000..f1a1c82cd Binary files /dev/null and b/gatepass_slip/static/description/assets/modules/1.png differ diff --git a/gatepass_slip/static/description/assets/modules/2.png b/gatepass_slip/static/description/assets/modules/2.png new file mode 100644 index 000000000..f01b10060 Binary files /dev/null and b/gatepass_slip/static/description/assets/modules/2.png differ diff --git a/gatepass_slip/static/description/assets/modules/3.png b/gatepass_slip/static/description/assets/modules/3.png new file mode 100644 index 000000000..5238bdeab Binary files /dev/null and b/gatepass_slip/static/description/assets/modules/3.png differ diff --git a/gatepass_slip/static/description/assets/modules/4.png b/gatepass_slip/static/description/assets/modules/4.png new file mode 100644 index 000000000..004c61a9e Binary files /dev/null and b/gatepass_slip/static/description/assets/modules/4.png differ diff --git a/gatepass_slip/static/description/assets/modules/5.png b/gatepass_slip/static/description/assets/modules/5.png new file mode 100644 index 000000000..30ad58232 Binary files /dev/null and b/gatepass_slip/static/description/assets/modules/5.png differ diff --git a/gatepass_slip/static/description/assets/modules/6.png b/gatepass_slip/static/description/assets/modules/6.png new file mode 100644 index 000000000..424c1e30d Binary files /dev/null and b/gatepass_slip/static/description/assets/modules/6.png differ diff --git a/gatepass_slip/static/description/assets/screenshots/1.png b/gatepass_slip/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..9f34c3b6d Binary files /dev/null and b/gatepass_slip/static/description/assets/screenshots/1.png differ diff --git a/gatepass_slip/static/description/assets/screenshots/2.png b/gatepass_slip/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..5289f09a3 Binary files /dev/null and b/gatepass_slip/static/description/assets/screenshots/2.png differ diff --git a/gatepass_slip/static/description/assets/screenshots/3.png b/gatepass_slip/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..bd314b777 Binary files /dev/null and b/gatepass_slip/static/description/assets/screenshots/3.png differ diff --git a/gatepass_slip/static/description/assets/screenshots/4.png b/gatepass_slip/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..8c5510838 Binary files /dev/null and b/gatepass_slip/static/description/assets/screenshots/4.png differ diff --git a/gatepass_slip/static/description/assets/screenshots/hero.png b/gatepass_slip/static/description/assets/screenshots/hero.png new file mode 100644 index 000000000..aca1f0e6f Binary files /dev/null and b/gatepass_slip/static/description/assets/screenshots/hero.png differ diff --git a/gatepass_slip/static/description/banner.jpg b/gatepass_slip/static/description/banner.jpg new file mode 100644 index 000000000..15275a387 Binary files /dev/null and b/gatepass_slip/static/description/banner.jpg differ diff --git a/gatepass_slip/static/description/icon.png b/gatepass_slip/static/description/icon.png new file mode 100644 index 000000000..736db846c Binary files /dev/null and b/gatepass_slip/static/description/icon.png differ diff --git a/gatepass_slip/static/description/index.html b/gatepass_slip/static/description/index.html new file mode 100644 index 000000000..943540f51 --- /dev/null +++ b/gatepass_slip/static/description/index.html @@ -0,0 +1,681 @@ +
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+
+
+
+ +
+
+
+

+ Delivery Gate Pass

+

+ Gate pass modules helps to generate gatepass tickets. +

+ +
+
+ + +
+
+

+ + Overview +

+
+ +
+

+ Gate pass modules make it possible to create gatepass tickets + that include information on the driver, the firm to which the + vehicle belongs, as well as the entry date and time,and the + vehicle's details, additionally, as the product details listed + in the delivery order. +

+
+
+
+
+

+ Configuration +

+
+ +
+

+ No additional configurations required. +

+
+
+ +
+
+

+ Features +

+
+ +
+
+ +
+
+

+ Creating the Gatepass information, including the Vehicle + Number, Name, Contact Information, and Company of the + Driver +

+
+
+
+
+ +
+
+

+ The ticket includes details on the items in the delivery + order as well. The "Gatepass details" form allows you to + enable this. +

+
+
+
+
+ +
+
+

+ Printing Gatepass ticket.

+
+
+
+ +
+
+

+ Screenshots +

+
+
+

+ Click --> GatePass Details +

+ + +
+ +
+

+ Enter the information for the gate pass +

+

+ We can fill out the information for the Gate Pass here. +

+ + +
+
+

+ Print Gate Pass Ticket

+

+ We can print the Gate Pass Ticket from the Print menu. +

+ + +
+
+

+ Gate Pass Ticket that has been printed

+

+ The printed Gate Pass Ticket would be this. +

+ + +
+ +
+ + +
+
+

Suggested Products

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

Our Services

+
+
+ +
+
+ +
+
+ Odoo + Customization
+
+ +
+
+ +
+
+ Odoo + Implementation
+
+ +
+
+ +
+
+ Odoo + Support
+
+ + +
+
+ +
+
+ Hire + Odoo + Developer
+
+ +
+
+ +
+
+ Odoo + Integration
+
+ +
+
+ +
+
+ Odoo + Migration
+
+ + +
+
+ +
+
+ Odoo + Consultancy
+
+ +
+
+ +
+
+ Odoo + Implementation
+
+ +
+
+ +
+
+ Odoo + Licensing Consultancy
+
+
+
+ + + +
+
+
+

Our Industries

+
+
+ +
+
+ +
+ Trading +
+

+ Easily procure + and + sell your products

+
+
+ +
+
+ +
+ POS +
+

+ Easy + configuration + and convivial experience

+
+
+ +
+
+ +
+ Education +
+

+ A platform for + educational management

+
+
+ +
+
+ +
+ Manufacturing +
+

+ Plan, track and + schedule your operations

+
+
+ +
+
+ +
+ E-commerce & Website +
+

+ Mobile + friendly, + awe-inspiring product pages

+
+
+ +
+
+ +
+ Service Management +
+

+ Keep track of + services and invoice

+
+
+ +
+
+ +
+ Restaurant +
+

+ Run your bar or + restaurant methodically

+
+
+ +
+
+ +
+ Hotel Management +
+

+ An + all-inclusive + hotel management application

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

Need Help?

+
+
+
+ + +
+ +
+ +
+ +
+ WhatsApp +
+
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+
+
+ + +
\ No newline at end of file diff --git a/gatepass_slip/views/stock_picking_views.xml b/gatepass_slip/views/stock_picking_views.xml new file mode 100644 index 000000000..5dcaf6a8f --- /dev/null +++ b/gatepass_slip/views/stock_picking_views.xml @@ -0,0 +1,21 @@ + + + + stock.picking.view.form.inherit.gatepass_slip + stock.picking + + + + + + + + + + + + + + + +