| @ -0,0 +1,46 @@ | |||||
|  | .. image:: https://img.shields.io/badge/licence-LGPL--3-green.svg | ||||
|  |     :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html | ||||
|  |     :alt: License: LGPL-3 | ||||
|  | 
 | ||||
|  | Add Multiple Products to Inventory Transfer | ||||
|  | =========================================== | ||||
|  | Easily add multiple products to a picking directly from the product list view with this new features. | ||||
|  | 
 | ||||
|  | Configuration | ||||
|  | ============= | ||||
|  | No additional configuration is needed to use this module. | ||||
|  | 
 | ||||
|  | License | ||||
|  | ------- | ||||
|  | General Public License, Version 3 (LGPL v3). | ||||
|  | (https://www.gnu.org/licenses/lgpl-3.0-standalone.html) | ||||
|  | 
 | ||||
|  | Company | ||||
|  | ------- | ||||
|  | * `Cybrosys Techno Solutions <https://cybrosys.com/>`__ | ||||
|  | 
 | ||||
|  | Credits | ||||
|  | ------- | ||||
|  | * Developer:(V15)- Jumana Jabin MP ,Contact: odoo@cybrosys.com | ||||
|  | 
 | ||||
|  | Contact us | ||||
|  | -------- | ||||
|  | * 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 https://www.cybrosys.com | ||||
|  | 
 | ||||
|  | Further information | ||||
|  | =================== | ||||
|  | HTML Description: `<static/description/index.html>`__ | ||||
| @ -0,0 +1,23 @@ | |||||
|  | # -*- coding: utf-8 -*- | ||||
|  | ############################################################################# | ||||
|  | # | ||||
|  | #    Cybrosys Technologies Pvt. Ltd. | ||||
|  | # | ||||
|  | #    Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) | ||||
|  | #    Author: Jumana Jabin MP(<https://www.cybrosys.com>) | ||||
|  | # | ||||
|  | #    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 <http://www.gnu.org/licenses/>. | ||||
|  | # | ||||
|  | ############################################################################# | ||||
|  | from . import models | ||||
|  | from . import wizard | ||||
| @ -0,0 +1,49 @@ | |||||
|  | # -*- coding: utf-8 -*- | ||||
|  | ############################################################################# | ||||
|  | # | ||||
|  | #    Cybrosys Technologies Pvt. Ltd. | ||||
|  | # | ||||
|  | #    Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) | ||||
|  | #    Author: Jumana Jabin MP(<https://www.cybrosys.com>) | ||||
|  | # | ||||
|  | #    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 <http://www.gnu.org/licenses/>. | ||||
|  | # | ||||
|  | ############################################################################# | ||||
|  | { | ||||
|  |     'name': 'Add Multiple Products to Inventory Transfer', | ||||
|  |     'version': '15.0.1.0.0', | ||||
|  |     'category': 'Warehouse', | ||||
|  |     'summary': 'Easily add multiple products to a picking directly from the' | ||||
|  |                ' product list view with this new feature', | ||||
|  |     'description': """This module allow you to add multiple products to the  | ||||
|  |      corresponding inventory transfer.  You can see all products in kanban,list | ||||
|  |      and form view.You can also view the recent transfer  history of the  | ||||
|  |      selected product along with the option to update the quantity, Inventory, | ||||
|  |      Add Multiple Products""", | ||||
|  |     'author': 'Cybrosys Techno Solutions', | ||||
|  |     'company': 'Cybrosys Techno Solutions', | ||||
|  |     'maintainer': 'Cybrosys Techno Solutions', | ||||
|  |     'website': 'https://www.cybrosys.com', | ||||
|  |     'depends': ['stock'], | ||||
|  |     'data': [ | ||||
|  |         'security/ir.model.access.csv', | ||||
|  |         'views/stock_picking_views.xml', | ||||
|  |         'views/product_product_views.xml', | ||||
|  |         'wizard/transfer_products_details_views.xml', | ||||
|  |     ], | ||||
|  |     'images': ['static/description/banner.jpg'], | ||||
|  |     'license': 'LGPL-3', | ||||
|  |     'installable': True, | ||||
|  |     'auto_install': False, | ||||
|  |     'application': False, | ||||
|  | } | ||||
| @ -0,0 +1,6 @@ | |||||
|  | ## Module <products_to_transfer> | ||||
|  | 
 | ||||
|  | #### 18.08.2023 | ||||
|  | #### Version 15.0.1.0.0 | ||||
|  | ##### ADD | ||||
|  | - Initial commit for Add Multiple Products to Inventory Transfer | ||||
| @ -0,0 +1,23 @@ | |||||
|  | # -*- coding: utf-8 -*- | ||||
|  | ############################################################################# | ||||
|  | # | ||||
|  | #    Cybrosys Technologies Pvt. Ltd. | ||||
|  | # | ||||
|  | #    Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) | ||||
|  | #    Author: Jumana Jabin MP(<https://www.cybrosys.com>) | ||||
|  | # | ||||
|  | #    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 <http://www.gnu.org/licenses/>. | ||||
|  | # | ||||
|  | ############################################################################# | ||||
|  | from . import product_product | ||||
|  | from . import stock_picking | ||||
| @ -0,0 +1,72 @@ | |||||
|  | # -*- coding: utf-8 -*- | ||||
|  | ############################################################################# | ||||
|  | # | ||||
|  | #    Cybrosys Technologies Pvt. Ltd. | ||||
|  | # | ||||
|  | #    Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) | ||||
|  | #    Author: Jumana Jabin MP(<https://www.cybrosys.com>) | ||||
|  | # | ||||
|  | #    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 <http://www.gnu.org/licenses/>. | ||||
|  | # | ||||
|  | ############################################################################# | ||||
|  | from odoo import models, _ | ||||
|  | from odoo.exceptions import ValidationError | ||||
|  | 
 | ||||
|  | 
 | ||||
|  | class ProductProduct(models.Model): | ||||
|  |     """This class extends the 'product.product' model to enhance its | ||||
|  |     functionality. It adds features for adding the current product to a stock | ||||
|  |      picking and viewing product details in transfer.products.details model.""" | ||||
|  |     _inherit = 'product.product' | ||||
|  | 
 | ||||
|  |     def action_add_to_picking(self): | ||||
|  |         """Add the current product to the stock picking.""" | ||||
|  |         self.ensure_one() | ||||
|  |         if not self._context.get('active_id'): | ||||
|  |             raise ValidationError( | ||||
|  |                 _("There are no current stock picks available. Unable to add " | ||||
|  |                   "product.")) | ||||
|  |         picking_id = self.env['stock.picking'].browse( | ||||
|  |             self._context.get('active_id')) | ||||
|  |         move_vals = { | ||||
|  |             'name': self.name, | ||||
|  |             'product_id': self.id, | ||||
|  |             'product_uom': self.uom_id.id, | ||||
|  |             'product_uom_qty': 1, | ||||
|  |             'location_id': picking_id.location_id.id, | ||||
|  |             'location_dest_id': picking_id.location_dest_id.id, | ||||
|  |         } | ||||
|  |         existing_move = picking_id.move_ids_without_package.filtered( | ||||
|  |             lambda move: move.product_id == self) | ||||
|  |         if existing_move: | ||||
|  |             existing_move[0].product_uom_qty += 1 | ||||
|  |         else: | ||||
|  |             picking_id.write({ | ||||
|  |                 'move_ids_without_package': [(0, 0, move_vals)], | ||||
|  |             }) | ||||
|  | 
 | ||||
|  |     def action_view_details(self): | ||||
|  |         """Open a new window to display product details.""" | ||||
|  |         return { | ||||
|  |             'name': 'Product Details', | ||||
|  |             'view_type': 'form', | ||||
|  |             'view_mode': 'form', | ||||
|  |             'res_model': 'transfer.products.details', | ||||
|  |             'type': 'ir.actions.act_window', | ||||
|  |             'target': 'new', | ||||
|  |             'context': { | ||||
|  |                 'picking_id': self.env['stock.picking'].browse( | ||||
|  |                     self._context.get('active_id')).id, | ||||
|  |                 'default_product': self.name, | ||||
|  |             } | ||||
|  |         } | ||||
| @ -0,0 +1,40 @@ | |||||
|  | # -*- coding: utf-8 -*- | ||||
|  | ############################################################################# | ||||
|  | # | ||||
|  | #    Cybrosys Technologies Pvt. Ltd. | ||||
|  | # | ||||
|  | #    Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) | ||||
|  | #    Author: Jumana Jabin MP(<https://www.cybrosys.com>) | ||||
|  | # | ||||
|  | #    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 <http://www.gnu.org/licenses/>. | ||||
|  | # | ||||
|  | ############################################################################# | ||||
|  | from odoo import models | ||||
|  | 
 | ||||
|  | 
 | ||||
|  | class StockPicking(models.Model): | ||||
|  |     """This class extends the base 'stock.picking' model to provide enhanced | ||||
|  |      functionality. It introduces a function to open a new window for viewing | ||||
|  |      products associated with a picking""" | ||||
|  |     _inherit = 'stock.picking' | ||||
|  | 
 | ||||
|  |     def action_view_products(self): | ||||
|  |         """Open a new window to view products.""" | ||||
|  |         return { | ||||
|  |             'name': 'View Products', | ||||
|  |             'view_type': 'form', | ||||
|  |             'view_mode': 'kanban,tree,form', | ||||
|  |             'res_model': 'product.product', | ||||
|  |             'type': 'ir.actions.act_window', | ||||
|  |             'domain': [('type', 'in', ['product', 'consu'])], | ||||
|  |         } | ||||
| 
 | 
| After Width: | Height: | Size: 3.6 KiB | 
| After Width: | Height: | Size: 1.3 KiB | 
| After Width: | Height: | Size: 1.4 KiB | 
| After Width: | Height: | Size: 576 B | 
| After Width: | Height: | Size: 733 B | 
| After Width: | Height: | Size: 911 B | 
| After Width: | Height: | Size: 1.1 KiB | 
| After Width: | Height: | Size: 1.2 KiB | 
| After Width: | Height: | Size: 673 B | 
| After Width: | Height: | Size: 878 B | 
| After Width: | Height: | Size: 653 B | 
| After Width: | Height: | Size: 905 B | 
| After Width: | Height: | Size: 839 B | 
| After Width: | Height: | Size: 427 B | 
| After Width: | Height: | Size: 627 B | 
| After Width: | Height: | Size: 1.2 KiB | 
| After Width: | Height: | Size: 988 B | 
| After Width: | Height: | Size: 1.2 KiB | 
| After Width: | Height: | Size: 1.9 KiB | 
| After Width: | Height: | Size: 1.1 KiB | 
| After Width: | Height: | Size: 2.1 KiB | 
| After Width: | Height: | Size: 4.4 KiB | 
| After Width: | Height: | Size: 3.4 KiB | 
| After Width: | Height: | Size: 1.6 KiB | 
| After Width: | Height: | Size: 3.8 KiB | 
| After Width: | Height: | Size: 5.0 KiB | 
| After Width: | Height: | Size: 62 KiB | 
| After Width: | Height: | Size: 58 KiB | 
| After Width: | Height: | Size: 60 KiB | 
| After Width: | Height: | Size: 61 KiB | 
| After Width: | Height: | Size: 59 KiB | 
| After Width: | Height: | Size: 58 KiB | 
| After Width: | Height: | Size: 109 KiB | 
| After Width: | Height: | Size: 310 KiB | 
| After Width: | Height: | Size: 188 KiB | 
| After Width: | Height: | Size: 61 KiB | 
| After Width: | Height: | Size: 378 KiB | 
| After Width: | Height: | Size: 93 KiB | 
| After Width: | Height: | Size: 107 KiB | 
| After Width: | Height: | Size: 310 KiB | 
| After Width: | Height: | Size: 188 KiB | 
| After Width: | Height: | Size: 96 KiB | 
| After Width: | Height: | Size: 11 KiB | 
| @ -0,0 +1,815 @@ | |||||
|  | <div style="background-color: #714B67; height: 810px; width: 100%; padding: 15px; position: relative;"> | ||||
|  |     <!-- TITLE BAR --> | ||||
|  |     <div class="d-flex align-items-center justify-content-between" | ||||
|  |          style="border-bottom: 1px solid #875A7B; padding: 15px; display: flex; justify-content: space-between; align-items: center;"> | ||||
|  |         <img src="assets/misc/cybrosys-logo.png" width="42" height="42" | ||||
|  |              style="width: 42px; height: 42px;"/> | ||||
|  |         <div> | ||||
|  |             <div style="color: #7C7BAD; font-size: 14px; font-family: 'Montserrat', sans-serif; font-weight: bold; background-color: white; display: inline-block; padding: 3px 10px; border-radius: 50px;" | ||||
|  |                  class="mr-2"> | ||||
|  |                 <i class="fa fa-check mr-1"></i>Community | ||||
|  |             </div> | ||||
|  |             <div style="color: #7C7BAD; font-size: 14px; font-family: 'Montserrat', sans-serif; font-weight: bold; background-color: white; display: inline-block; padding: 3px 10px; border-radius: 50px;" | ||||
|  |                  class="mr-2"> | ||||
|  |                 <i class="fa fa-check mr-1"></i>Enterprise | ||||
|  |             </div> | ||||
|  |             <div style="color: #7C7BAD; font-size: 14px; font-family: 'Montserrat', sans-serif; font-weight: bold; background-color: white; display: inline-block; padding: 3px 10px; border-radius: 50px;" | ||||
|  |                  class="mr-2"> | ||||
|  |                 <i class="fa fa-check mr-1"></i>Odoo.sh | ||||
|  |             </div> | ||||
|  |         </div> | ||||
|  |     </div> | ||||
|  |     <div class="container"> | ||||
|  |         <div class="row"> | ||||
|  |             <div class="col-sm-12 col-md-12 col-lg-12"> | ||||
|  |                 <!-- APP HERO --> | ||||
|  |                 <h1 style="color: #FFFFFF; font-weight: bolder; font-size: 50px; text-align: center; margin-top: 50px;"> | ||||
|  |                     Add Multiple Products To Inventory Transfer | ||||
|  |                 </h1> | ||||
|  |                 <p style="color:#FFFFFF; padding: 8px 15px; text-align: center; font-size: 24px;"> | ||||
|  |                     This module lets you include Multiple Products in the | ||||
|  |                     related Inventory Transfer. | ||||
|  |                 </p> | ||||
|  |                 <!-- END OF APP HERO --> | ||||
|  |                 <img src="./assets/screenshots/hero.gif" class="img-responsive" | ||||
|  |                      width="100%" height="auto"/> | ||||
|  |             </div> | ||||
|  |         </div> | ||||
|  |     </div> | ||||
|  | </div> | ||||
|  | 
 | ||||
|  | <div class="d-flex align-items-center" | ||||
|  |      style="border-bottom: 2px solid #714B67; padding: 15px 0px; margin-top: 300px;"> | ||||
|  |     <div class="d-flex justify-content-center align-items-center mr-2" | ||||
|  |          style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;"> | ||||
|  |         <img src="assets/misc/compass.png"/> | ||||
|  |     </div> | ||||
|  |     <h2 class="mt-2" | ||||
|  |         style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;"> | ||||
|  |         Explore This Module</h2> | ||||
|  | </div> | ||||
|  | 
 | ||||
|  | <div class="col-md-6"> | ||||
|  |     <a href="#overview" style="text-decoration: none !important;"> | ||||
|  |         <div class="row" | ||||
|  |              style="background-color: #f5f2f5 !important; border-radius: 10px !important; margin: 1rem !important; padding: 1.5em !important; height: 100px !important;"> | ||||
|  |             <div class="col-8"> | ||||
|  |                 <h3 | ||||
|  |                         style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.2rem !important;"> | ||||
|  |                     Overview</h3> | ||||
|  |                 <p | ||||
|  |                         style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #714B67 !important; font-size: 0.9rem !important;"> | ||||
|  |                     Learn more about this module</p> | ||||
|  |             </div> | ||||
|  |             <div class="col-4 text-right d-flex justify-content-end align-items-center"> | ||||
|  |                 <i class="fa fa-chevron-right" | ||||
|  |                    style="color: #714B67 !important;"></i> | ||||
|  |             </div> | ||||
|  |         </div> | ||||
|  |     </a> | ||||
|  | </div> | ||||
|  | <div class="col-md-6"> | ||||
|  |     <a href="#features" style="text-decoration: none !important;"> | ||||
|  |         <div class="row" | ||||
|  |              style="background-color: #f5f2f5 !important; border-radius: 10px !important; margin: 1rem !important; padding: 1.5em !important; height: 100px !important;"> | ||||
|  |             <div class="col-8"> | ||||
|  |                 <h3 | ||||
|  |                         style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.2rem !important;"> | ||||
|  |                     Features</h3> | ||||
|  |                 <p | ||||
|  |                         style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #714B67 !important; font-size: 0.9rem !important;"> | ||||
|  |                     View features of this module</p> | ||||
|  |             </div> | ||||
|  |             <div class="col-4 text-right d-flex justify-content-end align-items-center"> | ||||
|  |                 <i class="fa fa-chevron-right" | ||||
|  |                    style="color: #714B67 !important;"></i> | ||||
|  |             </div> | ||||
|  |         </div> | ||||
|  |     </a> | ||||
|  | </div> | ||||
|  | <div class="col-md-6"> | ||||
|  |     <a href="#screenshots" | ||||
|  |        style="text-decoration: none !important;"> | ||||
|  |         <div class="row" | ||||
|  |              style="background-color: #f5f2f5 !important; border-radius: 10px !important; margin: 1rem !important; padding: 1.5em !important; height: 100px !important;"> | ||||
|  |             <div class="col-8"> | ||||
|  |                 <h3 | ||||
|  |                         style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.2rem !important;"> | ||||
|  |                     Screenshots</h3> | ||||
|  |                 <p | ||||
|  |                         style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #714B67 !important; font-size: 0.9rem !important;"> | ||||
|  |                     See key screenshots of this module</p> | ||||
|  |             </div> | ||||
|  |             <div class="col-4 text-right d-flex justify-content-end align-items-center"> | ||||
|  |                 <i class="fa fa-chevron-right" | ||||
|  |                    style="color: #714B67 !important;"></i> | ||||
|  |             </div> | ||||
|  |         </div> | ||||
|  |     </a> | ||||
|  | </div> | ||||
|  | 
 | ||||
|  | 
 | ||||
|  | <div class="row" id="overview"> | ||||
|  |     <div class="col-md-12" | ||||
|  |          style="border-bottom: 1px solid #d5d5d5 !important; margin: 2rem 0 !important"> | ||||
|  |         <h2 | ||||
|  |                 style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.5rem !important;"> | ||||
|  |             <i class="fa fa-pie-chart mr-2"></i>Overview | ||||
|  |         </h2> | ||||
|  |     </div> | ||||
|  | 
 | ||||
|  |     <div class="col-sm-12 py-4"> | ||||
|  |         <p | ||||
|  |                 style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important; line-height: 30px !important;"> | ||||
|  |             Add Multiple Products to Inventory Transfer module provides | ||||
|  |             an | ||||
|  |             easy way to add multiple products to the | ||||
|  |             corresponding inventory transfer. Also ,you can see the recent | ||||
|  |             transfer | ||||
|  |             history | ||||
|  |             of the selected product.</p> | ||||
|  | 
 | ||||
|  |     </div> | ||||
|  | </div> | ||||
|  | 
 | ||||
|  | <div class="row" id="features"> | ||||
|  |     <div class="col-md-12" | ||||
|  |          style="border-bottom: 1px solid #d5d5d5 !important; margin: 2rem 0 !important"> | ||||
|  |         <h2 | ||||
|  |                 style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.5rem !important;"> | ||||
|  |             <i class="fa fa-star mr-2"></i>Features | ||||
|  |         </h2> | ||||
|  |     </div> | ||||
|  | 
 | ||||
|  |     <div class="col-md-6 pl-3 py-3 d-flex"> | ||||
|  |         <div> | ||||
|  |             <img src="assets/icons/check.png"> | ||||
|  |         </div> | ||||
|  |         <div> | ||||
|  |             <h4 | ||||
|  |                     style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> | ||||
|  |                 Smart Button in Stock Picking Form View to Select | ||||
|  |                 Products.</h4> | ||||
|  |             <p | ||||
|  |                     style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> | ||||
|  |                 A definite Smart button in the form view of the stock | ||||
|  |                 picking operation helps you to select multiple | ||||
|  |                 products to be directly added to the transfer.</p> | ||||
|  |         </div> | ||||
|  |     </div> | ||||
|  | 
 | ||||
|  |     <div class="col-md-6 pl-3 py-3 d-flex"> | ||||
|  |         <div> | ||||
|  |             <img src="assets/icons/check.png"> | ||||
|  |         </div> | ||||
|  |         <div> | ||||
|  |             <h4 | ||||
|  |                     style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> | ||||
|  |                 Displays Products in Multiple Views.</h4> | ||||
|  |             <p | ||||
|  |                     style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> | ||||
|  |                 Displays every product which have been defined in your | ||||
|  |                 platform in Kanban, List and Form view.</p> | ||||
|  |         </div> | ||||
|  |     </div> | ||||
|  | 
 | ||||
|  |     <div class="col-md-6 pl-3 py-3 d-flex"> | ||||
|  |         <div> | ||||
|  |             <img src="assets/icons/check.png"> | ||||
|  |         </div> | ||||
|  |         <div> | ||||
|  |             <h4 | ||||
|  |                     style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> | ||||
|  |                 Displays Recent Transfer History.</h4> | ||||
|  |             <p | ||||
|  |                     style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> | ||||
|  |                 Displays recent transfer history of the selected product | ||||
|  |                 in | ||||
|  |                 the wizard window.</p> | ||||
|  |         </div> | ||||
|  |     </div> | ||||
|  |     <div class="col-md-6 pl-3 py-3 d-flex"> | ||||
|  |         <div> | ||||
|  |             <img src="assets/icons/check.png"> | ||||
|  |         </div> | ||||
|  |         <div> | ||||
|  |             <h4 | ||||
|  |                     style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> | ||||
|  |                 Option to Filter Out the Transfer History.</h4> | ||||
|  |             <p | ||||
|  |                     style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> | ||||
|  |                 Option to view recent transfer history based on the date | ||||
|  |                 selected.</p> | ||||
|  |         </div> | ||||
|  |     </div> | ||||
|  | 
 | ||||
|  |     <div class="col-md-6 pl-3 py-3 d-flex"> | ||||
|  |         <div> | ||||
|  |             <img src="assets/icons/check.png"> | ||||
|  |         </div> | ||||
|  |         <div> | ||||
|  |             <h4 | ||||
|  |                     style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> | ||||
|  |                 Provision to Add Product Details.</h4> | ||||
|  |             <p | ||||
|  |                     style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> | ||||
|  |                 Provision to add product details such as quantity of the | ||||
|  |                 product to be transferred from the selected | ||||
|  |                 product wizard.</p> | ||||
|  |         </div> | ||||
|  |     </div> | ||||
|  | 
 | ||||
|  | 
 | ||||
|  | </div> | ||||
|  | 
 | ||||
|  | <div class="row" id="screenshots"> | ||||
|  |     <div class="col-md-12" | ||||
|  |          style="border-bottom: 1px solid #d5d5d5 !important; margin: 2rem 0 !important"> | ||||
|  |         <h2 | ||||
|  |                 style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.5rem !important;"> | ||||
|  |             <i class="fa fa-image mr-2"></i>Screenshots | ||||
|  |         </h2> | ||||
|  |     </div> | ||||
|  |     <div class="col-lg-12 my-2"> | ||||
|  |         <h4 class="mt-2" | ||||
|  |             style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> | ||||
|  |             Smart Button in Inventory Transfer Form View</h4> | ||||
|  |         <p | ||||
|  |                 style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> | ||||
|  |             Smart button in stock picking form view to select multiple | ||||
|  |             products directly to the transfer operation. | ||||
|  |             Moreover, the button will be visible only for transfers in | ||||
|  |             the | ||||
|  |             draft state.</p> | ||||
|  |         <img src="assets/screenshots/add-products-button.png" | ||||
|  |              class="img-responsive img-thumbnail border" | ||||
|  |              width="100%" height="auto"/> | ||||
|  |     </div> | ||||
|  | 
 | ||||
|  |     <div class="col-lg-12 my-3"> | ||||
|  |         <h4 class="mt-3" | ||||
|  |             style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> | ||||
|  |             Display Products in Kanban View</h4> | ||||
|  |         <p | ||||
|  |                 style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> | ||||
|  |             Add to Transfer button in the Kanban view where the selected | ||||
|  |             products will be added to the corresponding | ||||
|  |             picking. | ||||
|  |         </p> | ||||
|  |         <img src="assets/screenshots/add-kanban.png" | ||||
|  |              class="img-responsive img-thumbnail border" width="100%" | ||||
|  |              height="auto"/> | ||||
|  |     </div> | ||||
|  | 
 | ||||
|  |     <div class="col-lg-12 my-3"> | ||||
|  |         <h4 class="mt-3" | ||||
|  |             style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> | ||||
|  |             Display Products in List view</h4> | ||||
|  |         <p | ||||
|  |                 style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> | ||||
|  |             Display products in the list view and also the Add to | ||||
|  |             Transfer | ||||
|  |             button in the view. Selected products | ||||
|  |             will be added to the corresponding picking. | ||||
|  |         </p> | ||||
|  |         <img src="assets/screenshots/add-list.png" | ||||
|  |              class="img-responsive img-thumbnail border" width="100%" | ||||
|  |              height="auto"/> | ||||
|  |     </div> | ||||
|  | 
 | ||||
|  | 
 | ||||
|  |     <div class="col-lg-12 my-3"> | ||||
|  |         <h4 class="mt-3" | ||||
|  |             style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> | ||||
|  |             Add to Transfer Button in the Product Form View</h4> | ||||
|  |         <p | ||||
|  |                 style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> | ||||
|  |             ADD TO TRANSFER button in the product form view, which will | ||||
|  |             add | ||||
|  |             the product to the corresponding | ||||
|  |             picking. | ||||
|  |         </p> | ||||
|  |         <img src="assets/screenshots/add-form.png" | ||||
|  |              class="img-responsive img-thumbnail border" width="100%" | ||||
|  |              height="auto"/> | ||||
|  |     </div> | ||||
|  | 
 | ||||
|  | 
 | ||||
|  |     <div class="col-lg-12 my-3"> | ||||
|  |         <h4 class="mt-3" | ||||
|  |             style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> | ||||
|  |             Update Quantity Button in the Products Kanban View</h4> | ||||
|  |         <p | ||||
|  |                 style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> | ||||
|  |             Option to view recent transfer history of the selected | ||||
|  |             product | ||||
|  |             by clicking on the Update Quantity button | ||||
|  |             in the kanban view. | ||||
|  |         </p> | ||||
|  |         <img src="assets/screenshots/update-kanban.png" | ||||
|  |              class="img-responsive img-thumbnail border" width="100%" | ||||
|  |              height="auto"/> | ||||
|  |     </div> | ||||
|  | 
 | ||||
|  | 
 | ||||
|  |     <div class="col-lg-12 my-3"> | ||||
|  |         <h4 class="mt-3" | ||||
|  |             style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> | ||||
|  |             Update Quantity Button in the Products List View</h4> | ||||
|  |         <p | ||||
|  |                 style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> | ||||
|  |             The Update Quantity button in the list view will depict you | ||||
|  |             with | ||||
|  |             the transfer history of the selected | ||||
|  |             products. | ||||
|  |         </p> | ||||
|  |         <img src="assets/screenshots/update-list.png" | ||||
|  |              class="img-responsive img-thumbnail border" width="100%" | ||||
|  |              height="auto"/> | ||||
|  |     </div> | ||||
|  | 
 | ||||
|  | 
 | ||||
|  |     <div class="col-lg-12 my-3"> | ||||
|  |         <h4 class="mt-3" | ||||
|  |             style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> | ||||
|  |             Update Quantity Button in the Products Form View</h4> | ||||
|  |         <p | ||||
|  |                 style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> | ||||
|  |             Option to view recent transfer history of the selected | ||||
|  |             product | ||||
|  |             by clicking on the UPDATE QUANTITY button | ||||
|  |             in the form view. | ||||
|  |         </p> | ||||
|  |         <img src="assets/screenshots/update-form.png" | ||||
|  |              class="img-responsive img-thumbnail border" width="100%" | ||||
|  |              height="auto"/> | ||||
|  |     </div> | ||||
|  | 
 | ||||
|  | 
 | ||||
|  |     <div class="col-lg-12 my-3"> | ||||
|  |         <h4 class="mt-3" | ||||
|  |             style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> | ||||
|  |             Product Recent Transfer History Wizard</h4> | ||||
|  |         <p | ||||
|  |                 style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> | ||||
|  |             Option to view recent transfer history of the selected | ||||
|  |             products | ||||
|  |             along with the ADD TO TRANSFER button. | ||||
|  |             Additionally, a definite option to update the product | ||||
|  |             quantity | ||||
|  |             and view the transfer history based on | ||||
|  |             the date selected. | ||||
|  |         </p> | ||||
|  |         <img src="assets/screenshots/history-wizard.png" | ||||
|  |              class="img-responsive img-thumbnail border" width="100%" | ||||
|  |              height="auto"/> | ||||
|  |     </div> | ||||
|  | 
 | ||||
|  | </div> | ||||
|  | 
 | ||||
|  | <!-- SUGGESTED PRODUCTS --> | ||||
|  | <div class="row"> | ||||
|  |     <div class="col-lg-12 d-flex flex-column justify-content-center" | ||||
|  |          style="text-align: center; padding: 2.5rem 1rem !important;"> | ||||
|  |         <h2 style="color: #212529 !important;">Suggested Products</h2> | ||||
|  |         <hr | ||||
|  |                 style="border: 3px solid #714B67 !important; background-color: #714B67 !important; width: 80px !important; margin-bottom: 2rem !important;"/> | ||||
|  | 
 | ||||
|  |         <div id="demo1" class="row carousel slide" data-ride="carousel"> | ||||
|  |             <!-- The slideshow --> | ||||
|  |             <div class="carousel-inner"> | ||||
|  |                 <div class="carousel-item active" | ||||
|  |                      style="min-height:0px"> | ||||
|  |                     <div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" | ||||
|  |                          style="float:left"> | ||||
|  |                         <a href="https://apps.odoo.com/apps/modules/15.0/export_stockinfo_xls/" | ||||
|  |                            target="_blank"> | ||||
|  |                             <div style="border-radius:10px"> | ||||
|  |                                 <img class="img img-responsive center-block" | ||||
|  |                                      style="border-top-left-radius:10px; border-top-right-radius:10px" | ||||
|  |                                      src="./assets/modules/export_image.png"> | ||||
|  |                             </div> | ||||
|  |                         </a> | ||||
|  |                     </div> | ||||
|  |                     <div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" | ||||
|  |                          style="float:left"> | ||||
|  |                         <a href="https://apps.odoo.com/apps/modules/15.0/stock_intercompany_transfer/" | ||||
|  |                            target="_blank"> | ||||
|  |                             <div style="border-radius:10px"> | ||||
|  |                                 <img class="img img-responsive center-block" | ||||
|  |                                      style="border-top-left-radius:10px; border-top-right-radius:10px" | ||||
|  |                                      src="./assets/modules/company.png"> | ||||
|  |                             </div> | ||||
|  |                         </a> | ||||
|  |                     </div> | ||||
|  |                     <div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" | ||||
|  |                          style="float:left"> | ||||
|  |                         <a href="https://apps.odoo.com/apps/modules/15.0/website_product_publish/" | ||||
|  |                            target="_blank"> | ||||
|  |                             <div style="border-radius:10px"> | ||||
|  |                                 <img class="img img-responsive center-block" | ||||
|  |                                      style="border-top-left-radius:10px; border-top-right-radius:10px" | ||||
|  |                                      src="./assets/modules/publish.png"> | ||||
|  |                             </div> | ||||
|  |                         </a> | ||||
|  |                     </div> | ||||
|  |                 </div> | ||||
|  |                 <div class="carousel-item" style="min-height:0px"> | ||||
|  |                     <div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" | ||||
|  |                          style="float:left"> | ||||
|  |                         <a href="https://apps.odoo.com/apps/modules/15.0/product_to_invoice/" | ||||
|  |                            target="_blank"> | ||||
|  |                             <div style="border-radius:10px"> | ||||
|  |                                 <img class="img img-responsive center-block" | ||||
|  |                                      style="border-top-left-radius:10px; border-top-right-radius:10px" | ||||
|  |                                      src="./assets/modules/invoice.png"> | ||||
|  |                             </div> | ||||
|  |                         </a> | ||||
|  |                     </div> | ||||
|  |                     <div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" | ||||
|  |                          style="float:left"> | ||||
|  |                         <a href="https://apps.odoo.com/apps/modules/15.0/product_to_quotation/" | ||||
|  |                            target="_blank"> | ||||
|  |                             <div style="border-radius:10px"> | ||||
|  |                                 <img class="img img-responsive center-block" | ||||
|  |                                      style="border-top-left-radius:10px; border-top-right-radius:10px" | ||||
|  |                                      src="./assets/modules/quotation_image.png"> | ||||
|  |                             </div> | ||||
|  |                         </a> | ||||
|  |                     </div> | ||||
|  |                     <div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" | ||||
|  |                          style="float:left"> | ||||
|  |                         <a href="https://apps.odoo.com/apps/modules/15.0/inventory_stock_dashboard_odoo/" | ||||
|  |                            target="_blank"> | ||||
|  |                             <div style="border-radius:10px"> | ||||
|  |                                 <img class="img img-responsive center-block" | ||||
|  |                                      style="border-top-left-radius:10px; border-top-right-radius:10px" | ||||
|  |                                      src="./assets/modules/dashboard.png"> | ||||
|  |                             </div> | ||||
|  |                         </a> | ||||
|  |                     </div> | ||||
|  |                 </div> | ||||
|  |             </div> | ||||
|  |             <!-- Left and right controls --> | ||||
|  |             <a class="carousel-control-prev" href="#demo1" | ||||
|  |                data-slide="prev" | ||||
|  |                style="left:-25px;width: 35px;color: #000;"> | ||||
|  |                         <span class="carousel-control-prev-icon"><i | ||||
|  |                                 class="fa fa-chevron-left" | ||||
|  |                                 style="font-size:24px"></i></span> </a> | ||||
|  |             <a class="carousel-control-next" href="#demo1" | ||||
|  |                data-slide="next" | ||||
|  |                style="right:-25px;width: 35px;color: #000;"> | ||||
|  |                         <span class="carousel-control-next-icon"><i | ||||
|  |                                 class="fa fa-chevron-right" | ||||
|  |                                 style="font-size:24px"></i></span> | ||||
|  |             </a> | ||||
|  |         </div> | ||||
|  |     </div> | ||||
|  | </div> | ||||
|  | <!-- END OF SUGGESTED PRODUCTS --> | ||||
|  | <!-- OUR SERVICES --> | ||||
|  | 
 | ||||
|  | <div class="d-flex align-items-center" | ||||
|  |      style="border-bottom: 2px solid #714B67; padding: 15px 0px;"> | ||||
|  |     <div class="d-flex justify-content-center align-items-center mr-2" | ||||
|  |          style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;"> | ||||
|  |         <img src="assets/misc/star.png"/> | ||||
|  |     </div> | ||||
|  |     <h2 class="mt-2" | ||||
|  |         style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;"> | ||||
|  |         Our Services | ||||
|  |     </h2> | ||||
|  | </div> | ||||
|  | 
 | ||||
|  | <div class="container my-5"> | ||||
|  |     <div class="row"> | ||||
|  |         <div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> | ||||
|  |             <div class="d-flex justify-content-center align-items-center mx-3 my-3" | ||||
|  |                  style="background-color: #1dd1a1 !important; border-radius: 15px !important; height: 80px; width: 80px;"> | ||||
|  |                 <img src="assets/icons/cogs.png" class="img-responsive" | ||||
|  |                      height="48px" width="48px"> | ||||
|  |             </div> | ||||
|  |             <h6 class="text-center" | ||||
|  |                 style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> | ||||
|  |                 Odoo | ||||
|  |                 Customization</h6> | ||||
|  |         </div> | ||||
|  | 
 | ||||
|  |         <div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> | ||||
|  |             <div class="d-flex justify-content-center align-items-center mx-3 my-3" | ||||
|  |                  style="background-color: #ff6b6b !important; border-radius: 15px !important; height: 80px; width: 80px;"> | ||||
|  |                 <img src="assets/icons/wrench.png" | ||||
|  |                      class="img-responsive" | ||||
|  |                      height="48px" width="48px"> | ||||
|  |             </div> | ||||
|  |             <h6 class="text-center" | ||||
|  |                 style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> | ||||
|  |                 Odoo | ||||
|  |                 Implementation</h6> | ||||
|  |         </div> | ||||
|  | 
 | ||||
|  |         <div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> | ||||
|  |             <div class="d-flex justify-content-center align-items-center mx-3 my-3" | ||||
|  |                  style="background-color: #6462CD !important; border-radius: 15px !important; height: 80px; width: 80px;"> | ||||
|  |                 <img src="assets/icons/lifebuoy.png" | ||||
|  |                      class="img-responsive" | ||||
|  |                      height="48px" width="48px"> | ||||
|  |             </div> | ||||
|  |             <h6 class="text-center" | ||||
|  |                 style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> | ||||
|  |                 Odoo | ||||
|  |                 Support</h6> | ||||
|  |         </div> | ||||
|  | 
 | ||||
|  | 
 | ||||
|  |         <div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> | ||||
|  |             <div class="d-flex justify-content-center align-items-center mx-3 my-3" | ||||
|  |                  style="background-color: #ffa801 !important; border-radius: 15px !important; height: 80px; width: 80px;"> | ||||
|  |                 <img src="assets/icons/user.png" class="img-responsive" | ||||
|  |                      height="48px" width="48px"> | ||||
|  |             </div> | ||||
|  |             <h6 class="text-center" | ||||
|  |                 style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> | ||||
|  |                 Hire | ||||
|  |                 Odoo | ||||
|  |                 Developer</h6> | ||||
|  |         </div> | ||||
|  | 
 | ||||
|  |         <div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> | ||||
|  |             <div class="d-flex justify-content-center align-items-center mx-3 my-3" | ||||
|  |                  style="background-color: #54a0ff  !important; border-radius: 15px !important; height: 80px; width: 80px;"> | ||||
|  |                 <img src="assets/icons/puzzle.png" | ||||
|  |                      class="img-responsive" | ||||
|  |                      height="48px" width="48px"> | ||||
|  |             </div> | ||||
|  |             <h6 class="text-center" | ||||
|  |                 style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> | ||||
|  |                 Odoo | ||||
|  |                 Integration</h6> | ||||
|  |         </div> | ||||
|  | 
 | ||||
|  |         <div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> | ||||
|  |             <div class="d-flex justify-content-center align-items-center mx-3 my-3" | ||||
|  |                  style="background-color: #6d7680 !important; border-radius: 15px !important; height: 80px; width: 80px;"> | ||||
|  |                 <img src="assets/icons/update.png" | ||||
|  |                      class="img-responsive" | ||||
|  |                      height="48px" width="48px"> | ||||
|  |             </div> | ||||
|  |             <h6 class="text-center" | ||||
|  |                 style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> | ||||
|  |                 Odoo | ||||
|  |                 Migration</h6> | ||||
|  |         </div> | ||||
|  | 
 | ||||
|  | 
 | ||||
|  |         <div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> | ||||
|  |             <div class="d-flex justify-content-center align-items-center mx-3 my-3" | ||||
|  |                  style="background-color: #786fa6 !important; border-radius: 15px !important; height: 80px; width: 80px;"> | ||||
|  |                 <img src="assets/icons/consultation.png" | ||||
|  |                      class="img-responsive" | ||||
|  |                      height="48px" width="48px"> | ||||
|  |             </div> | ||||
|  |             <h6 class="text-center" | ||||
|  |                 style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> | ||||
|  |                 Odoo | ||||
|  |                 Consultancy</h6> | ||||
|  |         </div> | ||||
|  | 
 | ||||
|  |         <div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> | ||||
|  |             <div class="d-flex justify-content-center align-items-center mx-3 my-3" | ||||
|  |                  style="background-color: #f8a5c2 !important; border-radius: 15px !important; height: 80px; width: 80px;"> | ||||
|  |                 <img src="assets/icons/training.png" | ||||
|  |                      class="img-responsive" | ||||
|  |                      height="48px" width="48px"> | ||||
|  |             </div> | ||||
|  |             <h6 class="text-center" | ||||
|  |                 style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> | ||||
|  |                 Odoo | ||||
|  |                 Implementation</h6> | ||||
|  |         </div> | ||||
|  | 
 | ||||
|  |         <div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> | ||||
|  |             <div class="d-flex justify-content-center align-items-center mx-3 my-3" | ||||
|  |                  style="background-color: #e6be26 !important; border-radius: 15px !important; height: 80px; width: 80px;"> | ||||
|  |                 <img src="assets/icons/license.png" | ||||
|  |                      class="img-responsive" | ||||
|  |                      height="48px" width="48px"> | ||||
|  |             </div> | ||||
|  |             <h6 class="text-center" | ||||
|  |                 style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> | ||||
|  |                 Odoo | ||||
|  |                 Licensing Consultancy</h6> | ||||
|  |         </div> | ||||
|  |     </div> | ||||
|  | 
 | ||||
|  | </div> | ||||
|  | 
 | ||||
|  | <!-- END OF  OUR SERVICES --> | ||||
|  | 
 | ||||
|  | <!-- OUR INDUSTRIES --> | ||||
|  | 
 | ||||
|  | <div class="d-flex align-items-center" | ||||
|  |      style="border-bottom: 2px solid #714B67; padding: 15px 0px;"> | ||||
|  |     <div class="d-flex justify-content-center align-items-center mr-2" | ||||
|  |          style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;"> | ||||
|  |         <img src="assets/misc/corporate.png"/> | ||||
|  |     </div> | ||||
|  |     <h2 class="mt-2" | ||||
|  |         style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;"> | ||||
|  |         Our | ||||
|  |         Industries | ||||
|  |     </h2> | ||||
|  | </div> | ||||
|  | 
 | ||||
|  | <div class="container my-5"> | ||||
|  |     <div class="row"> | ||||
|  |         <div class="col-lg-3"> | ||||
|  |             <div class="my-4 d-flex flex-column justify-content-center" | ||||
|  |                  style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> | ||||
|  |                 <img src="assets/icons/trading-black.png" | ||||
|  |                      class="img-responsive mb-3" height="48px" | ||||
|  |                      width="48px"> | ||||
|  |                 <h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> | ||||
|  |                     Trading | ||||
|  |                 </h5> | ||||
|  |                 <p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> | ||||
|  |                     Easily procure | ||||
|  |                     and | ||||
|  |                     sell your products</p> | ||||
|  |             </div> | ||||
|  |         </div> | ||||
|  | 
 | ||||
|  |         <div class="col-lg-3"> | ||||
|  |             <div class="my-4 d-flex flex-column justify-content-center" | ||||
|  |                  style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> | ||||
|  |                 <img src="assets/icons/pos-black.png" | ||||
|  |                      class="img-responsive mb-3" height="48px" | ||||
|  |                      width="48px"> | ||||
|  |                 <h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> | ||||
|  |                     POS | ||||
|  |                 </h5> | ||||
|  |                 <p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> | ||||
|  |                     Easy | ||||
|  |                     configuration | ||||
|  |                     and convivial experience</p> | ||||
|  |             </div> | ||||
|  |         </div> | ||||
|  | 
 | ||||
|  |         <div class="col-lg-3"> | ||||
|  |             <div class="my-4 d-flex flex-column justify-content-center" | ||||
|  |                  style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> | ||||
|  |                 <img src="assets/icons/education-black.png" | ||||
|  |                      class="img-responsive mb-3" height="48px" | ||||
|  |                      width="48px"> | ||||
|  |                 <h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> | ||||
|  |                     Education | ||||
|  |                 </h5> | ||||
|  |                 <p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> | ||||
|  |                     A platform for | ||||
|  |                     educational management</p> | ||||
|  |             </div> | ||||
|  |         </div> | ||||
|  | 
 | ||||
|  |         <div class="col-lg-3"> | ||||
|  |             <div class="my-4 d-flex flex-column justify-content-center" | ||||
|  |                  style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> | ||||
|  |                 <img src="assets/icons/manufacturing-black.png" | ||||
|  |                      class="img-responsive mb-3" height="48px" | ||||
|  |                      width="48px"> | ||||
|  |                 <h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> | ||||
|  |                     Manufacturing | ||||
|  |                 </h5> | ||||
|  |                 <p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> | ||||
|  |                     Plan, track and | ||||
|  |                     schedule your operations</p> | ||||
|  |             </div> | ||||
|  |         </div> | ||||
|  | 
 | ||||
|  |         <div class="col-lg-3"> | ||||
|  |             <div class="my-4 d-flex flex-column justify-content-center" | ||||
|  |                  style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> | ||||
|  |                 <img src="assets/icons/ecom-black.png" | ||||
|  |                      class="img-responsive mb-3" height="48px" | ||||
|  |                      width="48px"> | ||||
|  |                 <h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> | ||||
|  |                     E-commerce & Website | ||||
|  |                 </h5> | ||||
|  |                 <p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> | ||||
|  |                     Mobile | ||||
|  |                     friendly, | ||||
|  |                     awe-inspiring product pages</p> | ||||
|  |             </div> | ||||
|  |         </div> | ||||
|  | 
 | ||||
|  |         <div class="col-lg-3"> | ||||
|  |             <div class="my-4 d-flex flex-column justify-content-center" | ||||
|  |                  style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> | ||||
|  |                 <img src="assets/icons/service-black.png" | ||||
|  |                      class="img-responsive mb-3" height="48px" | ||||
|  |                      width="48px"> | ||||
|  |                 <h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> | ||||
|  |                     Service Management | ||||
|  |                 </h5> | ||||
|  |                 <p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> | ||||
|  |                     Keep track of | ||||
|  |                     services and invoice</p> | ||||
|  |             </div> | ||||
|  |         </div> | ||||
|  | 
 | ||||
|  |         <div class="col-lg-3"> | ||||
|  |             <div class="my-4 d-flex flex-column justify-content-center" | ||||
|  |                  style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> | ||||
|  |                 <img src="assets/icons/restaurant-black.png" | ||||
|  |                      class="img-responsive mb-3" height="48px" | ||||
|  |                      width="48px"> | ||||
|  |                 <h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> | ||||
|  |                     Restaurant | ||||
|  |                 </h5> | ||||
|  |                 <p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> | ||||
|  |                     Run your bar or | ||||
|  |                     restaurant methodically</p> | ||||
|  |             </div> | ||||
|  |         </div> | ||||
|  | 
 | ||||
|  |         <div class="col-lg-3"> | ||||
|  |             <div class="my-4 d-flex flex-column justify-content-center" | ||||
|  |                  style="background-color: #f6f8f9 !important; border-radius: 0px; padding: 2rem !important; height: 250px !important;"> | ||||
|  |                 <img src="assets/icons/hotel-black.png" | ||||
|  |                      class="img-responsive mb-3" height="48px" | ||||
|  |                      width="48px"> | ||||
|  |                 <h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> | ||||
|  |                     Hotel Management | ||||
|  |                 </h5> | ||||
|  |                 <p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> | ||||
|  |                     An | ||||
|  |                     all-inclusive | ||||
|  |                     hotel management application</p> | ||||
|  |             </div> | ||||
|  |         </div> | ||||
|  |     </div> | ||||
|  | </div> | ||||
|  | <!-- END OF OUR INDUSTRIES --> | ||||
|  | <!-- SUPPORT --> | ||||
|  | <div class="d-flex align-items-center" | ||||
|  |      style="border-bottom: 2px solid #714B67; padding: 15px 0px;"> | ||||
|  |     <div class="d-flex justify-content-center align-items-center mr-2" | ||||
|  |          style="background-color: #F5F5F5; border-radius: 0px; width: 40px; height: 40px;"> | ||||
|  |         <img src="assets/misc/customer-support.png"/> | ||||
|  |     </div> | ||||
|  |     <h2 class="mt-2" | ||||
|  |         style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;"> | ||||
|  |         Support | ||||
|  |     </h2> | ||||
|  | </div> | ||||
|  | <div class="container mt-5"> | ||||
|  |     <div class="row"> | ||||
|  |         <div class="col-sm-12 col-md-6"> | ||||
|  |             <div style="background-color: #F6F8F9; padding: 30px; display: flex; align-items: center;"> | ||||
|  |                 <div class="mr-4 d-flex justify-content-center align-items-center" | ||||
|  |                      style="background-color: #714B67; display: inline-block; height: 70px; width: 70px; display: flex; align-items: center; justify-content: center;"> | ||||
|  |                     <img src="assets/misc/support.png" height="48" | ||||
|  |                          width="48" | ||||
|  |                          style="width: 42px; height: 42px;"/> | ||||
|  |                 </div> | ||||
|  |                 <div> | ||||
|  |                     <h4>Need Help?</h4> | ||||
|  |                     <p style="line-height: 100%;">Got questions or need | ||||
|  |                         help? | ||||
|  |                         Get in touch.</p> | ||||
|  |                     <a href="mailto:odoo@cybrosys.com"> | ||||
|  |                         <p style="font-weight: 400; font-size: 28px; line-height: 80%; color: #714B67;"> | ||||
|  |                             odoo@cybrosys.com</p> | ||||
|  |                     </a> | ||||
|  |                 </div> | ||||
|  |             </div> | ||||
|  |         </div> | ||||
|  |         <div class="col-sm-12 col-md-6"> | ||||
|  |             <div style="background-color: #F6F8F9; padding: 30px; display: flex; align-items: center;"> | ||||
|  |                 <div class="mr-4 d-flex justify-content-center align-items-center" | ||||
|  |                      style="background-color: #2AC44D; display: inline-block; height: 70px; width: 70px; display: flex; align-items: center; justify-content: center;"> | ||||
|  |                     <img src="assets/misc/whatsapp.png" height="52" | ||||
|  |                          width="52" | ||||
|  |                          style="width: 52px; height: 52px;"/> | ||||
|  |                 </div> | ||||
|  |                 <div> | ||||
|  |                     <h4>WhatsApp</h4> | ||||
|  |                     <p style="line-height: 100%;">Say hi to us on | ||||
|  |                         WhatsApp!</p> | ||||
|  |                     <a href="https://api.whatsapp.com/send?phone=918606827707"> | ||||
|  |                         <p style="font-weight: 400; font-size: 28px; line-height: 80%; color: #714B67;"> | ||||
|  |                             +91 86068 | ||||
|  |                             27707</p> | ||||
|  |                     </a> | ||||
|  |                 </div> | ||||
|  |             </div> | ||||
|  |         </div> | ||||
|  |     </div> | ||||
|  |     <div class="row"> | ||||
|  |         <div class="col-sm-12 my-5 d-flex justify-content-center align-items-center"> | ||||
|  |             <img src="assets/misc/logo.png" width="144" height="31" | ||||
|  |                  style="width:144px; height: 31px; margin-top: 40px;"/> | ||||
|  |         </div> | ||||
|  |     </div> | ||||
|  | </div> | ||||
|  | <!-- END OF SUPPORT --> | ||||
| @ -0,0 +1,58 @@ | |||||
|  | <?xml version="1.0" encoding="UTF-8"?> | ||||
|  | <odoo> | ||||
|  |     <!-- View for adding products to picking tree view --> | ||||
|  |     <record id="product_product_tree_view" model="ir.ui.view"> | ||||
|  |         <field name="name"> | ||||
|  |             product.product.view.tree.inherit.products.to.transfer | ||||
|  |         </field> | ||||
|  |         <field name="model">product.product</field> | ||||
|  |         <field name="inherit_id" ref="product.product_product_tree_view"/> | ||||
|  |         <field name="arch" type="xml"> | ||||
|  |             <xpath expr="//field[@name='default_code']" position="before"> | ||||
|  |                 <button name="action_add_to_picking" type="object" | ||||
|  |                         icon="fa-plus"/> | ||||
|  |                 <button name="action_view_details" type="object" | ||||
|  |                         icon="fa-list"/> | ||||
|  |             </xpath> | ||||
|  |         </field> | ||||
|  |     </record> | ||||
|  |     <!-- View for adding products to picking kanban view --> | ||||
|  |     <record id="product_kanban_view" model="ir.ui.view"> | ||||
|  |         <field name="name"> | ||||
|  |             product.product.view.kanban.inherit.products.to.transfer | ||||
|  |         </field> | ||||
|  |         <field name="model">product.product</field> | ||||
|  |         <field name="inherit_id" ref="product.product_kanban_view"/> | ||||
|  |         <field name="arch" type="xml"> | ||||
|  |             <xpath expr="//div[hasclass('oe_kanban_details')]" | ||||
|  |                    position="after"> | ||||
|  |                 <div style="display: inline-block; padding-top:10%;"> | ||||
|  |                     <a name="action_add_to_picking" type="object"> | ||||
|  |                         <i class="fa fa-plus"/>Add to Transfer | ||||
|  |                     </a> | ||||
|  |                     <a name="action_view_details" type="object"> | ||||
|  |                         <i class="fa fa-list"/>Update Quantity | ||||
|  |                     </a> | ||||
|  |                 </div> | ||||
|  |             </xpath> | ||||
|  |         </field> | ||||
|  |     </record> | ||||
|  |     <!-- View for adding products to picking form view --> | ||||
|  |     <record id="product_normal_form_view" model="ir.ui.view"> | ||||
|  |         <field name="name"> | ||||
|  |             product.product.view.form.inherit.products.to.transfer | ||||
|  |         </field> | ||||
|  |         <field name="model">product.product</field> | ||||
|  |         <field name="inherit_id" ref="product.product_normal_form_view"/> | ||||
|  |         <field name="arch" type="xml"> | ||||
|  |             <xpath expr="//header" position="inside"> | ||||
|  |                 <button name="action_add_to_picking" type="object" | ||||
|  |                         string="Add to Transfer" class="oe_highlight" | ||||
|  |                         icon="fa-plus"/> | ||||
|  |                 <button name="action_view_details" type="object" | ||||
|  |                         class="oe_highlight" icon="fa-list" | ||||
|  |                         string="Update Quantity"/> | ||||
|  |             </xpath> | ||||
|  |         </field> | ||||
|  |     </record> | ||||
|  | </odoo> | ||||
| @ -0,0 +1,20 @@ | |||||
|  | <?xml version="1.0" encoding="UTF-8"?> | ||||
|  | <odoo> | ||||
|  |     <!-- View for extending picking form and adding products --> | ||||
|  |     <record id="view_picking_form" model="ir.ui.view"> | ||||
|  |         <field name="name"> | ||||
|  |             stock.picking.view.form.inherit.products.to.transfer | ||||
|  |         </field> | ||||
|  |         <field name="model">stock.picking</field> | ||||
|  |         <field name="inherit_id" ref="stock.view_picking_form"/> | ||||
|  |         <field name="arch" type="xml"> | ||||
|  |             <xpath expr="//button[@name='action_picking_move_tree']" | ||||
|  |                    position="after"> | ||||
|  |                 <button name="action_view_products" type="object" | ||||
|  |                         class="oe_stat_button" string="Add Products" | ||||
|  |                         icon="fa-plus" | ||||
|  |                         attrs="{'invisible': [('state', '!=', 'draft')]}"/> | ||||
|  |             </xpath> | ||||
|  |         </field> | ||||
|  |     </record> | ||||
|  | </odoo> | ||||
| @ -0,0 +1,23 @@ | |||||
|  | # -*- coding: utf-8 -*- | ||||
|  | ############################################################################# | ||||
|  | # | ||||
|  | #    Cybrosys Technologies Pvt. Ltd. | ||||
|  | # | ||||
|  | #    Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) | ||||
|  | #    Author: Jumana Jabin MP(<https://www.cybrosys.com>) | ||||
|  | # | ||||
|  | #    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 <http://www.gnu.org/licenses/>. | ||||
|  | # | ||||
|  | ############################################################################# | ||||
|  | from . import product_transfer_history | ||||
|  | from . import transfer_products_details | ||||
| @ -0,0 +1,45 @@ | |||||
|  | # -*- coding: utf-8 -*- | ||||
|  | ############################################################################# | ||||
|  | # | ||||
|  | #    Cybrosys Technologies Pvt. Ltd. | ||||
|  | # | ||||
|  | #    Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) | ||||
|  | #    Author: Jumana Jabin MP(<https://www.cybrosys.com>) | ||||
|  | # | ||||
|  | #    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 <http://www.gnu.org/licenses/>. | ||||
|  | # | ||||
|  | ############################################################################# | ||||
|  | from odoo import fields, models | ||||
|  | 
 | ||||
|  | 
 | ||||
|  | class ProductTransferHistory(models.TransientModel): | ||||
|  |     """This class represents a wizard to display the history of product | ||||
|  |     transfers.It provides a simple way to view information about product | ||||
|  |     transfers, including dates, transfer identifiers, associated contacts, | ||||
|  |     transferred quantities, and references to transfer product details | ||||
|  |     wizards.""" | ||||
|  |     _name = 'product.transfer.history' | ||||
|  |     _description = 'Product Transfer History Wizard' | ||||
|  | 
 | ||||
|  |     date_picking = fields.Datetime(string="Date", | ||||
|  |                                    help="Date of the transfer.") | ||||
|  |     picking = fields.Char(string="Transfer", | ||||
|  |                           help="Identifier of the transfer.") | ||||
|  |     partner_id = fields.Many2one('res.partner', string="Contact", | ||||
|  |                                  help="Contact associated with the transfer.") | ||||
|  |     qty = fields.Float(string="Quantity", | ||||
|  |                        help="Quantity of the product transferred.") | ||||
|  |     product_details_id = fields.Many2one('transfer.products.details', | ||||
|  |                                          string="Products Details", | ||||
|  |                                          help="Reference to the transfer" | ||||
|  |                                               " product details wizard.") | ||||
| @ -0,0 +1,101 @@ | |||||
|  | # -*- coding: utf-8 -*- | ||||
|  | ############################################################################# | ||||
|  | # | ||||
|  | #    Cybrosys Technologies Pvt. Ltd. | ||||
|  | # | ||||
|  | #    Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) | ||||
|  | #    Author: Jumana Jabin MP(<https://www.cybrosys.com>) | ||||
|  | # | ||||
|  | #    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 <http://www.gnu.org/licenses/>. | ||||
|  | # | ||||
|  | ############################################################################# | ||||
|  | from datetime import timedelta | ||||
|  | from odoo import api, fields, models, _ | ||||
|  | from odoo.exceptions import ValidationError | ||||
|  | 
 | ||||
|  | 
 | ||||
|  | class TransferProductDetails(models.TransientModel): | ||||
|  |     """This wizard is designed to display product details associated with | ||||
|  |     inventory transfers.It provides information about the transferred product, | ||||
|  |     its quantity, associated picking, and transfer history.""" | ||||
|  |     _name = 'transfer.products.details' | ||||
|  |     _description = 'Wizard to View Product Details from Inventory Transfer' | ||||
|  | 
 | ||||
|  |     def _default_picking(self): | ||||
|  |         """Get the default picking name based on the context value | ||||
|  |         'picking_id'.""" | ||||
|  |         picking_id = self.env['stock.picking'].browse( | ||||
|  |             self._context.get('picking_id')) | ||||
|  |         return picking_id.name | ||||
|  | 
 | ||||
|  |     product = fields.Char(string="Product", readonly=True, | ||||
|  |                           help="The product associated with the transfer") | ||||
|  |     qty = fields.Float(string="Quantity", | ||||
|  |                        help="The quantity of the product transferred") | ||||
|  |     picking = fields.Char(string="Picking", readonly=True, | ||||
|  |                           default=_default_picking, | ||||
|  |                           help="The picking associated with the transfer") | ||||
|  |     transfer_history_ids = fields.One2many('product.transfer.history', | ||||
|  |                                            'product_details_id', | ||||
|  |                                            string="Transfer History", | ||||
|  |                                            readonly=True, | ||||
|  |                                            help="The transfer history records " | ||||
|  |                                                 "associated with the product") | ||||
|  |     date_from = fields.Date(string="Transfer History From", | ||||
|  |                             default=fields.Date.today() - timedelta(days=30), | ||||
|  |                             required=True, | ||||
|  |                             help="The starting date for the transfer history") | ||||
|  | 
 | ||||
|  |     @api.onchange('date_from') | ||||
|  |     def _onchange_date_from(self): | ||||
|  |         """Update transfer history based on the selected date.""" | ||||
|  |         move_ids = self.env['stock.move'].sudo().search([ | ||||
|  |             ('product_id', '=', self._context.get('active_id')), | ||||
|  |             ('state', '=', 'done'), | ||||
|  |             ('picking_id.date_done', '>=', self.date_from)]) | ||||
|  |         vals = [ | ||||
|  |             (0, 0, { | ||||
|  |                 'date_picking': move.date, | ||||
|  |                 'partner_id': move.picking_id.partner_id.id, | ||||
|  |                 'qty': move.product_uom_qty, | ||||
|  |                 'picking': move.picking_id.name | ||||
|  |             }) for move in move_ids] | ||||
|  |         self.transfer_history_ids = vals | ||||
|  | 
 | ||||
|  |     def action_add_to_transfer(self): | ||||
|  |         """Add the product to the inventory transfer.""" | ||||
|  |         picking_id = self.env['stock.picking'].browse( | ||||
|  |             self._context.get('picking_id')) | ||||
|  |         product_id = self.env['product.product'].browse( | ||||
|  |             self._context.get('active_id')) | ||||
|  |         if not picking_id: | ||||
|  |             raise ValidationError( | ||||
|  |                 _("There are no active transfers. unable to add product.")) | ||||
|  |         display_name = product_id.name_get()[0][1] | ||||
|  |         if product_id.description_sale: | ||||
|  |             display_name += '\n' + product_id.description_sale | ||||
|  |         move_vals = { | ||||
|  |             'product_id': product_id.id, | ||||
|  |             'name': display_name, | ||||
|  |             'product_uom_qty': self.qty, | ||||
|  |             'product_uom': product_id.uom_id.id, | ||||
|  |             'location_id': picking_id.location_id.id, | ||||
|  |             'location_dest_id': picking_id.location_dest_id.id, | ||||
|  |             'picking_id': picking_id.id} | ||||
|  |         existing_move = self.env['stock.move'].search([ | ||||
|  |             ('picking_id', '=', picking_id.id), | ||||
|  |             ('product_id', '=', product_id.id)]) | ||||
|  |         if existing_move: | ||||
|  |             existing_move[0].product_uom_qty += self.qty | ||||
|  |         else: | ||||
|  |             self.env['stock.move'].create(move_vals) | ||||
| @ -0,0 +1,48 @@ | |||||
|  | <?xml version="1.0" encoding="UTF-8"?> | ||||
|  | <odoo> | ||||
|  |     <!-- View for the Product Details wizard form --> | ||||
|  |     <record id="transfer_products_details_view_form" model="ir.ui.view"> | ||||
|  |         <field name="name">transfer.products.details.view.form</field> | ||||
|  |         <field name="model">transfer.products.details</field> | ||||
|  |         <field name="arch" type="xml"> | ||||
|  |             <form string="Product Details"> | ||||
|  |                 <group> | ||||
|  |                     <group> | ||||
|  |                         <field name="product"/> | ||||
|  |                     </group> | ||||
|  |                     <group> | ||||
|  |                         <field name="picking"/> | ||||
|  |                     </group> | ||||
|  |                 </group> | ||||
|  |                 <group> | ||||
|  |                     <group> | ||||
|  |                         <field name="qty"/> | ||||
|  |                     </group> | ||||
|  |                     <group> | ||||
|  |                         <field name="date_from"/> | ||||
|  |                     </group> | ||||
|  |                 </group> | ||||
|  |                 <notebook> | ||||
|  |                     <page name="transfer_history" | ||||
|  |                           string="Products Transfer History"> | ||||
|  |                         <field name="transfer_history_ids" readonly="1" | ||||
|  |                                style="pointer-events:none;"> | ||||
|  |                             <tree editable="bottom"> | ||||
|  |                                 <field name="date_picking"/> | ||||
|  |                                 <field name="picking"/> | ||||
|  |                                 <field name="partner_id"/> | ||||
|  |                                 <field name="qty"/> | ||||
|  |                             </tree> | ||||
|  |                         </field> | ||||
|  |                     </page> | ||||
|  |                 </notebook> | ||||
|  |                 <footer> | ||||
|  |                     <button name="action_add_to_transfer" | ||||
|  |                             string="Add to Transfer" | ||||
|  |                             type="object" class="oe_highlight"/> | ||||
|  |                     <button string="Cancel" special="cancel"/> | ||||
|  |                 </footer> | ||||
|  |             </form> | ||||
|  |         </field> | ||||
|  |     </record> | ||||
|  | </odoo> | ||||