diff --git a/gatepass_slip/README.rst b/gatepass_slip/README.rst new file mode 100644 index 000000000..1b7dd9268 --- /dev/null +++ b/gatepass_slip/README.rst @@ -0,0 +1,50 @@ +.. image:: https://img.shields.io/badge/license-LGPL--3-green.svg + :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 + +Delivery Gate Pass +================== +Gate pass tickets for delivery orders. + +Configuration +============= +* No additional configurations needed + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +General Public License, Version 3 (LGPL v3). +(https://www.odoo.com/documentation/17.0/legal/licenses.html) + +Credits +------- +* Developer: + (V16) Mohamed Muzammil VP, + (V17) Jumana Haseen, + +Contact : odoo@cybrosys.com + +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..0331fdab0 --- /dev/null +++ b/gatepass_slip/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################### +# Cybrosys Technologies Pvt. Ltd. +# Copyright C) 2024-TODAY Cybrosys Technologies (). +# Author: Jumana Haseen () +# +# 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..8c9a5d2ce --- /dev/null +++ b/gatepass_slip/__manifest__.py @@ -0,0 +1,46 @@ +# -*- coding: utf-8 -*- +############################################################################### +# Cybrosys Technologies Pvt. Ltd. +# Copyright(C) 2024-TODAY Cybrosys Technologies (). +# Author: Jumana Haseen () +# +# 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', + 'version': '17.0.1.0.0', + 'category': 'Warehouse', + 'summary': """Generating Gate pass slip in delivery orders""", + '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', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'http://www.cybrosys.com', + 'depends': ['base', 'stock'], + 'data': [ + 'views/stock_picking_views.xml', + 'report/stock_picking_templates.xml', + 'report/stock_picking_reports.xml', + ], + 'images': ['static/description/banner.jpg'], + 'license': 'LGPL-3', + '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..05777c3af --- /dev/null +++ b/gatepass_slip/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 19.01.2024 +#### Version 17.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..68fd7c423 --- /dev/null +++ b/gatepass_slip/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################### +# Cybrosys Technologies Pvt. Ltd. + +# Copyright(C) 2024-TODAY Cybrosys Technologies (). +# Author: Jumana Haseen () +# +# 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..e4ee525bc --- /dev/null +++ b/gatepass_slip/models/stock_picking.py @@ -0,0 +1,43 @@ +# -*- coding: utf-8 -*- +############################################################################### +# Cybrosys Technologies Pvt. Ltd. + +# Copyright(C) 2024-TODAY Cybrosys Technologies (). +# Author: Jumana Haseen () +# +# 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 model 'stock.picking' and add required fields """ + _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..73c27e0d2 --- /dev/null +++ b/gatepass_slip/report/stock_picking_reports.xml @@ -0,0 +1,30 @@ + + + + + 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 + + diff --git a/gatepass_slip/report/stock_picking_templates.xml b/gatepass_slip/report/stock_picking_templates.xml new file mode 100644 index 000000000..332476422 --- /dev/null +++ b/gatepass_slip/report/stock_picking_templates.xml @@ -0,0 +1,147 @@ + + + + + + + diff --git a/gatepass_slip/static/description/assets/icons/capture (1).png b/gatepass_slip/static/description/assets/icons/capture (1).png new file mode 100644 index 000000000..8824deafc Binary files /dev/null and b/gatepass_slip/static/description/assets/icons/capture (1).png differ 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/img.png b/gatepass_slip/static/description/assets/icons/img.png new file mode 100644 index 000000000..70197f477 Binary files /dev/null and b/gatepass_slip/static/description/assets/icons/img.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/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/photo-capture.png b/gatepass_slip/static/description/assets/icons/photo-capture.png new file mode 100644 index 000000000..06c111758 Binary files /dev/null and b/gatepass_slip/static/description/assets/icons/photo-capture.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/Cybrosys R.png b/gatepass_slip/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/gatepass_slip/static/description/assets/misc/Cybrosys R.png differ diff --git a/gatepass_slip/static/description/assets/misc/email.svg b/gatepass_slip/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/gatepass_slip/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gatepass_slip/static/description/assets/misc/phone.svg b/gatepass_slip/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/gatepass_slip/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/gatepass_slip/static/description/assets/misc/star (1) 2.svg b/gatepass_slip/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/gatepass_slip/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/gatepass_slip/static/description/assets/misc/support (1) 1.svg b/gatepass_slip/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/gatepass_slip/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/gatepass_slip/static/description/assets/misc/support-email.svg b/gatepass_slip/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/gatepass_slip/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/gatepass_slip/static/description/assets/misc/tick-mark.svg b/gatepass_slip/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/gatepass_slip/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/gatepass_slip/static/description/assets/misc/whatsapp 1.svg b/gatepass_slip/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/gatepass_slip/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/gatepass_slip/static/description/assets/misc/whatsapp.svg b/gatepass_slip/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/gatepass_slip/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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..f313809d8 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..884fc90ef 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..cf1a68a6c 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..fee247bec 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..637923082 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..995008a61 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..eea7d38e3 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..e17ac9ca5 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..9d2d90c6a 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..917945dec 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.gif b/gatepass_slip/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..ea37738cf Binary files /dev/null and b/gatepass_slip/static/description/assets/screenshots/hero.gif differ diff --git a/gatepass_slip/static/description/banner.jpg b/gatepass_slip/static/description/banner.jpg new file mode 100644 index 000000000..4716adccc 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..06aed6795 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..13630820e --- /dev/null +++ b/gatepass_slip/static/description/index.html @@ -0,0 +1,696 @@ + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+

+ Delivery Gate Pass

+

+ Gate Pass Module helps to Generate Gate Pass Tickets. +

+
+ +
+
+
+
+
+

+ Key Highlights +

+
+
+
+
+
+ +
+
+

+ Support in Desktop.

+
+
+
+
+
+
+ +
+
+

+ Generate Gate Pass Tickets.

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

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

+
+
+
+
+
+
+
    +
  • + Available in Odoo 17.0 Community and Enterprise. +
  • +
  • + Delivery Gate Pass +
      +
    • Gate pass modules make it possible to + create gate pass 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. +
    • +
    +
  • +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:19th January 2024 +
+

+ Initial Commit for Delivery Gate Pass +

+
+
+
+
+
+
+
+

+ Related Products

+
+
+ +
+
+

+ Our Services

+
+
+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Customization

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Implementation

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Support

+
+
+
+
+
+
+ service-icon +
+
+

Hire + Odoo Developer

+
+
+
+
+ +
+
+ service-icon +
+
+

Odoo + Integration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Migration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Consultancy

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Implementation

+
+
+
+
+
+
+ service-icon +
+
+

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 + 99456767686 +
+
+
+
+
+
+
+
+
+ + + + + + diff --git a/gatepass_slip/views/stock_picking_views.xml b/gatepass_slip/views/stock_picking_views.xml new file mode 100644 index 000000000..25f9f6734 --- /dev/null +++ b/gatepass_slip/views/stock_picking_views.xml @@ -0,0 +1,22 @@ + + + + + stock.picking.view.form.inherit.gatepass_slip + stock.picking + + + + + + + + + + + + + + + +