| @ -0,0 +1,53 @@ | |||
| .. image:: https://img.shields.io/badge/license-LGPL--3-green.svg | |||
|     :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html | |||
|     :alt: License: LGPL-3 | |||
| 
 | |||
| Import Product variant | |||
| ====================== | |||
| This module is used to import the product and their attributes using xlsx file | |||
| and csv file.And also through this files with product importing we can also | |||
| import some basic fields such as char ,many2one and many2many fields.Using this | |||
| module we can update a product using the product's internal reference | |||
| or barcode we can change the date through the importing and also these can be | |||
| implemented using the two files. | |||
| 
 | |||
| Configuration | |||
| ============= | |||
| * No additional configurations needed | |||
| 
 | |||
| Company | |||
| ------- | |||
| * `Cybrosys Techno Solutions <https://cybrosys.com/>`__ | |||
| 
 | |||
| License | |||
| ------- | |||
| General Public License, Version 3 (LGPL v3). | |||
| (https://www.gnu.org/licenses/lgpl-3.0-standalone.html) | |||
| 
 | |||
| 
 | |||
| Credits | |||
| ------- | |||
| * Developer: (V16) Gayathri V, 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,23 @@ | |||
| """Import product variant""" | |||
| # -*- coding: utf-8 -*- | |||
| ############################################################################# | |||
| # | |||
| #    Cybrosys Technologies Pvt. Ltd. | |||
| # | |||
| #    Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) | |||
| #    Author: Cybrosys Techno Solutions(<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,49 @@ | |||
| # -*- coding: utf-8 -*- | |||
| ############################################################################# | |||
| # | |||
| #    Cybrosys Technologies Pvt. Ltd. | |||
| # | |||
| #    Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) | |||
| #    Author: Cybrosys Techno Solutions(<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 Product variant', | |||
|     'version': '17.0.1.0.0', | |||
|     'category': 'Sales', | |||
|     'summary': """This module is used to import the product and product  | |||
|      variants.""", | |||
|     'description': """This module is used to import the product and their  | |||
|      attributes using xlsx file and csv file. And also through this files with  | |||
|      product importing we can also import some basic fields such as char,many2one | |||
|      and many2many fields.Using this module we can update a product using the  | |||
|      product's internal reference or barcode we can change the date through the  | |||
|      importing and also these can be implemented using the two files.""", | |||
|     'author': 'Cybrosys Techno Solutions', | |||
|     'company': 'Cybrosys Techno Solutions', | |||
|     'maintainer': 'Cybrosys Techno Solutions', | |||
|     'website': 'https://www.cybrosys.com', | |||
|     'depends': ['sale_management', 'stock'], | |||
|     'data': [ | |||
|         'security/ir.model.access.csv', | |||
|         'security/product_variant_import_groups.xml', | |||
|         'wizards/import_product_variant_views.xml', | |||
|     ], | |||
|     'images': ['static/description/banner.png'], | |||
|     'license': 'LGPL-3', | |||
|     'installable': True, | |||
|     'auto_install': False, | |||
|     'application': False, | |||
| } | |||
| @ -0,0 +1,6 @@ | |||
| ## Module <product_variant_import> | |||
| 
 | |||
| #### 20.10.2024 | |||
| #### Version 17.0.1.0.0 | |||
| ##### ADD | |||
| - Initial commit for Import Product variant | |||
| 
 | 
| @ -0,0 +1,13 @@ | |||
| <?xml version="1.0" encoding="utf-8"?> | |||
| <odoo> | |||
|     <!--Product variant Import/Export user group--> | |||
|     <record model="ir.module.category" id="product_variant_import_module_management"> | |||
|         <field name="name">Import</field> | |||
|         <field name="description">Import Product Variant</field> | |||
|         <field name="sequence">10</field> | |||
|     </record> | |||
|     <record id="product_variant_access" model="res.groups"> | |||
|         <field name="name">Variant Manager</field> | |||
|         <field name="category_id" ref="product_variant_import_module_management"/> | |||
|     </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: 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: 80 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: 79 KiB | 
| After Width: | Height: | Size: 95 KiB | 
| After Width: | Height: | Size: 82 KiB | 
| After Width: | Height: | Size: 86 KiB | 
| After Width: | Height: | Size: 80 KiB | 
| After Width: | Height: | Size: 46 KiB | 
| After Width: | Height: | Size: 132 KiB | 
| After Width: | Height: | Size: 101 KiB | 
| After Width: | Height: | Size: 15 KiB | 
| After Width: | Height: | Size: 22 KiB | 
| After Width: | Height: | Size: 37 KiB | 
| After Width: | Height: | Size: 49 KiB | 
| After Width: | Height: | Size: 48 KiB | 
| After Width: | Height: | Size: 68 KiB | 
| After Width: | Height: | Size: 97 KiB | 
| After Width: | Height: | Size: 22 KiB | 
| After Width: | Height: | Size: 23 KiB | 
| After Width: | Height: | Size: 18 KiB | 
| After Width: | Height: | Size: 710 KiB | 
| After Width: | Height: | Size: 37 KiB | 
| @ -0,0 +1,842 @@ | |||
| <!DOCTYPE html> | |||
| <html lang="en"> | |||
| 
 | |||
| <head> | |||
|     <meta charset="UTF-8"> | |||
|     <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |||
|     <title>Odoo App 3 Index</title> | |||
|     <!-- Bootstrap CSS --> | |||
|     <link rel="stylesheet" | |||
|           href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css" | |||
|           integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" | |||
|           crossorigin="anonymous"> | |||
|     <link rel="stylesheet" | |||
|           href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css"> | |||
|     <link rel="preconnect" href="https://fonts.googleapis.com"> | |||
|     <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | |||
|     <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" | |||
|           rel="stylesheet"> | |||
| </head> | |||
| <body> | |||
| <section> | |||
|     <div class="container" | |||
|          style="font-family: 'Inter', sans-serif !important;background-color: #fff !important;"> | |||
|         <div class="row"> | |||
|             <div class="col-sm-12 col-md-12 col-lg-12 d-flex justify-content-between flex-wrap align-items-sm-center" | |||
|                  style="border-bottom:1px solid rgba(0, 0, 0, 0.22)"> | |||
|                 <div class="my-3"> | |||
|                     <img src="assets/misc/Cybrosys R.png" | |||
|                          style="width:auto !important; height:40px !important"> | |||
|                 </div> | |||
|                 <div class="my-3 d-flex align-items-center"> | |||
|                     <div class="text-center" | |||
|                          style="background-color:#017E84 !important;font-size: 0.8rem !important; color:#fff !important; font-weight:500 !important; padding:4px !important; margin:0 3px !important; border-radius:50px !important; min-width: 120px !important;"> | |||
|                         Community | |||
|                     </div> | |||
|                     <div class="text-center" | |||
|                          style="background-color:#7C7BAD !important; color:#fff !important;font-size: 0.8rem !important; font-weight:500 !important; padding:4px !important; margin:0 3px !important; border-radius:50px !important; min-width: 120px !important;"> | |||
|                         Enterprise | |||
|                     </div> | |||
|                     <div class="text-center" | |||
|                          style="background-color:#7C7BAD !important; color:#fff !important;font-size: 0.8rem !important; font-weight:500 !important; padding:4px !important; margin:0 3px !important; border-radius:50px !important; min-width: 120px !important;"> | |||
|                         Odoo.sh | |||
|                     </div> | |||
|                 </div> | |||
|             </div> | |||
|         </div> | |||
|         <div class="row"> | |||
|             <div class="col-sm-12 col-md-12 col-lg-12 text-center d-flex align-items-center flex-column" | |||
|                  style="margin: 80px 0px !important;"> | |||
|                 <h1 style="font-size: 2.8rem;font-weight: 700; color: | |||
|                     #1A202C;"> | |||
|                     Import Product Variant</h1> | |||
|                 <p class="my-3 mb-4" | |||
|                    style="max-width: 80%; font-weight: 400 !important; line-height: 32px; color: #718096;"> | |||
|                     This Module Is Helps To Import Product And Product Variants. | |||
| 
 | |||
|                 </p> | |||
|                 <div style="width: 80%; margin-top: 3rem;"> | |||
|                     <img src="assets/screenshots/hero.gif" | |||
|                          class="img-responsive" width="100%" height="auto"> | |||
|                 </div> | |||
|             </div> | |||
|         </div> | |||
|         <div class="container mt-5 mb-5"> | |||
|             <div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-4"> | |||
|                 <p class="m-0" | |||
|                    style="font-weight: 600; font-size: 24px; color:#714b67 !important"> | |||
|                     Key Highlights | |||
|                 </p> | |||
|             </div> | |||
|             <div class="row py-4"> | |||
|                 <div class="col-md-6 col-sm-12 p-3"> | |||
|                     <div class="d-flex   h-100" style="padding: 30px;border-radius: 12px; | |||
|                                     background: #FFF; | |||
|                                     box-shadow: 1px 2px 3px 0px rgba(0, 0, 0, 0.25); "> | |||
|                         <div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67; | |||
|                                     display: flex; justify-content: center; align-items: center; | |||
|                                     margin-right: 10px; flex-shrink: 0;"> | |||
|                             <i class="fa-solid fa-star  " | |||
|                                style="color: #fff;font-size:14px;"></i> | |||
|                         </div> | |||
|                         <div> | |||
|                             <p style="color: #1A202C;font-weight: 600; | |||
|                                       font-size: 1.2rem; margin-bottom: 2px;"> | |||
|                                 This module is used to import the product and their attributes using | |||
|         xlsx file and csv file. And also through these files with product | |||
|         importing we can also import some | |||
|         basic fields such as char ,many2one and many2many fields.Using this | |||
|         module we can update a product using the product's internal | |||
|         reference or barcode we can change the date through the importing | |||
|         and also these can be implemented using the two files.</p> | |||
|                         </div> | |||
|                     </div> | |||
|                 </div> | |||
|                 <div class="col-md-6 col-sm-12 p-3"> | |||
|                     <div class="d-flex   h-100" style="padding: 30px;border-radius: 12px; | |||
|                                     background: #FFF; | |||
|                                     box-shadow: 1px 2px 3px 0px rgba(0, 0, 0, 0.25); "> | |||
|                         <div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67; | |||
|                                     display: flex; justify-content: center; align-items: center; | |||
|                                     margin-right: 10px; flex-shrink: 0;"> | |||
|                             <i class="fa-solid fa-star  " | |||
|                                style="color: #fff;font-size:14px;"></i> | |||
|                         </div> | |||
|                         <div> | |||
|                             <p style="color: #1A202C;font-weight: 600; | |||
|                                       font-size: 1.2rem; margin-bottom: 2px;"> | |||
|                                 You can or update product variants by barcode & internal reference.</p> | |||
|                         </div> | |||
|                     </div> | |||
|                 </div> | |||
|                 <div class="col-md-6 col-sm-12 p-3"> | |||
|                     <div class="d-flex   h-100" style="padding: 30px;border-radius: 12px; | |||
|                                     background: #FFF; | |||
|                                     box-shadow: 1px 2px 3px 0px rgba(0, 0, 0, 0.25); "> | |||
|                         <div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67; | |||
|                                     display: flex; justify-content: center; align-items: center; | |||
|                                     margin-right: 10px; flex-shrink: 0;"> | |||
|                             <i class="fa-solid fa-star  " | |||
|                                style="color: #fff;font-size:14px;"></i> | |||
|                         </div> | |||
|                         <div> | |||
|                             <p style="color: #1A202C;font-weight: 600; | |||
|                                       font-size: 1.2rem; margin-bottom: 2px;"> | |||
|                                 You can import product images by image URL or local image path.</p> | |||
|                         </div> | |||
|                     </div> | |||
|                 </div> | |||
|                 <div class="col-md-6 col-sm-12 p-3"> | |||
|                     <div class="d-flex   h-100" style="padding: 30px;border-radius: 12px; | |||
|                                     background: #FFF; | |||
|                                     box-shadow: 1px 2px 3px 0px rgba(0, 0, 0, 0.25); "> | |||
|                         <div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67; | |||
|                                     display: flex; justify-content: center; align-items: center; | |||
|                                     margin-right: 10px; flex-shrink: 0;"> | |||
|                             <i class="fa-solid fa-star  " | |||
|                                style="color: #fff;font-size:14px;"></i> | |||
|                         </div> | |||
|                         <div> | |||
|                             <p style="color: #1A202C;font-weight: 600; | |||
|                                       font-size: 1.2rem; margin-bottom: 2px;"> | |||
|                                 Easy to create and update product variants.</p> | |||
|                         </div> | |||
|                     </div> | |||
|                 </div> | |||
|                 <div class="col-md-6 col-sm-12 p-3"> | |||
|                     <div class="d-flex   h-100" style="padding: 30px;border-radius: 12px; | |||
|                                     background: #FFF; | |||
|                                     box-shadow: 1px 2px 3px 0px rgba(0, 0, 0, 0.25); "> | |||
|                         <div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67; | |||
|                                     display: flex; justify-content: center; align-items: center; | |||
|                                     margin-right: 10px; flex-shrink: 0;"> | |||
|                             <i class="fa-solid fa-star  " | |||
|                                style="color: #fff;font-size:14px;"></i> | |||
|                         </div> | |||
|                         <div> | |||
|                             <p style="color: #1A202C;font-weight: 600; | |||
|                                       font-size: 1.2rem; margin-bottom: 2px;"> | |||
|                                 Easy to import custom fields with product variants..</p> | |||
|                         </div> | |||
|                     </div> | |||
|                 </div> | |||
|                 <div class="col-md-6 col-sm-12 p-3"> | |||
|                     <div class="d-flex   h-100" style="padding: 30px;border-radius: 12px; | |||
|                                     background: #FFF; | |||
|                                     box-shadow: 1px 2px 3px 0px rgba(0, 0, 0, 0.25); "> | |||
|                         <div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67; | |||
|                                     display: flex; justify-content: center; align-items: center; | |||
|                                     margin-right: 10px; flex-shrink: 0;"> | |||
|                             <i class="fa-solid fa-star  " | |||
|                                style="color: #fff;font-size:14px;"></i> | |||
|                         </div> | |||
|                         <div> | |||
|                             <p style="color: #1A202C;font-weight: 600; | |||
|                                       font-size: 1.2rem; margin-bottom: 2px;"> | |||
|                 Easy to import Product Variant (image, price, invoicing type, product type etc.) from CSV or Excel.</p> | |||
|                         </div> | |||
|                     </div> | |||
|                 </div> | |||
|                 <div class="col-md-6 col-sm-12 p-3"> | |||
|                     <div class="d-flex   h-100" style="padding: 30px;border-radius: 12px; | |||
|                                     background: #FFF; | |||
|                                     box-shadow: 1px 2px 3px 0px rgba(0, 0, 0, 0.25); "> | |||
|                         <div style="width: 36px; height: 36px; border-radius: 50%; background: #714B67; | |||
|                                     display: flex; justify-content: center; align-items: center; | |||
|                                     margin-right: 10px; flex-shrink: 0;"> | |||
|                             <i class="fa-solid fa-star  " | |||
|                                style="color: #fff;font-size:14px;"></i> | |||
|                         </div> | |||
|                         <div> | |||
|                             <p style="color: #1A202C;font-weight: 600; | |||
|                                       font-size: 1.2rem; margin-bottom: 2px;">Useful for mass records.                        </div> | |||
|                     </div> | |||
|                 </div> | |||
|             </div> | |||
|         </div> | |||
|         <div class="container rounded"> | |||
|             <ul class="nav nav-tabs d-flex" | |||
|                 style="width: fit-content;margin: 0 auto;gap: 1rem;"> | |||
|                 <li class="col text-center py-2 text-nowrap " | |||
|                     style="color: #fff; background-color: #714B67;border-radius: 6px 6px 0px 0px;"> | |||
|                     <a | |||
|                             class="active show" data-toggle="tab" href="#tab1" | |||
|                             style="color: #fff;font-weight: 500; background-color: #714B67; text-decoration: none;"> | |||
|                         <i class="fa-regular fa-image  pr-2" | |||
|                            style="color: #fff;"></i> | |||
|                         Screenshots</a></li> | |||
|                 <li class="col text-center py-2 text-nowrap " | |||
|                     style="color: #fff; background-color: #714B67;border-radius: 6px 6px 0px 0px;"> | |||
|                     <a | |||
|                             data-toggle="tab" href="#tab2" | |||
|                             style="color: #fff;font-weight: 500;  text-decoration: none;"><i | |||
|                             class="fa-solid fa-star  pr-2" | |||
|                             style="color: #fff;"></i>Features</a></li> | |||
|                 <li class="col text-center py-2 text-nowrap " | |||
|                     style="color: #fff; background-color: #714B67;border-radius: 6px 6px 0px 0px;"> | |||
|                     <a | |||
|                             data-toggle="tab" href="#tab3" | |||
|                             style="color: #fff;font-weight: 500; text-decoration: none; background-color: #714B67;"><i | |||
|                             class="fa-solid fa-book-open  pr-2" | |||
|                             style="color: #fff;"></i>Released Notes</a></li> | |||
|             </ul> | |||
|             <div class="tab-content" | |||
|                  style="background-color: rgba(121, 113, 119, 0.04);"> | |||
|                 <div id="tab1" class="tab-pane fade in active show"> | |||
|                     <div class="col-lg-12 py-2" | |||
|                          style="padding: 1rem 4rem !important;"> | |||
|                         <div | |||
|                                 style="border: 1px solid #d8d6d6; border-radius: 4px;  background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> | |||
|                             <div class="row justify-content-center p-3 w-100 m-0"> | |||
|                                 <img src="assets/screenshots/image1.png" | |||
|                                      class="img-responsive" width="100%" | |||
|                                      height="auto"> | |||
|                             </div> | |||
|                             <div class="px-3"> | |||
|                                 <h4 class="mt-2" | |||
|                                     style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> | |||
|                                     Set the user access.</h4> | |||
|                                 <p> | |||
| 
 | |||
|                                 </p> | |||
|                             </div> | |||
|                         </div> | |||
|                     </div> | |||
|                     <div class="col-lg-12 py-2" | |||
|                          style="padding: 1rem 4rem !important;"> | |||
|                         <div | |||
|                                 style="border: 1px solid #d8d6d6; border-radius: 4px; background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> | |||
|                             <div class="row justify-content-center p-3 w-100 m-0"> | |||
|                                 <img src="assets/screenshots/image2.png" | |||
|                                      class="img-responsive" width="100%" | |||
|                                      height="auto"> | |||
|                             </div> | |||
|                             <div class="px-3"> | |||
|                                 <h4 class="mt-2" | |||
|                                     style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> | |||
|                                      Import menu in the sales module under the product tab.</h4> | |||
|                             </div> | |||
|                         </div> | |||
|                     </div> | |||
|                     <div class="col-lg-12 py-2" | |||
|                          style="padding: 1rem 4rem !important;"> | |||
|                         <div | |||
|                                 style="border: 1px solid #d8d6d6; border-radius: 4px;  background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> | |||
|                             <div class="row justify-content-center p-3 w-100 m-0"> | |||
|                                 <img src="assets/screenshots/image7.png" | |||
|                                      class="img-responsive" width="100%" | |||
|                                      height="auto"> | |||
|                                 <img src="assets/screenshots/image8.png" | |||
|                                      class="img-responsive" width="100%" | |||
|                                      height="auto"> | |||
|                             </div> | |||
|                             <div class="px-3"> | |||
|                                 <h4 class="mt-2" | |||
|                                     style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> | |||
|                                     Sample example of csv file. | |||
|                                 </h4> | |||
|                             </div> | |||
|                         </div> | |||
|                     </div> | |||
|                     <div class="col-lg-12 py-2" | |||
|                          style="padding: 1rem 4rem !important;"> | |||
|                         <div | |||
|                                 style="border: 1px solid #d8d6d6; border-radius: 4px;  background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> | |||
|                             <div class="row justify-content-center p-3 w-100 m-0"> | |||
|                                 <img src="assets/screenshots/image3.png" | |||
|                                      class="img-responsive" width="100%" | |||
|                                      height="auto"> | |||
|                             </div> | |||
|                             <div class="px-3"> | |||
|                                 <h4 class="mt-2" | |||
|                                     style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> | |||
|                                     Upload csv/xlsx file to create the product with | |||
|                 variants. | |||
|                                 </h4> | |||
|                             </div> | |||
|                         </div> | |||
|                     </div> | |||
|                     <div class="col-lg-12 py-2" | |||
|                          style="padding: 1rem 4rem !important;"> | |||
|                         <div | |||
|                                 style="border: 1px solid #d8d6d6; border-radius: 4px;  background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> | |||
|                             <div class="row justify-content-center p-3 w-100 m-0"> | |||
|                                 <img src="assets/screenshots/image9.png" | |||
|                                      class="img-responsive" width="100%" | |||
|                                      height="auto"> | |||
|                                 <img src="assets/screenshots/image10.png" | |||
|                                      class="img-responsive" width="100%" | |||
|                                      height="auto"> | |||
|                                 <img src="assets/screenshots/image12.png" | |||
|                                      class="img-responsive" width="100%" | |||
|                                      height="auto"> | |||
|                             </div> | |||
|                             <div class="px-3"> | |||
|                                 <h4 class="mt-2" | |||
|                                     style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> | |||
|                                     Sample example of xlsx file. | |||
|                                 </h4> | |||
|                             </div> | |||
|                         </div> | |||
|                     </div> | |||
|                     <div class="col-lg-12 py-2" | |||
|                          style="padding: 1rem 4rem !important;"> | |||
|                         <div | |||
|                                 style="border: 1px solid #d8d6d6; border-radius: 4px;  background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> | |||
|                             <div class="row justify-content-center p-3 w-100 m-0"> | |||
|                                 <img src="assets/screenshots/image4.png" | |||
|                                      class="img-responsive" width="100%" | |||
|                                      height="auto"> | |||
|                             </div> | |||
|                             <div class="px-3"> | |||
|                                 <h4 class="mt-2" | |||
|                                     style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> | |||
|                                     Upload you csv/xlsx file to create/update the product with | |||
|                 variants.</h4> | |||
| 
 | |||
|                             </div> | |||
|                         </div> | |||
|                     </div> | |||
|                     <div class="col-lg-12 py-2" | |||
|                          style="padding: 1rem 4rem !important;"> | |||
|                         <div | |||
|                                 style="border: 1px solid #d8d6d6; border-radius: 4px;  background: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> | |||
|                             <div class="row justify-content-center p-3 w-100 m-0"> | |||
|                                 <img src="assets/screenshots/image6.png" | |||
|                                      class="img-responsive" width="100%" | |||
|                                      height="auto"> | |||
|                             </div> | |||
|                             <div class="px-3"> | |||
|                                 <h4 class="mt-2" | |||
|                                     style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> | |||
|                                    Imported product with image.</h4> | |||
| 
 | |||
|                             </div> | |||
|                         </div> | |||
|                     </div> | |||
| 
 | |||
|                 </div> | |||
|                 <div id="tab2" class="tab-pane fade"> | |||
|                     <div class="col-mg-12" style="padding: 1rem 4rem;"> | |||
|                         <ul style="list-style: none; padding: 1rem 0;font-weight: 500;"> | |||
|                             <li class="py-3" | |||
|                                 style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; margin-bottom: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> | |||
|                                     <span style="margin-right: 12px;"><img | |||
|                                             src="assets/misc/star.png" | |||
|                                             alt="" | |||
|                                             width="16px"></span>Available in | |||
|                                 Odoo 18.0 Community and Enterprise | |||
|                             </li> | |||
|                             <li class="py-3" | |||
|                                 style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; margin-bottom: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> | |||
|                                     <span style="margin-right: 12px;"><img | |||
|                                             src="assets/misc/star.png" | |||
|                                             alt="" | |||
|                                             width="16px"></span>Useful for mass records. | |||
| 
 | |||
|                             </li> | |||
|                             <li class="py-3" | |||
|                                 style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; margin-bottom: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> | |||
|                                     <span style="margin-right: 12px;"><img | |||
|                                             src="assets/misc/star.png" | |||
|                                             alt="" | |||
|                                             width="16px"></span>Easy to import Product Variant (image, price, invoicing type, product type etc.) from CSV or Excel. | |||
| 
 | |||
|                             </li> | |||
|                         </ul> | |||
|                     </div> | |||
|                 </div> | |||
|                 <div id="tab3" class="tab-pane fade"> | |||
|                     <div class="col-mg-12 active" style="padding: 1rem 4rem;"> | |||
|                         <div class="py-3" | |||
|                              style="font-weight: 500;background-color: #fff; border-radius: 4px; padding: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);"> | |||
|                             <div class="d-flex mb-3" | |||
|                                  style="font-size: 0.8rem; font-weight: 500;"><span>Version | |||
|                                         18.0.1.0.0</span><span | |||
|                                     class="px-2">|</span><span | |||
|                                     style="color: #714B67;font-weight: 600;">Released on:19th October 2024</span> | |||
|                             </div> | |||
|                             <p class="m-0" | |||
|                                style=" color:#718096!important; font-size:1rem !important;line-height: 28px;"> | |||
|                                 Initial Commit for Import Product Variant</p> | |||
|                         </div> | |||
|                     </div> | |||
|                 </div> | |||
|             </div> | |||
|         </div> | |||
|         <div class="container mt-5"> | |||
|             <div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-5"> | |||
|                 <p class="m-0" | |||
|                    style="font-weight: 600; font-size: 24px; color:#000 !important"> | |||
|                     Related Products</p> | |||
|             </div> | |||
|         </div> | |||
|         <div id="myCarousel" class="carousel slide py-3" data-ride="carousel"> | |||
|             <div class="carousel-inner"> | |||
|                 <div class="carousel-item active"> | |||
|                     <div class="row p-4"> | |||
|                         <div class="col"> | |||
|                             <div class="p-3"> | |||
|                                 <a href="https://apps.odoo.com/apps/modules/17.0/sale_recurring/" | |||
|                                    style="color: #000; text-decoration: none;"> | |||
|                                     <div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> | |||
|                                         <div style="width: 300px; "> | |||
|                                             <img src="assets/modules/1.jpg" | |||
|                                                  alt="" width="100%" | |||
|                                                  height="auto"> | |||
|                                             <p class="text-center pt-2 text-black font-weight-bold"> | |||
|                                                 Sale Recurring </p> | |||
|                                         </div> | |||
|                                     </div> | |||
|                                 </a> | |||
|                             </div> | |||
|                         </div> | |||
|                         <div class="col"> | |||
|                             <div class="p-3"> | |||
|                                 <a href="https://apps.odoo.com/apps/modules/17.0/product_to_invoice/" | |||
|                                    style="color: #000; text-decoration: none;"> | |||
|                                     <div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> | |||
|                                         <div style="width: 300px; "> | |||
|                                             <img src="assets/modules/2.jpg" | |||
|                                                  alt="" width="100%" | |||
|                                                  height="auto"> | |||
|                                             <p class="text-center pt-2 text-black font-weight-bold"> | |||
|                                                 Add Multiple Products to | |||
|                                                 Invoice/Bills </p> | |||
|                                         </div> | |||
|                                     </div> | |||
|                                 </a> | |||
|                             </div> | |||
|                         </div> | |||
|                         <div class="col"> | |||
|                             <div class="p-3"> | |||
|                                 <a href="https://apps.odoo.com/apps/modules/17.0/pos_order_line_mass_edit/" | |||
|                                    style="color: #000; text-decoration: none;"> | |||
|                                     <div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> | |||
|                                         <div style="width: 300px; "> | |||
|                                             <img src="assets/modules/3.jpg" | |||
|                                                  alt="" width="100%" | |||
|                                                  height="auto"> | |||
|                                             <p class="text-center pt-2 text-black font-weight-bold"> | |||
|                                                 POS Order Line Mass Edit </p> | |||
|                                         </div> | |||
|                                     </div> | |||
|                                 </a> | |||
|                             </div> | |||
|                         </div> | |||
|                     </div> | |||
|                 </div> | |||
|                 <div class="carousel-item"> | |||
|                     <div class="row p-4"> | |||
|                         <div class="col"> | |||
|                             <div class="p-3"> | |||
|                                 <a href="https://apps.odoo.com/apps/modules/17.0/sale_report_advanced/" | |||
|                                    style="color: #000; text-decoration: none;"> | |||
|                                     <div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> | |||
|                                         <div style="width: 300px; "> | |||
|                                             <img src="assets/modules/4.png" | |||
|                                                  alt="" width="100%" | |||
|                                                  height="auto"> | |||
|                                             <p class="text-center pt-2 text-black font-weight-bold"> | |||
|                                                 Advanced Sales Report </p> | |||
|                                         </div> | |||
|                                     </div> | |||
|                                 </a> | |||
|                             </div> | |||
|                         </div> | |||
|                         <div class="col"> | |||
|                             <div class="p-3"> | |||
|                                 <a href="https://apps.odoo.com/apps/modules/17.0/access_restriction_by_ip/" | |||
|                                    style="color: #000; text-decoration: none;"> | |||
|                                     <div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> | |||
|                                         <div style="width: 300px;"> | |||
|                                             <img src="assets/modules/5.jpg" | |||
|                                                  alt="" width="100%" | |||
|                                                  height="auto"> | |||
|                                             <p class="text-center pt-2 text-black font-weight-bold"> | |||
|                                                 Access Restriction by IP </p> | |||
|                                         </div> | |||
|                                     </div> | |||
|                                 </a> | |||
|                             </div> | |||
|                         </div> | |||
|                         <div class="col"> | |||
|                             <div class="p-3"> | |||
|                                 <a href="https://apps.odoo.com/apps/modules/17.0/export_stockinfo_xls/" | |||
|                                    style="color: #000; text-decoration: none;"> | |||
|                                     <div style="border:1px solid #CBCBCB !important;border-radius: 4px;"> | |||
|                                         <div style="width: 300px;"> | |||
|                                             <img src="assets/modules/6.png" | |||
|                                                  alt="" width="100%" | |||
|                                                  height="auto"> | |||
|                                             <p class="text-center pt-2 text-black font-weight-bold"> | |||
|                                                 Export Product Stock in | |||
|                                                 Excel </p> | |||
|                                         </div> | |||
|                                     </div> | |||
|                                 </a> | |||
|                             </div> | |||
|                         </div> | |||
|                     </div> | |||
|                 </div> | |||
|             </div> | |||
|             <a class="carousel-control-prev" href="#myCarousel" | |||
|                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="#myCarousel" | |||
|                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 class="container mt-5"> | |||
|             <div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-4"> | |||
|                 <p class="m-0" | |||
|                    style="font-weight: 600; font-size: 24px; color:#000 !important"> | |||
|                     Our Services</p> | |||
| 
 | |||
|             </div> | |||
|         </div> | |||
|         <div class="container my-5"> | |||
|             <div class="row py-3"> | |||
|                 <div class="col-md-4 col-sm-6 px-4 py-4"> | |||
|                     <div | |||
|                             style="background-color: #fff; padding: 25px; text-align: center;  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative;border-radius: 4px;"> | |||
|                         <div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> | |||
|                             <div style="background-color:#13EA36 ; border-radius: 50%; padding: 15px;    width: 68px; | |||
|                                     height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> | |||
|                                 <img src="assets/icons/cogs.png" | |||
|                                      alt="service-icon" width="38px" | |||
|                                      height="auto"> | |||
|                             </div> | |||
|                         </div> | |||
|                         <p style="margin-top: 20px; font-weight: bold;">Odoo | |||
|                             Customization</p> | |||
|                     </div> | |||
|                 </div> | |||
|                 <div class="col-md-4 col-sm-6 px-4 py-4"> | |||
|                     <div style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative;border-radius: 4px;"> | |||
|                         <div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> | |||
|                             <div style="background-color:#DBC711; border-radius: 50%; padding: 15px;    width: 68px; | |||
|                                     height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> | |||
|                                 <img src="assets/icons/wrench.png" | |||
|                                      alt="service-icon" width="38px" | |||
|                                      height="auto"> | |||
|                             </div> | |||
|                         </div> | |||
|                         <p style="margin-top: 20px; font-weight: bold;">Odoo | |||
|                             Implementation</p> | |||
|                     </div> | |||
|                 </div> | |||
|                 <div class="col-md-4 col-sm-6 px-4 py-4"> | |||
|                     <div | |||
|                             style="background-color: #fff; padding: 25px; text-align: center;  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative; border-radius: 4px;"> | |||
|                         <div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> | |||
|                             <div style="background-color:#FF6B6B ; border-radius: 50%; padding: 15px;    width: 68px; | |||
|                                     height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> | |||
|                                 <img src="assets/icons/lifebuoy.png" | |||
|                                      alt="service-icon" width="38px" | |||
|                                      height="auto"> | |||
|                             </div> | |||
|                         </div> | |||
|                         <p style="margin-top: 20px; font-weight: bold;">Odoo | |||
|                             Support</p> | |||
|                     </div> | |||
|                 </div> | |||
|                 <div class="col-md-4 col-sm-6 px-4 py-4"> | |||
|                     <div | |||
|                             style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative; border-radius: 4px;"> | |||
|                         <div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> | |||
|                             <div style="background-color:#FFA801 ; border-radius: 50%; padding: 15px;    width: 68px; | |||
|                                     height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> | |||
|                                 <img src="assets/icons/user.png" | |||
|                                      alt="service-icon" width="38px" | |||
|                                      height="auto"> | |||
|                             </div> | |||
|                         </div> | |||
|                         <p style="margin-top: 20px; font-weight: bold;">Hire | |||
|                             Odoo Developer</p> | |||
|                     </div> | |||
|                 </div> | |||
|                 <div class="col-md-4 col-sm-6 px-4 py-4"> | |||
|                     <div | |||
|                             style="background-color: #fff; padding: 25px; text-align: center;  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative; border-radius: 4px;"> | |||
| 
 | |||
|                         <div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> | |||
|                             <div style="background-color:#54A0FF; border-radius: 50%; padding: 15px;    width: 68px; | |||
|                                     height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> | |||
|                                 <img src="assets/icons/puzzle.png" | |||
|                                      alt="service-icon" width="38px" | |||
|                                      height="auto"> | |||
|                             </div> | |||
|                         </div> | |||
|                         <p style="margin-top: 20px; font-weight: bold;">Odoo | |||
|                             Integration</p> | |||
|                     </div> | |||
|                 </div> | |||
|                 <div class="col-md-4 col-sm-6 px-4 py-4"> | |||
|                     <div | |||
|                             style="background-color: #fff; padding: 25px; text-align: center;  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative;border-radius: 4px;"> | |||
|                         <div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> | |||
|                             <div style="background-color:#6D7680 ; border-radius: 50%; padding: 15px;    width: 68px; | |||
|                                     height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> | |||
|                                 <img src="assets/icons/update.png" | |||
|                                      alt="service-icon" width="38px" | |||
|                                      height="auto"> | |||
|                             </div> | |||
|                         </div> | |||
|                         <p style="margin-top: 20px; font-weight: bold;">Odoo | |||
|                             Migration</p> | |||
|                     </div> | |||
|                 </div> | |||
|                 <div class="col-md-4 col-sm-6 px-4 py-4"> | |||
|                     <div | |||
|                             style="background-color: #fff; padding: 25px; text-align: center;  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative;border-radius: 4px;"> | |||
|                         <div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> | |||
|                             <div style="background-color:#786FA6 ; border-radius: 50%; padding: 15px;    width: 68px; | |||
|                                     height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> | |||
|                                 <img src="assets/icons/consultation.png" | |||
|                                      alt="service-icon" width="38px" | |||
|                                      height="auto"> | |||
|                             </div> | |||
|                         </div> | |||
|                         <p style="margin-top: 20px; font-weight: bold;">Odoo | |||
|                             Consultancy</p> | |||
|                     </div> | |||
|                 </div> | |||
|                 <div class="col-md-4 col-sm-6 px-4 py-4"> | |||
|                     <div | |||
|                             style="background-color: #fff; padding: 25px; text-align: center; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;position: relative;border-radius: 4px;"> | |||
|                         <div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> | |||
|                             <div style="background-color:#F8A5C2 ; border-radius: 50%; padding: 15px;    width: 68px; | |||
|                                     height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> | |||
|                                 <img src="assets/icons/training.png" | |||
|                                      alt="service-icon" width="38px" | |||
|                                      height="auto"> | |||
|                             </div> | |||
|                         </div> | |||
|                         <p style="margin-top: 20px; font-weight: bold;">Odoo | |||
|                             Implementation</p> | |||
|                     </div> | |||
|                 </div> | |||
|                 <div class="col-md-4 col-sm-6 px-4 py-4"> | |||
|                     <div | |||
|                             style="background-color: #fff; padding: 25px; text-align: center;  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; position: relative;border-radius: 4px;"> | |||
|                         <div style="position: absolute; top: 0%; left: 50%; transform: translate(-50%, -50%);"> | |||
|                             <div style="background-color:#E6BE26; border-radius: 50%; padding: 15px;    width: 68px; | |||
|                                     height: 68px; display: inline-block; box-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);"> | |||
|                                 <img src="assets/icons/license.png" | |||
|                                      alt="service-icon" width="38px" | |||
|                                      height="auto"> | |||
|                             </div> | |||
|                         </div> | |||
|                         <p style="margin-top: 20px; font-weight: bold;">Odoo | |||
|                             Licensing Consultancy</p> | |||
|                     </div> | |||
|                 </div> | |||
|             </div> | |||
|         </div> | |||
|         <div class="container mt-5"> | |||
|             <div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-4"> | |||
|                 <p class="m-0" | |||
|                    style="font-weight: 600; font-size: 24px; color:#000 !important"> | |||
|                     Our Industries</p> | |||
| 
 | |||
|             </div> | |||
|         </div> | |||
|         <div class="container"> | |||
|             <div class="row my-5 py-4"> | |||
|                 <div class="col-md-3 col-sm-6 p-0"> | |||
|                     <div class="d-flex flex-column h-100 " | |||
|                          style="border-right: 1px solid rgb(209, 209, 209); border-bottom: 1px solid  rgb(209, 209, 209); padding: 30px; box-shadow: 6px 0 10px rgba(228, 227, 227, 0.373);"> | |||
|                         <img src="assets/icons/trading-black.png" width="42px" | |||
|                              height="auto" alt=""> | |||
|                         <p style="color: #714B67;font-weight: 600; margin-top: 10px; | |||
|                            font-size: 1.2rem; margin-bottom: 2px;">Trading</p> | |||
|                         <p>Easily procure and sell your products</p> | |||
|                     </div> | |||
|                 </div> | |||
|                 <div class="col-md-3 col-sm-6  p-0"> | |||
|                     <div class="d-flex flex-column h-100" | |||
|                          style="border-right: 1px solid rgb(209, 209, 209);border-bottom: 1px solid  rgb(209, 209, 209); padding: 30px;"> | |||
|                         <img src="assets/icons/pos-black.png" width="42px" | |||
|                              height="auto" alt=""> | |||
|                         <p style="color: #714B67;font-weight: 600; margin-top: 10px; | |||
|                             font-size: 1.2rem; margin-bottom: 2px;">POS</p> | |||
|                         <p>Easy configuration and convivial experience</p> | |||
|                     </div> | |||
|                 </div> | |||
|                 <div class="col-md-3 col-sm-6  p-0"> | |||
|                     <div class="d-flex flex-column h-100" | |||
|                          style="border-right: 1px solid  rgb(209, 209, 209);border-bottom: 1px solid   rgba(0, 0, 0, 0.2); padding: 30px; box-shadow: 0 5px 10px  rgba(228, 227, 227, 0.373)"> | |||
|                         <img src="assets/icons/education-black.png" width="42px" | |||
|                              height="auto" alt=""> | |||
|                         <p style="color: #714B67;font-weight: 600; margin-top: 10px; | |||
|                             font-size: 1.2rem; margin-bottom: 2px;"> | |||
|                             Education</p> | |||
|                         <p>A platform for educational management</p> | |||
|                     </div> | |||
|                 </div> | |||
|                 <div class="col-md-3 col-sm-6  p-0"> | |||
|                     <div class="d-flex flex-column h-100" | |||
|                          style="border-bottom: 1px solid  rgb(209, 209, 209); padding: 30px; "> | |||
|                         <img src="assets/icons/manufacturing-black.png" | |||
|                              width="42px" height="auto" alt=""> | |||
|                         <p style="color: #714B67;font-weight: 600; margin-top: 10px; | |||
|                             font-size: 1.2rem; margin-bottom: 2px;"> | |||
|                             Manufacturing</p> | |||
|                         <p>Plan, track and schedule your operations</p> | |||
|                     </div> | |||
|                 </div> | |||
|                 <div class="col-md-3 col-sm-6 p-0"> | |||
|                     <div class="d-flex flex-column h-100" | |||
|                          style="border-right: 1px solid  rgb(209, 209, 209); padding: 30px;"> | |||
|                         <img src="assets/icons/ecom-black.png" width="42px" | |||
|                              height="auto" alt=""> | |||
|                         <p style="color: #714B67;font-weight: 600; margin-top: 10px; | |||
|                             font-size: 1.2rem; margin-bottom: 2px;">E-commerce & | |||
|                             Website</p> | |||
|                         <p>Mobile friendly, awe-inspiring product pages</p> | |||
|                     </div> | |||
|                 </div> | |||
|                 <div class="col-md-3 col-sm-6   p-0"> | |||
|                     <div class="d-flex flex-column h-100" | |||
|                          style="border-right: 1px solid  rgb(209, 209, 209); padding: 30px;box-shadow: 0 -5px 10px  rgba(228, 227, 227, 0.373);"> | |||
|                         <img src="assets/icons/service-black.png" width="42px" | |||
|                              height="auto" alt=""> | |||
|                         <p style="color: #714B67;font-weight: 600; margin-top: 10px; | |||
|                             font-size: 1.2rem; margin-bottom: 2px;">Service | |||
|                             Management</p> | |||
|                         <p>Keep track of services and invoice</p> | |||
|                     </div> | |||
|                 </div> | |||
|                 <div class="col-md-3 col-sm-6    p-0"> | |||
|                     <div class="d-flex flex-column h-100" | |||
|                          style="border-right: 1px solid  rgb(209, 209, 209); padding: 30px; "> | |||
|                         <img src="assets/icons/restaurant-black.png" | |||
|                              width="42px" height="auto" alt=""> | |||
|                         <p style="color: #714B67;font-weight: 600; margin-top: 10px; | |||
|                             font-size: 1.2rem; margin-bottom: 2px;"> | |||
|                             Restaurant</p> | |||
|                         <p>Run your bar or restaurant methodically</p> | |||
|                     </div> | |||
|                 </div> | |||
|                 <div class="col-md-3 col-sm-6   p-0"> | |||
|                     <div class="d-flex flex-column h-100" | |||
|                          style=" padding: 30px;box-shadow: -5px 0 10px  rgba(228, 227, 227, 0.373);"> | |||
|                         <img src="assets/icons/hotel-black.png" width="42px" | |||
|                              height="auto" alt=""> | |||
|                         <p style="color: #714B67;font-weight: 600; margin-top: 10px; | |||
|                             font-size: 1.2rem; margin-bottom: 2px;">Hotel | |||
|                             Management</p> | |||
|                         <p>An all-inclusive hotel management application</p> | |||
|                     </div> | |||
|                 </div> | |||
|             </div> | |||
|         </div> | |||
|         <div class="container mt-5"> | |||
|             <div class="col-lg-12 d-flex flex-column justify-content-center align-items-center mt-5"> | |||
|                 <p class="m-0" | |||
|                    style="font-weight: 600; font-size: 24px; color:#000 !important"> | |||
|                     Support</p> | |||
|             </div> | |||
|         </div> | |||
|         <div class="container my-5"> | |||
|             <div class="row" style="background-color: #FFFAFE;"> | |||
|                 <div class="col-md-6 pb-4  d-flex align-items-center justify-content-center" | |||
|                      style="border-right: 1px solid #D9D9D9;"> | |||
|                     <div style="padding: 30px;"> | |||
|                         <div class="d-flex align-items-center"> | |||
|                             <img src="assets/misc/support (1) 1.svg" alt="" | |||
|                                  width="60px" style="margin-right: 12px;"> | |||
|                             <div style="padding: 0px 8px;"> | |||
|                                     <span | |||
|                                             style="color: #714B67;font-size: 24px;font-weight: 600;padding-bottom: 1rem;">Need | |||
|                                         Help?</span> | |||
|                                 <p class="m-0" style="color:#718096;">Got | |||
|                                     questions or need help? Get in touch.</p> | |||
|                                 <div style="font-weight: 400;"><span><img | |||
|                                         src="assets/misc/support-email.svg" | |||
|                                         alt="" | |||
|                                         width="18px" | |||
|                                         style="filter: invert(1);margin-right: 0.8rem;"></span>odoo@cybrosys.com | |||
|                                 </div> | |||
|                             </div> | |||
|                         </div> | |||
|                     </div> | |||
|                 </div> | |||
|                 <div class="col-md-6 pb-4 d-flex align-items-center justify-content-center"> | |||
|                     <div style="padding: 30px;"> | |||
|                         <div class="d-flex align-items-center"> | |||
|                             <img src="assets/misc/whatsapp 1.svg" alt="" | |||
|                                  width="60px" style="margin-right: 12px;"> | |||
|                             <div> | |||
|                                 <span style="color: #714B67;font-size: 24px;font-weight: 600;">WhatsApp</span> | |||
|                                 <p class="m-0" style="color:#718096;">Say hi to | |||
|                                     us on WhatsApp!</p> | |||
|                                 <div style="font-weight: 400; font-size: 16px;"><span><img | |||
|                                         src="assets/misc/phone.svg" | |||
|                                         alt="" width="14px" | |||
|                                         style="filter: invert(1); margin-right: 0.8rem;"></span>+91 | |||
|                                     99456767686 | |||
|                                 </div> | |||
|                             </div> | |||
|                         </div> | |||
|                     </div> | |||
|                 </div> | |||
|             </div> | |||
|         </div> | |||
|     </div> | |||
| </section> | |||
| <!-- Optional JavaScript --> | |||
| <!-- jQuery first, then Popper.js, then Bootstrap JS --> | |||
| <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> | |||
| <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script> | |||
| </body> | |||
| </html> | |||
| 
 | 
| @ -0,0 +1,23 @@ | |||
| """Import product variant""" | |||
| # -*- coding: utf-8 -*- | |||
| ############################################################################# | |||
| # | |||
| #    Cybrosys Technologies Pvt. Ltd. | |||
| # | |||
| #    Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) | |||
| #    Author: Cybrosys Techno Solutions(<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 import_product_variant | |||
| @ -0,0 +1,694 @@ | |||
| """"Import product variant""" | |||
| # -*- coding: utf-8 -*- | |||
| ############################################################################# | |||
| # | |||
| #    Cybrosys Technologies Pvt. Ltd. | |||
| # | |||
| #    Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) | |||
| #    Author: Cybrosys Techno Solutions(<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 os | |||
| import base64, binascii, csv, io, tempfile, requests, xlrd | |||
| from odoo import fields, models, _ | |||
| from odoo.exceptions import UserError | |||
| from openpyxl import load_workbook | |||
| import re | |||
| 
 | |||
| import base64 | |||
| 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 ImportVariant(models.TransientModel): | |||
|     """Wizard for selecting the imported Files""" | |||
|     _name = 'import.product.variant' | |||
|     _description = "Import Product Variants" | |||
| 
 | |||
|     import_file = fields.Selection( | |||
|         [('csv', 'CSV File'), ('excel', 'Excel File')], required=True, | |||
|         string="Import FIle", help="Import the files") | |||
|     method = fields.Selection([('create', 'Create Product'), | |||
|                                ('update', 'Update Product'), ( | |||
|                                    'update_product', | |||
|                                    'Update Product Variant'), ], | |||
|                               string="Method", required=True, | |||
|                               help="Method for importing/Exporting") | |||
|     file = fields.Binary(string="File", required=True, | |||
|                          help="The file to upload") | |||
| 
 | |||
|     def action_import_product_variant(self): | |||
|         """This is used to import/export the product """ | |||
|         try: | |||
|             global list, detailed, invoicing_type | |||
|             link = False | |||
|             if self.import_file == 'excel': | |||
|                 try: | |||
|                     file_pointer = tempfile.NamedTemporaryFile(delete=False, | |||
|                                                                suffix=".xlsx") | |||
|                     file_pointer.write(binascii.a2b_base64(self.file)) | |||
|                     file_pointer.seek(0) | |||
|                     workbook = load_workbook(filename=file_pointer.name) | |||
|                     sheet = workbook['Sheet1'] | |||
|                 except: | |||
|                     raise UserError(_("File not Valid")) | |||
|                 for index, row in enumerate(sheet.iter_rows(values_only=True)): | |||
|                     if index == 0: | |||
|                         continue  # Skip the first row | |||
|                         # if rec >= 1: | |||
|                     if row: | |||
|                         row_vals = row | |||
|                         if len(row_vals) < int(24): | |||
|                             raise UserError( | |||
|                                 _("Please ensure that you selected " | |||
|                                   "the correct file")) | |||
|                         product_category = self.env['product.category'].search( | |||
|                             [('complete_name', '=', row_vals[6])]).id | |||
|                         if product_category: | |||
|                             category = product_category | |||
|                         else: | |||
|                             category = self.env['product.category'].create({ | |||
|                                 'name': row_vals[6].split('/')[0], | |||
|                                 'complete_name': row_vals[6] | |||
|                             }) | |||
|                             category = category.id | |||
|                         product_uom = self.env['uom.uom'].search( | |||
|                             [('name', '=', row_vals[7])]).id | |||
|                         if product_uom: | |||
|                             uom = product_uom | |||
|                         else: | |||
|                             raise UserError(_("Invalid uom")) | |||
|                         pro_uom = self.env['uom.uom'].search( | |||
|                             [('name', '=', row_vals[8])]).id | |||
|                         if pro_uom: | |||
|                             po_uom = pro_uom | |||
|                         else: | |||
|                             raise UserError(_("Invalid Purchase uom")) | |||
| 
 | |||
|                         def calculate_tax_value(val): | |||
|                             if isinstance(val, float) and val < 1: | |||
|                                 return val * 100, f"{val * 100}%" | |||
|                             return val, val | |||
| 
 | |||
|                         def create_tax_record(name, amount, tax_type): | |||
|                             match = re.search(r'\d+', name) | |||
|                             amount = int(match.group()) if match else amount | |||
|                             return self.env['account.tax'].create({ | |||
|                                 'name': name, | |||
|                                 'amount': amount, | |||
|                                 'type_tax_use': tax_type, | |||
|                             }).id | |||
| 
 | |||
|                         account_val, account_name = calculate_tax_value( | |||
|                             row_vals[9]) | |||
|                         supp_val, supp_name = calculate_tax_value(row_vals[10]) | |||
| 
 | |||
|                         account_tax = self.env['account.tax'].search( | |||
|                             [('name', '=', account_name), | |||
|                              ('type_tax_use', '=', 'sale')]).id | |||
|                         supp_tax = self.env['account.tax'].search( | |||
|                             [('name', '=', supp_name), | |||
|                              ('type_tax_use', '=', 'purchase')]).id | |||
| 
 | |||
|                         tax = account_tax if account_tax else create_tax_record( | |||
|                             account_name, account_val, 'sale') | |||
|                         supplier_tax = supp_tax if supp_tax else create_tax_record( | |||
|                             supp_name, supp_val, 'purchase') | |||
| 
 | |||
|                         kay_val_dict = dict( | |||
|                             self.env['product.template']._fields[ | |||
|                                 'detailed_type'].selection) | |||
|                         # here 'type' is field name | |||
|                         for key, val in kay_val_dict.items(): | |||
|                             if val == row_vals[5]: | |||
|                                 detailed = key | |||
|                         kay_val_dict = dict( | |||
|                             self.env['product.template']._fields[ | |||
|                                 'invoice_policy'].selection) | |||
|                         # here 'type' is field name | |||
|                         for key, val in kay_val_dict.items(): | |||
|                             if val == row_vals[12]: | |||
|                                 invoicing_type = key | |||
|                         if "http://" in row_vals[23] or "https://" in row_vals[ | |||
|                             23]: | |||
|                             link = base64.b64encode( | |||
|                                 requests.get( | |||
|                                     row_vals[23].strip()).content).replace( | |||
|                                 b"\n", b"") | |||
|                         elif "/home" in row_vals[23]: | |||
|                             if os.path.exists(row_vals[23]): | |||
|                                 with open(row_vals[23], 'rb') as image_file: | |||
|                                     link = base64.b64encode(image_file.read()) | |||
|                         if not row_vals[2] or not row_vals[18]: | |||
|                             raise UserError(_("File Must  Contain Internal " | |||
|                                               "Reference or Barcode of the " | |||
|                                               "Product")) | |||
|                         if self.method == 'update': | |||
|                             vals = { | |||
|                                 'default_code': row_vals[2], | |||
|                                 'name': row_vals[1], | |||
|                                 'image_1920': link, | |||
|                                 'sale_ok': row_vals[3], | |||
|                                 'purchase_ok': row_vals[4], | |||
|                                 'detailed_type': detailed, | |||
|                                 'categ_id': category, | |||
|                                 'uom_id': uom, | |||
|                                 'uom_po_id': po_uom, | |||
|                                 'taxes_id': [tax], | |||
|                                 'supplier_taxes_id': [supplier_tax], | |||
|                                 'description_sale': row_vals[11], | |||
|                                 'invoice_policy': invoicing_type, | |||
|                                 'list_price': row_vals[13], | |||
|                                 'standard_price': row_vals[14], | |||
|                                 'weight': row_vals[19], | |||
|                                 'volume': row_vals[20], | |||
|                             } | |||
|                             if link: | |||
|                                 vals.update({'image_1920': link}) | |||
|                             product = self.env['product.template'].search( | |||
|                                 [('barcode', '=', row_vals[18])]) | |||
|                             if product: | |||
|                                 product.write(vals) | |||
|                             else: | |||
|                                 product = self.env['product.template'].search( | |||
|                                     [('default_code', '=', row_vals[2])]) | |||
|                                 if product: | |||
|                                     product.write(vals) | |||
|                                 else: | |||
|                                     raise UserError( | |||
|                                         _("Please ensure that product " | |||
|                                               "having the" | |||
|                                               "contains Internal reference or " | |||
|                                               "Barcode to with your file")) | |||
|                         else: | |||
|                             if self.method == 'update_product': | |||
|                                 vals = { | |||
|                                     'default_code': row_vals[2], | |||
|                                     'name': row_vals[1], | |||
|                                     'image_1920': link, | |||
|                                     'sale_ok': row_vals[3], | |||
|                                     'purchase_ok': row_vals[4], | |||
|                                     'detailed_type': detailed, | |||
|                                     'categ_id': category, | |||
|                                     'uom_id': uom, | |||
|                                     'uom_po_id': po_uom, | |||
|                                     'taxes_id': [tax], | |||
|                                     'supplier_taxes_id': [supplier_tax], | |||
|                                     'supplier_taxes_id': [(6, 0, [supplier_tax])], | |||
|                                     'description_sale': row_vals[11], | |||
|                                     'invoice_policy': invoicing_type, | |||
|                                     'lst_price': row_vals[13], | |||
|                                     'standard_price': row_vals[14], | |||
|                                     'weight': row_vals[19], | |||
|                                     'volume': row_vals[20], | |||
|                                 } | |||
|                                 if link: | |||
|                                     vals.update({'image_1920': link}) | |||
|                                 product = self.env['product.product'].search( | |||
|                                     [('barcode', '=', row_vals[18])]) | |||
|                                 if product: | |||
|                                     product.write(vals) | |||
|                                 else: | |||
|                                     product = self.env[ | |||
|                                         'product.product'].search( | |||
|                                         [('default_code', '=', row_vals[2])]) | |||
|                                     if product: | |||
|                                         product.write(vals) | |||
|                                     else: | |||
|                                         raise UserError( | |||
|                                             _("Please ensure that product " | |||
|                                               "having the" | |||
|                                               "contains Internal reference or " | |||
|                                               "Barcode to with your file.")) | |||
|                             else: | |||
|                                 vals = { | |||
|                                     'default_code': row_vals[2], | |||
|                                     'name': row_vals[1], | |||
|                                     'image_1920': link, | |||
|                                     'sale_ok': row_vals[3], | |||
|                                     'purchase_ok': row_vals[4], | |||
|                                     'detailed_type': detailed, | |||
|                                     'categ_id': category, | |||
|                                     'uom_id': uom, | |||
|                                     'uom_po_id': po_uom, | |||
|                                     'taxes_id': [tax], | |||
|                                     'supplier_taxes_id': [supplier_tax], | |||
|                                     'description_sale': row_vals[11], | |||
|                                     'invoice_policy': invoicing_type, | |||
|                                     'list_price': row_vals[13], | |||
|                                     'standard_price': row_vals[14], | |||
|                                     'weight': row_vals[19], | |||
|                                     'volume': row_vals[20], | |||
| 
 | |||
|                                 } | |||
|                                 product = self.env['product.template'].create( | |||
|                                     vals) | |||
|                         values = [] | |||
|                         for row_val in row_vals[15].split(','): | |||
|                             pr_attribute = self.env['product.attribute'].search( | |||
|                                 [('name', '=', row_val)]).id | |||
|                             if pr_attribute: | |||
|                                 attribute = pr_attribute | |||
|                             else: | |||
|                                 raise UserError( | |||
|                                     _("Please update a valid attribute and " | |||
|                                       "values")) | |||
|                             values.append({'attribute': attribute}) | |||
|                             for row in row_vals[16].split(','): | |||
|                                 attri_values = self.env[ | |||
|                                     'product.attribute.value'].search( | |||
|                                     [('attribute_id', '=', attribute), | |||
|                                      ('name', '=', row)]).ids | |||
|                                 if len(attri_values) != 0: | |||
|                                     values.extend({attri_values[0]}) | |||
|                         variant = {} | |||
|                         mylist = [] | |||
|                         for val in values: | |||
|                             if isinstance(val, dict): | |||
|                                 variant = val | |||
|                                 variant['attribut_value'] = [] | |||
|                             else: | |||
|                                 variant['attribut_value'].extend([val]) | |||
|                             if variant in mylist: | |||
|                                 pass | |||
|                             else: | |||
|                                 mylist.append(variant) | |||
|                         for lst in mylist: | |||
|                             val = { | |||
|                                 'product_tmpl_id': product.id, | |||
|                                 'attribute_id': lst['attribute'], | |||
|                                 'value_ids': lst['attribut_value'], | |||
|                             } | |||
|                             self.env['product.template.attribute.line'].create( | |||
|                                 val) | |||
|             elif self.import_file == 'csv': | |||
|                 keys = ['Unique Identifier', 'Name', 'Internal Reference', | |||
|                         'Can be sold', 'Can be Purchased', 'Product Type', | |||
|                         'Category', 'Unit of Measure', | |||
|                         'Purchase Unit of Measure', | |||
|                         'Customer Taxes', 'Vendor Taxes', | |||
|                         'Description for customers', 'Invoicing Policy', | |||
|                         'Sales Price', 'Cost', 'Variant Attributes', | |||
|                         'Attribute Values', 'Internal Reference', 'Barcode', | |||
|                         'Weight', 'Volume', 'Qty On hand', | |||
|                         'Responsible', 'image', 'Char', 'Many2many', 'Many2one', | |||
|                         'Integer'] | |||
|                 try: | |||
|                     files = base64.b64decode(self.file) | |||
|                     data = io.StringIO(files.decode("utf-8")) | |||
|                     data.seek(0) | |||
|                     file_reader = [] | |||
|                     csv_reader = csv.reader(data, delimiter=',') | |||
|                     file_reader.extend(csv_reader) | |||
|                 except: | |||
|                     raise UserError(_("File not Valid")) | |||
|                 for file in range(len(file_reader)): | |||
|                     field = list(map(str, file_reader[file])) | |||
|                     values = dict(zip(keys, field)) | |||
|                     if file >= 1: | |||
|                         pro_categ = self.env['product.category'].search( | |||
|                             [('complete_name', '=', values['Category'])]).id | |||
|                         if pro_categ: | |||
|                             pro_category = pro_categ | |||
|                         else: | |||
|                             category = self.env['product.category'].create({ | |||
|                                 'name': values['Category'] | |||
|                             }) | |||
|                             pro_category = category.id | |||
|                         unit_uom = self.env['uom.uom'].search( | |||
|                             [('name', '=', values['Unit of Measure'])]).id | |||
|                         if unit_uom: | |||
|                             uom = unit_uom | |||
|                         else: | |||
|                             raise UserError(_("Invalid uom")) | |||
|                         po_uoms = self.env['uom.uom'].search( | |||
|                             [('name', '=', | |||
|                               values['Purchase Unit of Measure'])]).id | |||
|                         if po_uoms: | |||
|                             po_uom = po_uoms | |||
|                         else: | |||
|                             raise UserError(_("Invalid Product Uom")) | |||
|                         def calculate_tax_value(val): | |||
|                             if isinstance(val, float) and val < 1: | |||
|                                 return val * 100, f"{val * 100}%" | |||
|                             return val, val | |||
| 
 | |||
|                         def create_tax_record(name, amount, tax_type): | |||
|                             match = re.search(r'\d+', name) | |||
|                             amount = int(match.group()) if match else amount | |||
|                             return self.env['account.tax'].create({ | |||
|                                 'name': name, | |||
|                                 'amount': amount, | |||
|                                 'type_tax_use': tax_type, | |||
|                             }).id | |||
| 
 | |||
|                         account_val, account_name = calculate_tax_value( | |||
|                             values['Customer Taxes']) | |||
|                         supp_val, supp_name = calculate_tax_value(values['Vendor Taxes']) | |||
| 
 | |||
|                         account_tax = self.env['account.tax'].search( | |||
|                             [('name', '=', account_name), | |||
|                              ('type_tax_use', '=', 'sale')]).id | |||
|                         supp_tax = self.env['account.tax'].search( | |||
|                             [('name', '=', supp_name), | |||
|                              ('type_tax_use', '=', 'purchase')]).id | |||
| 
 | |||
|                         tax = account_tax if account_tax else create_tax_record( | |||
|                             account_name, account_val, 'sale') | |||
|                         supplier_tax = supp_tax if supp_tax else create_tax_record( | |||
|                             supp_name, supp_val, 'purchase') | |||
| 
 | |||
|                         kay_val_dict = dict( | |||
|                             self.env['product.template']._fields[ | |||
|                                 'detailed_type'].selection)  # here 'type' is field name | |||
|                         for key, val in kay_val_dict.items(): | |||
|                             if val == values['Product Type']: | |||
|                                 detailed = key | |||
|                         kay_val_dict = dict( | |||
|                             self.env['product.template']._fields[ | |||
|                                 'invoice_policy'].selection)  # here 'type' is field name | |||
|                         for key, val in kay_val_dict.items(): | |||
|                             if val == values['Invoicing Policy']: | |||
|                                 invoicing_type = key | |||
|                         if "http://" in values['image'] or "https://" in values[ | |||
|                             'image']: | |||
|                             link = base64.b64encode(requests.get( | |||
|                                 values['image'].strip()).content).replace(b"\n", | |||
|                                                                           b"") | |||
|                         elif "/home" in values['image']: | |||
|                             if os.path.exists(values['image']): | |||
|                                 with open(values['image'], 'rb') as file_image: | |||
|                                     link = base64.b64encode(file_image.read()) | |||
| 
 | |||
|                         if file_reader[0][24] or file_reader[0][25] or \ | |||
|                                 file_reader[0][26]: | |||
|                             model = self.env['ir.model']._get_id( | |||
|                                 'product.template') | |||
|                             self.env['ir.model.fields'].create({ | |||
|                                 'model_id': model, | |||
|                                 'name': file_reader[0][24], | |||
|                                 'field_description': | |||
|                                     file_reader[0][24].split('_')[ | |||
|                                         2].upper(), | |||
|                                 'ttype': file_reader[0][24].split('_')[1], | |||
|                             }) | |||
|                             inherit_id = self.env.ref( | |||
|                                 'product.product_template_only_form_view') | |||
|                             arch_base = _('<?xml version="1.0"?>' | |||
|                                           '<data>' | |||
|                                           '<field name="%s" position="%s">' | |||
|                                           '<field name="%s"/>' | |||
|                                           '</field>' | |||
|                                           '</data>') % ( | |||
|                                             'detailed_type', 'after', | |||
|                                             file_reader[0][24]) | |||
|                             self.env['ir.ui.view'].sudo().create( | |||
|                                 {'name': 'product.dynamic.fields', | |||
|                                  'type': 'form', | |||
|                                  'model': 'product.template', | |||
|                                  'mode': 'extension', | |||
|                                  'inherit_id': inherit_id.id, | |||
|                                  'arch_base': arch_base, | |||
|                                  'active': True}) | |||
|                             self.env['ir.model.fields'].create({ | |||
|                                 'model_id': model, | |||
|                                 'name': file_reader[0][25], | |||
|                                 'field_description': | |||
|                                     file_reader[0][25].split('_')[ | |||
|                                         2].upper(), | |||
|                                 'relation': values['Many2many'].split(':')[0], | |||
|                                 'ttype': file_reader[0][25].split('_')[1], | |||
|                             }) | |||
|                             inherit_id = self.env.ref( | |||
|                                 'product.product_template_only_form_view') | |||
|                             arch_base = _('<?xml version="1.0"?>' | |||
|                                           '<data>' | |||
|                                           '<field name="%s" position="%s">' | |||
|                                           '<field name="%s" widget="%s"/>' | |||
|                                           '</field>' | |||
|                                           '</data>') % ( | |||
|                                             'taxes_id', 'after', | |||
|                                             file_reader[0][25], | |||
|                                             'many2many_tags') | |||
|                             self.env['ir.ui.view'].sudo().create( | |||
|                                 {'name': 'product.many2many.fields', | |||
|                                  'type': 'form', | |||
|                                  'model': 'product.template', | |||
|                                  'mode': 'extension', | |||
|                                  'inherit_id': inherit_id.id, | |||
|                                  'arch_base': arch_base, | |||
|                                  'active': True}) | |||
|                             val = values['Many2many'].split(':')[0] | |||
|                             partner = [ | |||
|                                 values['Many2many'].split(':')[1].split(',')] | |||
|                             vals_many = [] | |||
|                             for part in partner[0]: | |||
|                                 many2many = self.env[val].search( | |||
|                                     [('name', '=', part)]).id | |||
|                                 if many2many: | |||
|                                     vals_many.append(many2many) | |||
|                                 else: | |||
|                                     partner = self.env[val].create({ | |||
|                                         'name': part, | |||
|                                     }) | |||
|                                     vals_many.append(partner) | |||
|                             self.env['ir.model.fields'].create({ | |||
|                                 'model_id': model, | |||
|                                 'name': file_reader[0][26], | |||
|                                 'field_description': | |||
|                                     file_reader[0][26].split('_')[ | |||
|                                         2].upper(), | |||
|                                 'relation': values['Many2one'].split(':')[0], | |||
|                                 'ttype': file_reader[0][26].split('_')[1], | |||
|                             }) | |||
|                             inherit_id = self.env.ref( | |||
|                                 'product.product_template_only_form_view') | |||
|                             arch_base = _('<?xml version="1.0"?>' | |||
|                                           '<data>' | |||
|                                           '<field name="%s" position="%s">' | |||
|                                           '<field name="%s" widget="%s"/>' | |||
|                                           '</field>' | |||
|                                           '</data>') % ( | |||
|                                             'categ_id', 'after', | |||
|                                             file_reader[0][26], | |||
|                                             'many2one_tags') | |||
|                             self.env['ir.ui.view'].sudo().create( | |||
|                                 {'name': 'product.many2one.fields', | |||
|                                  'type': 'form', | |||
|                                  'model': 'product.template', | |||
|                                  'mode': 'extension', | |||
|                                  'inherit_id': inherit_id.id, | |||
|                                  'arch_base': arch_base, | |||
|                                  'active': True}) | |||
|                             many2one = values['Many2one'].split(':')[0] | |||
|                             value = [values['Many2one'].split(':')[1]] | |||
|                             vals_one = [] | |||
|                             for vals in value: | |||
|                                 many2one_value = self.env[many2one].search( | |||
|                                     [('name', '=', vals)]).id | |||
|                                 if many2one_value: | |||
|                                     vals_one.append(many2one_value) | |||
|                                 else: | |||
|                                     value = self.env[many2one].create({ | |||
|                                         'name': vals, | |||
|                                     }) | |||
|                                     vals_one.append(value) | |||
|                             if not values['Internal Reference'] or not values[ | |||
|                                 'Barcode']: | |||
|                                 raise UserError( | |||
|                                     _("File Must  Contain Internal Reference " | |||
|                                       "or Barcode of the Product")) | |||
|                             if self.method == 'update': | |||
|                                 vals = { | |||
|                                     'default_code': values[ | |||
|                                         'Internal Reference'] if | |||
|                                     values['Internal Reference'] else False, | |||
|                                     'name': values['Name'], | |||
|                                     'image_1920': link, | |||
|                                     'sale_ok': values['Can be sold'], | |||
|                                     'purchase_ok': values['Can be Purchased'], | |||
|                                     'detailed_type': detailed, | |||
|                                     'categ_id': pro_category, | |||
|                                     'uom_id': uom, | |||
|                                     'uom_po_id': po_uom, | |||
|                                     'barcode': values['Barcode'] if values[ | |||
|                                         'Barcode'] else False, | |||
|                                     'taxes_id': [tax], | |||
|                                     'supplier_taxes_id': [supplier_tax], | |||
|                                     'description_sale': values[ | |||
|                                         'Description for customers'], | |||
|                                     'invoice_policy': invoicing_type, | |||
|                                     'list_price': values['Sales Price'], | |||
|                                     'standard_price': values['Cost'], | |||
|                                     'weight': values['Weight'], | |||
|                                     'volume': values['Volume'], | |||
|                                 } | |||
|                                 if link: | |||
|                                     vals.update({'image_1920': link}) | |||
|                                 product = self.env[ | |||
|                                     'product.template'].search( | |||
|                                     [('barcode', '=', values['Barcode'])]) | |||
|                                 if len(product): | |||
|                                     product.write(vals) | |||
|                                 else: | |||
|                                     product = self.env[ | |||
|                                         'product.template'].search( | |||
|                                         [('default_code', '=', | |||
|                                           values['Internal Reference'])]) | |||
|                                     if product: | |||
|                                         product.write(vals) | |||
|                                     else: | |||
|                                         raise UserError( | |||
|                                             _("Please ensure that product " | |||
|                                               "having the" | |||
|                                               "contains Internal reference or " | |||
|                                               "Barcode to with your file.")) | |||
|                             elif self.method == 'update_product': | |||
|                                 vals = { | |||
|                                     'default_code': values[ | |||
|                                         'Internal Reference'] if | |||
|                                     values['Internal Reference'] else False, | |||
|                                     'name': values['Name'], | |||
|                                     'image_1920': link, | |||
|                                     'sale_ok': values['Can be sold'], | |||
|                                     'purchase_ok': values['Can be Purchased'], | |||
|                                     'detailed_type': detailed, | |||
|                                     'categ_id': pro_category, | |||
|                                     'uom_id': uom, | |||
|                                     'uom_po_id': po_uom, | |||
|                                     'barcode': values['Barcode'] if values[ | |||
|                                         'Barcode'] else False, | |||
|                                     'taxes_id': [tax], | |||
|                                     'supplier_taxes_id': [supplier_tax], | |||
|                                     'description_sale': values[ | |||
|                                         'Description for customers'], | |||
|                                     'invoice_policy': invoicing_type, | |||
|                                     'lst_price': values['Sales Price'], | |||
|                                     'standard_price': values['Cost'], | |||
|                                     'weight': values['Weight'], | |||
|                                     'volume': values['Volume'], | |||
|                                 } | |||
|                                 if link: | |||
|                                     vals.update({'image_1920': link}) | |||
|                                 product = self.env[ | |||
|                                     'product.product'].search( | |||
|                                     [('barcode', '=', values['Barcode'])]) | |||
|                                 if len(product): | |||
|                                     product.write(vals) | |||
|                                 else: | |||
|                                     product = self.env[ | |||
|                                         'product.product'].search( | |||
|                                         [('default_code', '=', | |||
|                                           values['Internal Reference'])]) | |||
|                                     if product: | |||
|                                         product.write(vals) | |||
|                                     else: | |||
|                                         raise UserError( | |||
|                                             _("Please ensure that product " | |||
|                                               "having the" | |||
|                                               "contains Internal reference or " | |||
|                                               "Barcode to with your file.")) | |||
|                             else: | |||
|                                 vals = { | |||
|                                     'default_code': values[ | |||
|                                         'Internal Reference'] if | |||
|                                     values['Internal Reference'] else False, | |||
|                                     'name': values['Name'], | |||
|                                     'image_1920': link, | |||
|                                     'sale_ok': values['Can be sold'], | |||
|                                     'purchase_ok': values['Can be Purchased'], | |||
|                                     'detailed_type': detailed, | |||
|                                     'categ_id': pro_category, | |||
|                                     'uom_id': uom, | |||
|                                     'uom_po_id': po_uom, | |||
|                                     'barcode': values['Barcode'] if values[ | |||
|                                         'Barcode'] else False, | |||
|                                     'taxes_id': [tax], | |||
|                                     'supplier_taxes_id': [supplier_tax], | |||
|                                     'description_sale': values[ | |||
|                                         'Description for customers'], | |||
|                                     'invoice_policy': invoicing_type, | |||
|                                     'list_price': values['Sales Price'], | |||
|                                     'standard_price': values['Cost'], | |||
|                                     'weight': values['Weight'], | |||
|                                     'volume': values['Volume'], | |||
|                                 } | |||
|                                 product = self.env['product.template'].create(vals) | |||
|                                 product.write({ | |||
|                                     file_reader[0][24]: values['Char'], | |||
|                                     file_reader[0][25]: vals_many[0], | |||
|                                     file_reader[0][26]: vals_one[0], | |||
|                                 }) | |||
|                             attribute_values = [] | |||
|                             for val_attribute in values[ | |||
|                                 'Variant Attributes'].split(','): | |||
|                                 attributes = self.env[ | |||
|                                     'product.attribute'].search( | |||
|                                     [('name', '=', val_attribute)]).id | |||
|                                 if attributes: | |||
|                                     attribute = attributes | |||
|                                 else: | |||
|                                     raise UserError( | |||
|                                         _("Please add a valid attribute and " | |||
|                                           "their values")) | |||
|                                 attribute_values.append( | |||
|                                     {'attribute': attribute}) | |||
|                                 for value in values['Attribute Values'].split( | |||
|                                         ','): | |||
|                                     attri_values = self.env[ | |||
|                                         'product.attribute.value'].search( | |||
|                                         [('attribute_id', '=', attribute), | |||
|                                          ('name', '=', value)]).ids | |||
|                                     if len(attri_values) != 0: | |||
|                                         attribute_values.extend( | |||
|                                             {attri_values[0]}) | |||
|                             variant = {} | |||
|                             mylist = [] | |||
|                             for attribute in attribute_values: | |||
|                                 if isinstance(attribute, dict): | |||
|                                     variant = attribute | |||
|                                     variant['attribut_value'] = [] | |||
|                                 else: | |||
|                                     variant['attribut_value'].extend( | |||
|                                         [attribute]) | |||
|                                 if variant in mylist: | |||
|                                     pass | |||
|                                 else: | |||
|                                     mylist.append(variant) | |||
|                             for list in mylist: | |||
|                                 val = { | |||
|                                     'product_tmpl_id': product.id, | |||
|                                     'attribute_id': list['attribute'], | |||
|                                     'value_ids': list['attribut_value'], | |||
|                                 } | |||
|                                 self.env[ | |||
|                                     'product.template.attribute.line'].create( | |||
|                                     val) | |||
|                             return { | |||
|                                 'type': 'ir.actions.client', | |||
|                                 'tag': 'reload', | |||
|                             } | |||
|         except UserError as e: | |||
|             raise UserError(str(e)) | |||
| @ -0,0 +1,43 @@ | |||
| <?xml version="1.0" encoding="UTF-8" ?> | |||
| <odoo> | |||
|     <!-- This is used to import the /export the product--> | |||
|     <record id="import_product_variant_action" model="ir.actions.act_window"> | |||
|         <field name="name">Product Variant</field> | |||
|         <field name="type">ir.actions.act_window</field> | |||
|         <field name="res_model">import.product.variant</field> | |||
|         <field name="view_mode">form</field> | |||
|         <field name="target">new</field> | |||
|     </record> | |||
| 
 | |||
|     <record id="import_product_variant_view_form" model="ir.ui.view"> | |||
|         <field name="name">import.product.variant.view.form</field> | |||
|         <field name="model">import.product.variant</field> | |||
|         <field name="type">form</field> | |||
|         <field name="arch" type="xml"> | |||
|             <form> | |||
|                 <sheet> | |||
|                     <group> | |||
|                         <field name="import_file" widget="radio"/> | |||
|                         <field name="method" widget="radio"/> | |||
|                         <field name="file"/> | |||
|                     </group> | |||
|                 </sheet> | |||
|                 <footer> | |||
|                     <button string="Import" type="object" | |||
|                             name="action_import_product_variant" class="btn-primary"/> | |||
|                     <button string="Cancel" special="cancel" | |||
|                             class="btn-secondary"/> | |||
|                 </footer> | |||
|             </form> | |||
|         </field> | |||
|     </record> | |||
| 
 | |||
|     <!--Import/export wizard menu--> | |||
|     <menuitem id="import_product_variant_menu_action" | |||
|               name="Import Product Variant" | |||
|               parent="stock.menu_stock_inventory_control" | |||
|               action="import_product_variant_action" | |||
|               groups="product_variant_import.product_variant_access" | |||
|               sequence="3"> | |||
|     </menuitem> | |||
| </odoo> | |||