| @ -0,0 +1,47 @@ | |||||
|  | .. image:: https://img.shields.io/badge/license-LGPL--3-blue.svg | ||||
|  |     :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html | ||||
|  |     :alt: License: LGPL-3 | ||||
|  | 
 | ||||
|  | Import Bill Of Materials | ||||
|  | ======================== | ||||
|  | Import Bill Of Materials using CSV or Excel files | ||||
|  | 
 | ||||
|  | Configuration | ||||
|  | ============= | ||||
|  | * Check the Import BOM field in users | ||||
|  | 
 | ||||
|  | Company | ||||
|  | ------- | ||||
|  | * `Cybrosys Techno Solutions <https://cybrosys.com/>`__ | ||||
|  | 
 | ||||
|  | License | ||||
|  | ------- | ||||
|  | General Public License, Version 3 (LGPL v3). | ||||
|  | (https://www.odoo.com/documentation/user/17.0/legal/licenses/licenses.html) | ||||
|  | 
 | ||||
|  | Credits | ||||
|  | ------- | ||||
|  | * Developers: (V17) Developer Anurudh P | ||||
|  |               (V16) Developer Anurudh P | ||||
|  |      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 <https://cybrosys.com/>`__ | ||||
|  | 
 | ||||
|  | Further information | ||||
|  | =================== | ||||
|  | HTML Description: `<static/description/index.html>`__ | ||||
| @ -0,0 +1,22 @@ | |||||
|  | # -*- coding: utf-8 -*- | ||||
|  | ############################################################################# | ||||
|  | # | ||||
|  | #    Cybrosys Technologies Pvt. Ltd. | ||||
|  | # | ||||
|  | #    Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) | ||||
|  | #    Author: Anurudh P (<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 wizards | ||||
| @ -0,0 +1,56 @@ | |||||
|  | # -*- coding: utf-8 -*- | ||||
|  | ############################################################################# | ||||
|  | # | ||||
|  | #    Cybrosys Technologies Pvt. Ltd. | ||||
|  | # | ||||
|  | #    Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) | ||||
|  | #    Author: Anurudh P (<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': 'Import Bill Of Materials', | ||||
|  |     'version': '16.0.1.0.0', | ||||
|  |     'category': 'Manufacturing', | ||||
|  |     'summary': """Import Bill of materials using CSV, Excel file""", | ||||
|  |     'description': 'Using this module we can import bom by searching' | ||||
|  |                    ' the products in diffrent ways in csv or excel files', | ||||
|  |     'author': 'Cybrosys Techno Solutions', | ||||
|  |     'company': 'Cybrosys Techno Solutions', | ||||
|  |     'maintainer': 'Cybrosys Techno Solutions', | ||||
|  |     'website': 'https://www.cybrosys.com', | ||||
|  |     'depends': ['base', 'stock', 'mrp'], | ||||
|  |     'data': { | ||||
|  |         'security/ir.model.access.csv', | ||||
|  |         'views/bom_import_menu_views.xml', | ||||
|  |         'security/import_bom_security.xml', | ||||
|  |         'wizards/bom_import_views.xml', | ||||
|  |         'wizards/success_message_views.xml', | ||||
|  |     }, | ||||
|  |     'assets': { | ||||
|  |         'web.assets_backend': [ | ||||
|  |             'import_bill_of_materials_in_mrp/static/src/css/style.css' | ||||
|  |         ], | ||||
|  |     }, | ||||
|  |     'external_dependencies': { | ||||
|  |         'python': [ | ||||
|  |             'openpyxl' | ||||
|  |         ], | ||||
|  |     }, | ||||
|  |     'images': ['static/description/banner.png'], | ||||
|  |     'license': 'LGPL-3', | ||||
|  |     'installable': True, | ||||
|  |     'auto_install': False, | ||||
|  |     'application': False, | ||||
|  | } | ||||
| @ -0,0 +1,6 @@ | |||||
|  | ## Module <import_bill_of_materials_in_mrp> | ||||
|  | 
 | ||||
|  | #### 03.04.2024 | ||||
|  | #### Version 16.0.1.0.0 | ||||
|  | #### ADD | ||||
|  | - Initial commit for Import Bill Of Materials | ||||
| @ -0,0 +1,7 @@ | |||||
|  | <?xml version="1.0" encoding="utf-8" ?> | ||||
|  | <odoo> | ||||
|  |         <!-- Security groups for Import BOM  --> | ||||
|  |     <record id="import_bom_group_id" model="res.groups"> | ||||
|  |         <field name="name">Import BOM</field> | ||||
|  |     </record> | ||||
|  | </odoo> | ||||
| 
 | 
| After Width: | Height: | Size: 3.6 KiB | 
| After Width: | Height: | Size: 310 B | 
| 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: 3.4 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.5 KiB | 
| After Width: | Height: | Size: 1.1 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: 589 B | 
| After Width: | Height: | Size: 3.4 KiB | 
| After Width: | Height: | Size: 1.7 KiB | 
| After Width: | Height: | Size: 2.3 KiB | 
| After Width: | Height: | Size: 967 B | 
| 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: 73 KiB | 
| After Width: | Height: | Size: 55 KiB | 
| After Width: | Height: | Size: 65 KiB | 
| After Width: | Height: | Size: 62 KiB | 
| After Width: | Height: | Size: 67 KiB | 
| After Width: | Height: | Size: 63 KiB | 
| After Width: | Height: | Size: 143 KiB | 
| After Width: | Height: | Size: 106 KiB | 
| After Width: | Height: | Size: 92 KiB | 
| After Width: | Height: | Size: 67 KiB | 
| After Width: | Height: | Size: 61 KiB | 
| After Width: | Height: | Size: 112 KiB | 
| After Width: | Height: | Size: 170 KiB | 
| After Width: | Height: | Size: 65 KiB | 
| After Width: | Height: | Size: 10 KiB | 
| @ -0,0 +1,558 @@ | |||||
|  | <div style="background-color: #714B67; min-height: 600px; width: 100%; padding: 15px; position: relative;"> | ||||
|  |     <!-- TITLE BAR --> | ||||
|  |     <div | ||||
|  |         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: #875A7B; 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: #017E84; 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> | ||||
|  |     <!-- END OF TITLE BAR --> | ||||
|  | 
 | ||||
|  |     <!-- APP HERO --> | ||||
|  |     <h1 style="color: #FFFFFF; font-weight: bolder; font-size: 50px; text-align: center; margin-top: 50px;">Import Bill Of Materials from CSV or Excel in Odoo</h1> | ||||
|  |     <p style="color:#FFFFFF; padding: 8px 15px; text-align: center; font-size: 24px;">Allows To Import Bill Of Materials From CSV/XLSX File.</p> | ||||
|  |     <!-- END OF APP HERO --> | ||||
|  |     <img src="./assets/screenshots/hero.gif" | ||||
|  |         style="width: 75%; height: auto; position: absolute; margin-left: auto; margin-right: auto; top: 45%; left: 12%; right: auto;" /> | ||||
|  | 
 | ||||
|  | </div> | ||||
|  | 
 | ||||
|  | <!-- NAVIGATION SECTION --> | ||||
|  | <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="row my-4" style="font-family: 'Montserrat', sans-serif;"> | ||||
|  |     <div class="col-sm-12 col-md-6 my-3"> | ||||
|  |         <a href="#overview"> | ||||
|  |             <div class="d-flex justify-content-between align-items-center" | ||||
|  |                 style="background-color: #f5f5f5; padding: 30px; width: 100%;"> | ||||
|  |                 <div> | ||||
|  |                     <span style="color: #714B67; font-size: 24px; font-weight: 500; display: block;">Overview</span> | ||||
|  |                     <span | ||||
|  |                         style="color: #714B67; font-size: 16px; font-weight: 400; color:#282F33;  display: block;">Learn | ||||
|  |                         more about this | ||||
|  |                         module</span> | ||||
|  |                 </div> | ||||
|  |                 <img src="./assets/misc/right-arrow.png" width="36" height="36" /> | ||||
|  |             </div> | ||||
|  |         </a> | ||||
|  |     </div> | ||||
|  |     <div class="col-sm-12 col-md-6 my-3"> | ||||
|  |         <a href="#features"> | ||||
|  |             <div class="d-flex justify-content-between align-items-center" | ||||
|  |                 style="background-color: #f5f5f5; padding: 30px; width: 100%;"> | ||||
|  |                 <div> | ||||
|  |                     <span style="color: #714B67; font-size: 24px; font-weight: 500; display: block;">Features</span> | ||||
|  |                     <span | ||||
|  |                         style="color: #714B67; font-size: 16px; font-weight: 400; color:#282F33;  display: block;">View | ||||
|  |                         features of this | ||||
|  |                         module</span> | ||||
|  |                 </div> | ||||
|  |                 <img src="./assets/misc/right-arrow.png" width="36" height="36" /> | ||||
|  |             </div> | ||||
|  |         </a> | ||||
|  |     </div> | ||||
|  |     <div class="col-sm-12 col-md-6 my-3"> | ||||
|  |         <a href="#screenshots"> | ||||
|  |             <div class="d-flex justify-content-between align-items-center" | ||||
|  |                 style="background-color: #f5f5f5; padding: 30px; width: 100%;"> | ||||
|  |                 <div> | ||||
|  |                     <span style="color: #714B67; font-size: 24px; font-weight: 500; display: block;">Screenshots</span> | ||||
|  |                     <span | ||||
|  |                         style="color: #714B67; font-size: 16px; font-weight: 400; color:#282F33;  display: block;">View | ||||
|  |                         screenshots for this | ||||
|  |                         module</span> | ||||
|  |                 </div> | ||||
|  |                 <img src="./assets/misc/right-arrow.png" width="36" height="36" /> | ||||
|  |             </div> | ||||
|  |         </a> | ||||
|  |     </div> | ||||
|  | </div> | ||||
|  | <!-- END OF NAVIGATION SECTION --> | ||||
|  | 
 | ||||
|  | <!-- OVERVIEW SECTION --> | ||||
|  | <div class="d-flex align-items-center" style="border-bottom: 2px solid #714B67; padding: 15px 0px;" id="overview"> | ||||
|  |     <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/pie-chart.png" /> | ||||
|  |     </div> | ||||
|  |     <h2 class="mt-2" style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;">Overview | ||||
|  |     </h2> | ||||
|  | </div> | ||||
|  | <div class="row" style="font-family: 'Montserrat', sans-serif; font-weight: 400; font-size: 14px; line-height: 200%;"> | ||||
|  |     <div class="col-sm-12 py-4"> | ||||
|  |         Using this module we can import bom by searching' | ||||
|  |         the products in different ways in csv or excel files' | ||||
|  |     </div> | ||||
|  | </div> | ||||
|  | <!-- END OF OVERVIEW SECTION --> | ||||
|  | 
 | ||||
|  | <!-- FEATURES SECTION --> | ||||
|  | <div class="d-flex align-items-center" style="border-bottom: 2px solid #714B67; padding: 15px 0px;" id="features"> | ||||
|  |     <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/features.png" /> | ||||
|  |     </div> | ||||
|  |     <h2 class="mt-2" style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;">Features | ||||
|  |     </h2> | ||||
|  | </div> | ||||
|  | <div class="row" style="font-family: 'Montserrat', sans-serif; font-weight: 400; font-size: 14px; line-height: 200%;"> | ||||
|  |     <div class="col-sm-12 col-md-6"> | ||||
|  |         <div class="d-flex align-items-center" style="margin-top: 40px; margin-bottom: 40px"> | ||||
|  |             <img src="./assets/misc/check-box.png" class="mr-2" /> | ||||
|  |             <span style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;">Community & Enterprise Support</span> | ||||
|  |         </div> | ||||
|  |         <div class="d-flex align-items-center" style="margin-top: 30px; margin-bottom: 30px"> | ||||
|  |             <img src="./assets/misc/check-box.png" class="mr-2" /> | ||||
|  |             <span style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;">Allows to Import | ||||
|  |                 bill of materials from csv or Excel file.</span> | ||||
|  |         </div> | ||||
|  |         <div class="d-flex align-items-center" style="margin-top: 30px; margin-bottom: 30px"> | ||||
|  |             <img src="./assets/misc/check-box.png" class="mr-2" /> | ||||
|  |             <span style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;">We can select | ||||
|  |                                 File Type,BOM Type,File,Product Variant,Product | ||||
|  |                                 from popup, | ||||
|  |                                 You can download sample files.zzzzzzzzzzzzzzzzzzzzzzzzzzz</span> | ||||
|  |         </div> | ||||
|  |     </div> | ||||
|  | </div> | ||||
|  | <!-- END OF FEATURES SECTION --> | ||||
|  | 
 | ||||
|  | <!-- SCREENSHOTS SECTION --> | ||||
|  | <div class="d-flex align-items-center" style="border-bottom: 2px solid #714B67; padding: 15px 0px;" id="screenshots"> | ||||
|  |     <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/pictures.png" /> | ||||
|  |     </div> | ||||
|  |     <h2 class="mt-2" style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;">Screenshots | ||||
|  |     </h2> | ||||
|  | </div> | ||||
|  | <div class="row"> | ||||
|  |     <div class="col-sm-12"> | ||||
|  | 
 | ||||
|  |         <div style="display: block; margin: 30px auto;"> | ||||
|  |             <h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;">You can see check the Import BOM field in | ||||
|  |                                     user to see the manu</h3> | ||||
|  |             <img src="./assets/screenshots/1.png" class="img-thumbnail"> | ||||
|  |         </div> | ||||
|  | 
 | ||||
|  |         <div style="display: block; margin: 30px auto;"> | ||||
|  |             <h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;">In Products menu you can see the Import BOM | ||||
|  |                                     menu</h3> | ||||
|  |             <img src="./assets/screenshots/2.png" class="img-thumbnail"> | ||||
|  |         </div> | ||||
|  | 
 | ||||
|  |         <div style="display: block; margin: 30px auto;"> | ||||
|  |             <h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;">We can select File Type,BOM | ||||
|  |                                     Type,File,Product Variant,Product from | ||||
|  |                                     popup, | ||||
|  |                                     You can download sample files.</h3> | ||||
|  |             <img src="./assets/screenshots/3.png" class="img-thumbnail"> | ||||
|  |         </div> | ||||
|  | 
 | ||||
|  |         <div style="display: block; margin: 30px auto;"> | ||||
|  |             <h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;">After successfully importing it will show a | ||||
|  |                                     success message</h3> | ||||
|  |             <img src="./assets/screenshots/4.png" class="img-thumbnail"> | ||||
|  |         </div> | ||||
|  | 
 | ||||
|  |         <div style="display: block; margin: 30px auto;"> | ||||
|  |             <h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;">The list view of imported BOMs</h3> | ||||
|  |             <img src="./assets/screenshots/5.png" class="img-thumbnail"> | ||||
|  |         </div> | ||||
|  | 
 | ||||
|  |         <div style="display: block; margin: 30px auto;"> | ||||
|  |             <h3 style="font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: bold;">Form view of imported BOM.</h3> | ||||
|  |             <img src="./assets/screenshots/6.png" class="img-thumbnail"> | ||||
|  |         </div> | ||||
|  | 
 | ||||
|  |     </div> | ||||
|  | </div> | ||||
|  | <!-- END OF SCREENSHOTS SECTION --> | ||||
|  | 
 | ||||
|  | <!-- RELATED PRODUCTS --> | ||||
|  | <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/categories.png" /> | ||||
|  |     </div> | ||||
|  |     <h2 class="mt-2" style="font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: bold;">Related | ||||
|  |         Products | ||||
|  |     </h2> | ||||
|  | </div> | ||||
|  | <div class="row"> | ||||
|  |     <div class="col-sm-12"> | ||||
|  |         <div id="demo1" class="row carousel slide" data-ride="carousel"> | ||||
|  |             <!-- The slideshow --> | ||||
|  |             <div class="carousel-inner" style="padding: 30px;"> | ||||
|  |                 <div class="carousel-item" style="min-height: 198.656px;"> | ||||
|  |                     <div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" style="float:left"> | ||||
|  |                         <a href="https://apps.odoo.com/apps/modules/16.0/export_stockinfo_xls/" target="_blank"> | ||||
|  |                             <div style="border-radius:10px"> | ||||
|  |                                 <img class="img img-responsive center-block" style="border-radius: 0px;" | ||||
|  |                                     src="./assets/modules/1.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/16.0/custom_gantt_view/" target="_blank"> | ||||
|  |                             <div style="border-radius:10px"> | ||||
|  |                                 <img class="img img-responsive center-block" style="border-radius: 0px;" | ||||
|  |                                         src="./assets/modules/2.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/16.0/sales_credit_limit/" target="_blank"> | ||||
|  |                             <div style="border-radius:10px"> | ||||
|  |                                 <img class="img img-responsive center-block" style="border-radius: 0px;" | ||||
|  |                                         src="./assets/modules/3.png"> | ||||
|  |                             </div> | ||||
|  |                         </a> | ||||
|  |                     </div> | ||||
|  |                 </div> | ||||
|  |                 <div class="carousel-item active" style="min-height: 198.656px;"> | ||||
|  |                     <div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" style="float:left"> | ||||
|  |                             <a href="https://apps.odoo.com/apps/modules/16.0/base_account_budget/" target="_blank"> | ||||
|  |                             <div style="border-radius:10px"> | ||||
|  |                                 <img class="img img-responsive center-block" style="border-radius: 0px;" | ||||
|  |                                         src="./assets/modules/4.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/16.0/product_to_quotation/" target="_blank"> | ||||
|  |                             <div style="border-radius:10px"> | ||||
|  |                                 <img class="img img-responsive center-block" style="border-radius: 0px;" | ||||
|  |                                         src="./assets/modules/5.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/16.0/employee_documents_expiry/" | ||||
|  |                             <div style="border-radius:10px"> | ||||
|  |                                 <img class="img img-responsive center-block" style="border-radius: 0px;" | ||||
|  |                                         src="./assets/modules/6.png"> | ||||
|  |                             </div> | ||||
|  |                         </a> | ||||
|  |                     </div> | ||||
|  |                 </div> | ||||
|  |             </div> | ||||
|  |             <!-- Left and right controls --> | ||||
|  |             <a class="carousel-control-prev" href="#demo1" data-slide="prev" style="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="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 RELATED 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 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 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" | ||||
|  |                     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" | ||||
|  |                     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,19 @@ | |||||
|  | .div_pos{ | ||||
|  |     margin-left: 508px !important; | ||||
|  |     margin-top: 10px; | ||||
|  | } | ||||
|  | .csv{ | ||||
|  |     margin: 0 10px; | ||||
|  |     font-size: 12px; | ||||
|  |     line-height: 1.5; | ||||
|  |     border-radius: 3px; | ||||
|  |     padding: 8px 10px; | ||||
|  |     color: #ffffff; | ||||
|  | } | ||||
|  | .xlsx{ | ||||
|  |     font-size: 12px; | ||||
|  |     line-height: 1.5; | ||||
|  |     border-radius: 3px; | ||||
|  |     padding: 8px 10px; | ||||
|  |     color: #ffffff; | ||||
|  | } | ||||
| @ -0,0 +1,16 @@ | |||||
|  | <?xml version="1.0" encoding="utf-8"?> | ||||
|  | <odoo> | ||||
|  |     <!-- Menu for  Import BOM --> | ||||
|  |     <record model="ir.actions.act_window" id="action_import_bom"> | ||||
|  |             <field name="name">Import BOM</field> | ||||
|  |             <field name="res_model">bom.import</field> | ||||
|  |             <field name="view_mode">form</field> | ||||
|  |             <field name="target">new</field> | ||||
|  |     </record> | ||||
|  |     <menuitem | ||||
|  |         parent="mrp.menu_mrp_bom" | ||||
|  |         id="menu_import_bom" | ||||
|  |         groups="import_bill_of_materials_in_mrp.import_bom_group_id" | ||||
|  |         action="action_import_bom" | ||||
|  |     /> | ||||
|  | </odoo> | ||||
| @ -0,0 +1,23 @@ | |||||
|  | # -*- coding: utf-8 -*- | ||||
|  | ############################################################################# | ||||
|  | # | ||||
|  | #    Cybrosys Technologies Pvt. Ltd. | ||||
|  | # | ||||
|  | #    Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) | ||||
|  | #    Author: Anurudh P (<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 bom_import | ||||
|  | from . import success_message | ||||
| @ -0,0 +1,261 @@ | |||||
|  | # -*- coding: utf-8 -*- | ||||
|  | ############################################################################# | ||||
|  | # | ||||
|  | #    Cybrosys Technologies Pvt. Ltd. | ||||
|  | # | ||||
|  | #    Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) | ||||
|  | #    Author: Anurudh P (<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/>. | ||||
|  | # | ||||
|  | ############################################################################# | ||||
|  | import binascii | ||||
|  | import tempfile | ||||
|  | import certifi | ||||
|  | import urllib3 | ||||
|  | import xlrd | ||||
|  | from odoo import models, fields, _ | ||||
|  | import csv | ||||
|  | import base64 | ||||
|  | import openpyxl | ||||
|  | from io import BytesIO | ||||
|  | from odoo.exceptions import UserError | ||||
|  | from odoo.tools import ustr | ||||
|  | 
 | ||||
|  | 
 | ||||
|  | class BomImportWizard(models.TransientModel): | ||||
|  |     """This is a transient model for creating a wizard for importing bom """ | ||||
|  |     _name = 'bom.import' | ||||
|  |     _description = 'Import Bom wizard' | ||||
|  | 
 | ||||
|  |     file_type = fields.Selection([('csv', 'CSV File'), | ||||
|  |                                   ('xls', 'Excel File')], | ||||
|  |                                  String='File Type', Required=True, | ||||
|  |                                  default='csv', | ||||
|  |                                  help='File type of importing file') | ||||
|  |     name = fields.Char(string='name') | ||||
|  |     bom_type = fields.Selection( | ||||
|  |         [('mtp', 'Manufacture This Product'), ('kit', 'Kit')], | ||||
|  |         String='BOM Type', Required=True, | ||||
|  |         default='mtp', helf='Type of Bill of Materials') | ||||
|  |     product_variant_by = fields.Selection( | ||||
|  |         [('default_code', 'Internal Reference'), | ||||
|  |          ('barcode', 'Barcode')], String='Product Variant By', Required=True, | ||||
|  |         default='default_code', help='Product variant type in file') | ||||
|  |     product_by = fields.Selection([('name', 'Name'), | ||||
|  |                                    ('default_code', 'Internal Reference'), | ||||
|  |                                    ('barcode', 'Barcode')], String='Product By', | ||||
|  |                                   Required=True, default='name', | ||||
|  |                                   help='Product type in file') | ||||
|  |     file = fields.Binary(String='Upload File', Required=True, | ||||
|  |                          help='File to Import') | ||||
|  | 
 | ||||
|  |     def action_import_bom(self): | ||||
|  |         """function for importing bom through csv or Excel file""" | ||||
|  |         if self.file: | ||||
|  |             if self.file_type == 'csv': | ||||
|  |                 try: | ||||
|  |                     file = base64.b64decode(self.file) | ||||
|  |                     file_string = file.decode('utf-8') | ||||
|  |                     file_string.split('\n') | ||||
|  |                     urllib3.PoolManager(cert_reqs='CERT_REQUIRED', | ||||
|  |                                         ca_certs=certifi.where()) | ||||
|  |                 except: | ||||
|  |                     raise UserError(_("Please choose the correct file!")) | ||||
|  |                 for rec in self: | ||||
|  |                     file = str(base64.decodebytes( | ||||
|  |                         rec.file).decode('utf-8')) | ||||
|  |                     reader = csv.reader(file.splitlines()) | ||||
|  |                     next(reader) | ||||
|  |                     last_bom_id = False | ||||
|  |                     rec_count = 0 | ||||
|  |                     try: | ||||
|  |                         for col in reader: | ||||
|  |                             bom_data = {} | ||||
|  |                             bom_line_dict = {} | ||||
|  |                             if col[1]: | ||||
|  |                                 rec_count += 1 | ||||
|  |                                 if rec.product_by == 'name': | ||||
|  |                                     product_search = 'name' | ||||
|  |                                 elif rec.product_by == 'default_code': | ||||
|  |                                     product_search = 'default_code' | ||||
|  |                                 else: | ||||
|  |                                     product_search = 'barcode' | ||||
|  |                                 product = self.env['product.template'].search( | ||||
|  |                                     [(product_search, '=', col[1])], limit=1) | ||||
|  |                                 bom_data.update({'product_tmpl_id': product.id, | ||||
|  |                                                  'code': col[0]}) | ||||
|  |                                 if col[2]: | ||||
|  |                                     if rec.product_variant_by == 'default_code': | ||||
|  |                                         variant_search = 'default_code' | ||||
|  |                                     else: | ||||
|  |                                         variant_search = 'barcode' | ||||
|  |                                     variant = self.env[ | ||||
|  |                                         'product.product'].search( | ||||
|  |                                         [(variant_search, '=', col[2])], | ||||
|  |                                         limit=1) | ||||
|  |                                     bom_data.update({'product_id': variant.id}) | ||||
|  |                                     if col[4]: | ||||
|  |                                         uom = self.env['uom.uom'].search( | ||||
|  |                                             [('name', '=', col[4])], limit=1) | ||||
|  |                                         bom_data.update( | ||||
|  |                                             {'product_uom_id': uom.id}) | ||||
|  |                                     else: | ||||
|  |                                         bom_data.update( | ||||
|  |                                             {'product_uom_id': variant.uom_id}) | ||||
|  |                                 if col[3]: | ||||
|  |                                     bom_data.update({'product_qty': col[3]}) | ||||
|  |                                 else: | ||||
|  |                                     bom_data.update({'product_qty': 1}) | ||||
|  | 
 | ||||
|  |                                 if rec.bom_type == 'mtp': | ||||
|  |                                     bom_data.update({'type': 'normal'}) | ||||
|  |                                 else: | ||||
|  |                                     bom_data.update({'type': 'phantom'}) | ||||
|  |                                 bom_bom = rec.env['mrp.bom'].create(bom_data) | ||||
|  |                                 last_bom_id = bom_bom.id | ||||
|  |                             if col[5]: | ||||
|  |                                 if rec.product_variant_by == 'default_code': | ||||
|  |                                     variant_search = 'default_code' | ||||
|  |                                 else: | ||||
|  |                                     variant_search = 'barcode' | ||||
|  |                                 variant = self.env['product.product'].search( | ||||
|  |                                     [(variant_search, '=', col[5])], limit=1) | ||||
|  |                                 bom_line_dict.update({'product_id': variant.id, | ||||
|  |                                                       'bom_id': last_bom_id | ||||
|  |                                                       }) | ||||
|  |                                 if col[6]: | ||||
|  |                                     bom_line_dict.update( | ||||
|  |                                         {'product_qty': col[6]}) | ||||
|  |                                 else: | ||||
|  |                                     bom_line_dict.update({'product_qty': 1}) | ||||
|  |                                 if col[7]: | ||||
|  |                                     uom = self.env['uom.uom'].search( | ||||
|  |                                         [('name', '=', col[7])], limit=1) | ||||
|  |                                     bom_line_dict.update( | ||||
|  |                                         {'product_uom_id': uom.id}) | ||||
|  |                                 else: | ||||
|  |                                     bom_line_dict.update( | ||||
|  |                                         {'product_uom_id': product.uom_id}) | ||||
|  |                                 self.env['mrp.bom.line'].create(bom_line_dict) | ||||
|  |                         return rec.success_message(rec_count) | ||||
|  |                     except Exception as e: | ||||
|  |                         raise UserError( | ||||
|  |                             _("Sorry, The CSV file you provided " | ||||
|  |                               "does not match our required format" + ustr( | ||||
|  |                                 e))) | ||||
|  | 
 | ||||
|  |             if self.file_type == 'xls': | ||||
|  |                 try: | ||||
|  |                     file_string = tempfile.NamedTemporaryFile(suffix=".xlsx") | ||||
|  |                     file_string.write(binascii.a2b_base64(self.file)) | ||||
|  |                     book = xlrd.open_workbook(file_string.name) | ||||
|  |                     book.sheet_by_index(0) | ||||
|  |                     urllib3.PoolManager(cert_reqs='CERT_REQUIRED', | ||||
|  |                                         ca_certs=certifi.where()) | ||||
|  |                 except: | ||||
|  |                     raise UserError(_("Please choose the correct file")) | ||||
|  |                 for rec in self: | ||||
|  |                     try: | ||||
|  |                         wb = openpyxl.load_workbook( | ||||
|  |                             filename=BytesIO(base64.b64decode(rec.file)), | ||||
|  |                             read_only=True) | ||||
|  |                         ws = wb.active | ||||
|  |                         rec_count = 0 | ||||
|  |                         for col in ws.iter_rows(min_row=2, values_only=True): | ||||
|  |                             bom_data = {} | ||||
|  |                             bom_line_dict = {} | ||||
|  |                             if col[1]: | ||||
|  |                                 rec_count += 1 | ||||
|  |                                 if rec.product_by == 'name': | ||||
|  |                                     product_search = 'name' | ||||
|  |                                 elif rec.product_by == 'default_code': | ||||
|  |                                     product_search = 'default_code' | ||||
|  |                                 else: | ||||
|  |                                     product_search = 'barcode' | ||||
|  |                                 product = self.env['product.template'].search( | ||||
|  |                                     [(product_search, '=', col[1])], limit=1) | ||||
|  |                                 bom_data.update({'product_tmpl_id': product.id, | ||||
|  |                                                  'code': col[0]}) | ||||
|  |                                 if col[2]: | ||||
|  |                                     if rec.product_variant_by == 'default_code': | ||||
|  |                                         variant_search = 'default_code' | ||||
|  |                                     else: | ||||
|  |                                         variant_search = 'barcode' | ||||
|  |                                     variant = self.env[ | ||||
|  |                                         'product.product'].search( | ||||
|  |                                         [(variant_search, '=', col[2])], | ||||
|  |                                         limit=1) | ||||
|  |                                     bom_data.update({'product_id': variant.id}) | ||||
|  |                                     if col[4]: | ||||
|  |                                         uom = self.env['uom.uom'].search( | ||||
|  |                                             [('name', '=', col[4])], limit=1) | ||||
|  |                                         bom_data.update( | ||||
|  |                                             {'product_uom_id': uom.id}) | ||||
|  |                                     else: | ||||
|  |                                         bom_data.update( | ||||
|  |                                             {'product_uom_id': variant.uom_id}) | ||||
|  |                                 if col[3]: | ||||
|  |                                     bom_data.update({'product_qty': col[3]}) | ||||
|  |                                 else: | ||||
|  |                                     bom_data.update({'product_qty': 1}) | ||||
|  | 
 | ||||
|  |                                 if rec.bom_type == 'mtp': | ||||
|  |                                     bom_data.update({'type': 'normal'}) | ||||
|  |                                 else: | ||||
|  |                                     bom_data.update({'type': 'phantom'}) | ||||
|  |                                 bom_bom = rec.env['mrp.bom'].create(bom_data) | ||||
|  |                                 last_bom_id = bom_bom.id | ||||
|  |                             if col[5]: | ||||
|  |                                 if rec.product_variant_by == 'default_code': | ||||
|  |                                     variant_search = 'default_code' | ||||
|  |                                 else: | ||||
|  |                                     variant_search = 'barcode' | ||||
|  |                                 variant = self.env['product.product'].search( | ||||
|  |                                     [(variant_search, '=', col[5])], limit=1) | ||||
|  |                                 bom_line_dict.update({'product_id': variant.id, | ||||
|  |                                                       'bom_id': last_bom_id | ||||
|  |                                                       }) | ||||
|  |                                 if col[6]: | ||||
|  |                                     bom_line_dict.update( | ||||
|  |                                         {'product_qty': col[6]}) | ||||
|  |                                 else: | ||||
|  |                                     bom_line_dict.update({'product_qty': 1}) | ||||
|  |                                 if col[7]: | ||||
|  |                                     uom = self.env['uom.uom'].search( | ||||
|  |                                         [('name', '=', col[7])], limit=1) | ||||
|  |                                     bom_line_dict.update( | ||||
|  |                                         {'product_uom_id': uom.id}) | ||||
|  |                                 else: | ||||
|  |                                     bom_line_dict.update( | ||||
|  |                                         {'product_uom_id': product.uom_id}) | ||||
|  |                                 self.env['mrp.bom.line'].create(bom_line_dict) | ||||
|  |                         return rec.success_message(rec_count) | ||||
|  |                     except Exception as e: | ||||
|  |                         raise UserError( | ||||
|  |                             _("Sorry, The Excel file you provided" | ||||
|  |                               " does not match our required format" + ustr( | ||||
|  |                                 e))) | ||||
|  | 
 | ||||
|  |     def success_message(self, rec_count): | ||||
|  |         """function for displaying success message""" | ||||
|  |         message_id = self.env['success.message'].create( | ||||
|  |             {'message': str(rec_count) + " Records imported successfully"}) | ||||
|  |         return { | ||||
|  |             'name': 'Message', | ||||
|  |             'type': 'ir.actions.act_window', | ||||
|  |             'view_mode': 'form', | ||||
|  |             'res_model': 'success.message', | ||||
|  |             'res_id': message_id.id, | ||||
|  |             'target': 'new' | ||||
|  |         } | ||||
| @ -0,0 +1,42 @@ | |||||
|  | <?xml version="1.0" encoding="utf-8"?> | ||||
|  | <odoo> | ||||
|  |     <!-- wizard of importing Bill of Materials --> | ||||
|  |     <record id="bom_import_view_form" model="ir.ui.view"> | ||||
|  |         <field name="name">bom.import</field> | ||||
|  |         <field name="model">bom.import</field> | ||||
|  |         <field name="arch" type="xml"> | ||||
|  |             <form name="Import BOM"> | ||||
|  |                 <group> | ||||
|  |                     <group> | ||||
|  |                         <field name="file_type" widget="radio"/> | ||||
|  |                         <field name="bom_type" widget="radio"/> | ||||
|  |                         <field name="file" filename="name"/> | ||||
|  |                     </group> | ||||
|  |                     <group> | ||||
|  |                         <field name="product_variant_by" widget="radio"/> | ||||
|  |                         <field name="product_by" widget="radio"/> | ||||
|  |                     </group> | ||||
|  |                     <field name="name" invisible="1"/> | ||||
|  |                 </group> | ||||
|  |                 <footer> | ||||
|  |                     <button name="action_import_bom" string="Apply" type="object" class="btn-primary"/> | ||||
|  |                     <button string="Cancel" class="btn-default" special="cancel"/> | ||||
|  |                     <div class="div_pos"> | ||||
|  |                         <strong>Download Sample:</strong> | ||||
|  |                         <a role="button" href="import_bom/static/download/import_bom_csv.csv" class="btn-primary csv" | ||||
|  |                            download=""> | ||||
|  |                             <i class="fa fa-download"/> | ||||
|  |                             CSV file | ||||
|  |                         </a> | ||||
|  |                         <a role="button" href="import_bom/static/download/import_bom_excel.xlsx" | ||||
|  |                            class="btn-primary xlsx" | ||||
|  |                            download=""> | ||||
|  |                             <i class="fa fa-download"/> | ||||
|  |                             Excel file | ||||
|  |                         </a> | ||||
|  |                     </div> | ||||
|  |                 </footer> | ||||
|  |             </form> | ||||
|  |         </field> | ||||
|  |     </record> | ||||
|  | </odoo> | ||||
| @ -0,0 +1,35 @@ | |||||
|  | # -*- coding: utf-8 -*- | ||||
|  | ############################################################################# | ||||
|  | # | ||||
|  | #    Cybrosys Technologies Pvt. Ltd. | ||||
|  | # | ||||
|  | #    Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) | ||||
|  | #    Author: Anurudh P (<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, fields | ||||
|  | 
 | ||||
|  | 
 | ||||
|  | class SuccessWizard(models.TransientModel): | ||||
|  |     """model for adding warning message """ | ||||
|  | 
 | ||||
|  |     _name = 'success.message' | ||||
|  |     _description = "Show Message" | ||||
|  | 
 | ||||
|  |     message = fields.Text('Success', required=True) | ||||
|  | 
 | ||||
|  |     def action_close(self): | ||||
|  |         """function for close button""" | ||||
|  |         return {'type': 'ir.actions.act_window_close'} | ||||
| @ -0,0 +1,16 @@ | |||||
|  | <?xml version="1.0" encoding="utf-8"?> | ||||
|  | <odoo> | ||||
|  |     <!--This XML defines a view for displaying a success message in an Odoo wizard--> | ||||
|  |     <record id="success_message_view_form" model="ir.ui.view"> | ||||
|  |         <field name="name">success.message.form</field> | ||||
|  |         <field name="model">success.message</field> | ||||
|  |         <field name="arch" type="xml"> | ||||
|  |             <form> | ||||
|  |                 <field name="message" readonly="True"/> | ||||
|  |                 <footer> | ||||
|  |                     <button name="action_close" string="Ok" type="object" class="oe_highlight"/> | ||||
|  |                 </footer> | ||||
|  |             </form> | ||||
|  |         </field> | ||||
|  |     </record> | ||||
|  | </odoo> | ||||