diff --git a/gatepass_slip/README.rst b/gatepass_slip/README.rst new file mode 100644 index 000000000..4cff5eb2f --- /dev/null +++ b/gatepass_slip/README.rst @@ -0,0 +1,41 @@ +.. 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..ccfbd8b05 --- /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': '16.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_templates.xml', + 'report/stock_picking_reports.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..b9f128e5a --- /dev/null +++ b/gatepass_slip/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 30.03.2023 +#### Version 16.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..ff33f94fa --- /dev/null +++ b/gatepass_slip/models/stock_picking.py @@ -0,0 +1,42 @@ +# -*- 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): + _inherit = 'stock.picking' + + is_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..e48257cfa --- /dev/null +++ b/gatepass_slip/report/stock_picking_templates.xml @@ -0,0 +1,152 @@ + + + + + + + + + \ 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/misc/categories.png b/gatepass_slip/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/gatepass_slip/static/description/assets/misc/categories.png differ diff --git a/gatepass_slip/static/description/assets/misc/check-box.png b/gatepass_slip/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/gatepass_slip/static/description/assets/misc/check-box.png differ diff --git a/gatepass_slip/static/description/assets/misc/compass.png b/gatepass_slip/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/gatepass_slip/static/description/assets/misc/compass.png differ diff --git a/gatepass_slip/static/description/assets/misc/corporate.png b/gatepass_slip/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/gatepass_slip/static/description/assets/misc/corporate.png differ diff --git a/gatepass_slip/static/description/assets/misc/customer-support.png b/gatepass_slip/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/gatepass_slip/static/description/assets/misc/customer-support.png differ diff --git a/gatepass_slip/static/description/assets/misc/cybrosys-logo.png b/gatepass_slip/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/gatepass_slip/static/description/assets/misc/cybrosys-logo.png differ diff --git a/gatepass_slip/static/description/assets/misc/features.png b/gatepass_slip/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/gatepass_slip/static/description/assets/misc/features.png differ diff --git a/gatepass_slip/static/description/assets/misc/logo.png b/gatepass_slip/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/gatepass_slip/static/description/assets/misc/logo.png differ diff --git a/gatepass_slip/static/description/assets/misc/pictures.png b/gatepass_slip/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/gatepass_slip/static/description/assets/misc/pictures.png differ diff --git a/gatepass_slip/static/description/assets/misc/pie-chart.png b/gatepass_slip/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/gatepass_slip/static/description/assets/misc/pie-chart.png differ diff --git a/gatepass_slip/static/description/assets/misc/right-arrow.png b/gatepass_slip/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/gatepass_slip/static/description/assets/misc/right-arrow.png differ diff --git a/gatepass_slip/static/description/assets/misc/star.png b/gatepass_slip/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/gatepass_slip/static/description/assets/misc/star.png differ diff --git a/gatepass_slip/static/description/assets/misc/support.png b/gatepass_slip/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/gatepass_slip/static/description/assets/misc/support.png differ diff --git a/gatepass_slip/static/description/assets/misc/whatsapp.png b/gatepass_slip/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/gatepass_slip/static/description/assets/misc/whatsapp.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..5c56f0bcd 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..a29119785 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..489f44e86 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..3add135c3 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..c0aa245ce 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..655347837 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..264bc0691 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..36910f983 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..f99de276d 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..07df02bb1 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..85681fa5e 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..a81ef8b55 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..b272b3438 --- /dev/null +++ b/gatepass_slip/static/description/index.html @@ -0,0 +1,652 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ +
+
+
+ +

+ Delivery Gate Pass

+

+ Gate pass modules helps to generate gatepass tickets.

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

+ Explore This + Module

+
+ + + + +
+
+ +
+

+ 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. +
+
+ + + +
+
+ +
+

+ Features +

+
+
+
+
+ + Support in Desktop. +
+
+
+
+ + Gate Pass Slip +
+
+
+ + + +
+
+

+ 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. +

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

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

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

+ Support +

+
+
+
+
+
+
+ +
+
+

Need Help?

+

Got questions or need help? + Get in touch.

+ +

+ odoo@cybrosys.com

+
+
+
+
+
+
+
+ +
+
+

WhatsApp

+

Say hi to us on WhatsApp!

+ +

+ +91 86068 + 27707

+
+
+
+
+
+
+
+ +
+
+
+ \ 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..e0d984c26 --- /dev/null +++ b/gatepass_slip/views/stock_picking_views.xml @@ -0,0 +1,21 @@ + + + + stock.picking.view.form.inherit.gatepass_slip + stock.picking + + + + + + + + + + + + + + + +