| @ -0,0 +1,66 @@ | |||
| .. image:: https://img.shields.io/badge/license-AGPL--3-blue.svg | |||
|     :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html | |||
|     :alt: License: AGPL-3 | |||
| 
 | |||
| POS Birthday Discount | |||
| ===================== | |||
| 
 | |||
| This module aims in providing special discount for customers in POS on their respective birthdate. | |||
| 
 | |||
| Installation | |||
| ============ | |||
| 
 | |||
| - www.odoo.com/documentation/17.0/setup/install.html | |||
| - Install our custom addon | |||
| 
 | |||
| Configuration | |||
| ============= | |||
| 
 | |||
| * After installing the module, go to 'Point of Sale' module settings. Under 'Pricing' section enable the field | |||
|   'Birthday Discount' and set the percentage of discount. | |||
| * Enable the 'Only Apply the discount on the first order on Birthday' field to apply discount only for the first order | |||
|   of customer birthday. Save settings. | |||
| * Set the customer birthday in the contact form.( A new field 'Birth Date' will be found ) | |||
| * Open POS session | |||
| * Create order for the customers and the discount configured in the settings will be automatically applied to the | |||
|   products if the current date is the birthdate of customer. | |||
| 
 | |||
| Features | |||
| ======== | |||
| 
 | |||
| * Special discount for products in POS on customer birthday. | |||
| * Discount can be configured to apply only for first order on birthday. | |||
| * Discount will be automatically applied to products while creating pos order. | |||
| * Birthday greeting label will be shown near customer name in POS session. | |||
| * New field 'Birth Date' is added in customer form. | |||
| 
 | |||
| License | |||
| ======= | |||
| GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) | |||
| (https://www.gnu.org/licenses/agpl-3.0-standalone.html) | |||
| 
 | |||
| Credits | |||
| ======= | |||
| Developer: (V16) Rahul C K,(V17) Farook Al Ameen 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 https://www.cybrosys.com. | |||
| 
 | |||
| Further information | |||
| =================== | |||
| HTML Description: `<static/description/index.html>`__ | |||
| @ -0,0 +1,22 @@ | |||
| # -*- coding: utf-8 -*- | |||
| ############################################################################### | |||
| # | |||
| #    Cybrosys Technologies Pvt. Ltd. | |||
| # | |||
| #    Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) | |||
| #    Author: Farook Al Ameen (odoo@cybrosys.com) | |||
| # | |||
| #    You can modify it under the terms of the GNU AFFERO | |||
| #    GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. | |||
| # | |||
| #    You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE | |||
| #    (AGPL v3) along with this program. | |||
| #    If not, see <http://www.gnu.org/licenses/>. | |||
| # | |||
| ############################################################################### | |||
| from . import models | |||
| @ -0,0 +1,51 @@ | |||
| # -*- coding: utf-8 -*- | |||
| ############################################################################### | |||
| # | |||
| #    Cybrosys Technologies Pvt. Ltd. | |||
| # | |||
| #    Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) | |||
| #    Author: Farook Al Ameen (odoo@cybrosys.com) | |||
| # | |||
| #    You can modify it under the terms of the GNU AFFERO | |||
| #    GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. | |||
| # | |||
| #    You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE | |||
| #    (AGPL v3) along with this program. | |||
| #    If not, see <http://www.gnu.org/licenses/>. | |||
| # | |||
| ############################################################################### | |||
| { | |||
|     'name': "POS Birthday Discount", | |||
|     'version': '17.0.1.0.0', | |||
|     'category': 'Point of Sale', | |||
|     'summary': """Extra discount on customer birthday""", | |||
|     'description': """Customers get extra discount for their orders in POS in  | |||
|      odoo on their birthdate.""", | |||
|     'author': "Cybrosys Techno Solutions", | |||
|     'company': "Cybrosys Techno Solutions", | |||
|     'maintainer': "Cybrosys Techno Solutions", | |||
|     'website': "https://www.cybrosys.com", | |||
|     'depends': ['base', 'point_of_sale'], | |||
|     'data': [ | |||
|         'views/res_partner_views.xml', | |||
|         'views/res_config_settings_views.xml' | |||
|     ], | |||
|     'assets': { | |||
|         'point_of_sale._assets_pos': [ | |||
|             'pos_customer_birthday_discount/static/src/xml/ActionpadWidget.xml', | |||
|             'pos_customer_birthday_discount/static/src/js/birthday_discount.js', | |||
|             'pos_customer_birthday_discount/static/src/js/models.js', | |||
|             'pos_customer_birthday_discount/static/src/xml/Orderline.xml', | |||
|         ] | |||
|     }, | |||
|     'images': ['static/description/banner.png'], | |||
|     'license': 'AGPL-3', | |||
|     'installable': True, | |||
|     'auto_install': False, | |||
|     'application': False, | |||
| } | |||
| @ -0,0 +1,7 @@ | |||
| ## Module <pos_customer_birthday_discount> | |||
| 
 | |||
| #### 09.09.2024 | |||
| #### Version 17.0.1.0.0 | |||
| #### ADD | |||
| 
 | |||
| - Initial commit for POS Birthday Discount | |||
| @ -0,0 +1,25 @@ | |||
| # -*- coding: utf-8 -*- | |||
| ############################################################################### | |||
| # | |||
| #    Cybrosys Technologies Pvt. Ltd. | |||
| # | |||
| #    Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) | |||
| #    Author: Farook Al Ameen(odoo@cybrosys.com) | |||
| # | |||
| #    You can modify it under the terms of the GNU AFFERO | |||
| #    GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. | |||
| # | |||
| #    You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE | |||
| #    (AGPL v3) along with this program. | |||
| #    If not, see <http://www.gnu.org/licenses/>. | |||
| # | |||
| ############################################################################### | |||
| from . import pos_config | |||
| from . import pos_session | |||
| from . import res_config_settings | |||
| from . import res_partner | |||
| @ -0,0 +1,73 @@ | |||
| # -*- coding: utf-8 -*- | |||
| ############################################################################### | |||
| # | |||
| #    Cybrosys Technologies Pvt. Ltd. | |||
| # | |||
| #    Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) | |||
| #    Author: Farook Al Ameen (odoo@cybrosys.com) | |||
| # | |||
| #    You can modify it under the terms of the GNU AFFERO | |||
| #    GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. | |||
| # | |||
| #    You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE | |||
| #    (AGPL v3) along with this program. | |||
| #    If not, see <http://www.gnu.org/licenses/>. | |||
| # | |||
| ############################################################################### | |||
| from odoo import api, fields, models | |||
| 
 | |||
| 
 | |||
| class PosConfig(models.Model): | |||
|     """Set the Birthday discount fields in pos_config model""" | |||
|     _inherit = 'pos.config' | |||
| 
 | |||
|     birthday_discount = fields.Boolean(string="Birthday Discount", | |||
|                                        help="Enable this field to activate " | |||
|                                             "birthday discount") | |||
|     discount = fields.Float(string="Discount", help="Percentage of birthday " | |||
|                                                     "discount") | |||
|     first_order = fields.Boolean(string="Only Apply the discount on the first " | |||
|                                         "order on Birthday", | |||
|                                  help="Restrict discount to apply only on " | |||
|                                       "first order on birthday") | |||
| 
 | |||
|     @api.model | |||
|     def check_pos_order(self, partner, first_order): | |||
|         """Check if it is the birthday of partner and if no other pos order | |||
|         is created by partner on birthday(only if these fields are enabled in | |||
|         settings). | |||
|         :param partner: id of the partner | |||
|         :param first_order: Field 'apply only on first order' is | |||
|         enabled in settings or not. | |||
|         :return: True value if current day is partner birthday and if it is | |||
|         not the first order of partner. | |||
|         """ | |||
|         data = {'order': 'False'} | |||
|         partner_id = self.env['res.partner'].browse(partner) | |||
| 
 | |||
|         # Extract the day and month from the partner's birthdate | |||
|         if partner_id.birthdate: | |||
|             birth_day = partner_id.birthdate.day | |||
|             birth_month = partner_id.birthdate.month | |||
| 
 | |||
|             # Extract the current day and month | |||
|             today = fields.Date.today() | |||
|             today_day = today.day | |||
|             today_month = today.month | |||
| 
 | |||
|             # Check if the current day and month match the birthdate | |||
|             if birth_day == today_day and birth_month == today_month: | |||
|                 data['birthday'] = 'True' | |||
| 
 | |||
|                 # If first_order is enabled, check if the partner has already placed an order today | |||
|                 if first_order: | |||
|                     for rec in self.env['pos.order'].search([('partner_id', '=', partner)]): | |||
|                         if today == rec.date_order.date(): | |||
|                             data['order'] = 'True' | |||
|                             break | |||
|         return data | |||
| @ -0,0 +1,33 @@ | |||
| # -*- coding: utf-8 -*- | |||
| ############################################################################### | |||
| # | |||
| #    Cybrosys Technologies Pvt. Ltd. | |||
| # | |||
| #    Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) | |||
| #    Author: Farook Al Ameen (odoo@cybrosys.com) | |||
| # | |||
| #    You can modify it under the terms of the GNU AFFERO | |||
| #    GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. | |||
| # | |||
| #    You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE | |||
| #    (AGPL v3) along with this program. | |||
| #    If not, see <http://www.gnu.org/licenses/>. | |||
| # | |||
| ############################################################################### | |||
| from odoo import models | |||
| 
 | |||
| 
 | |||
| class PosSession(models.Model): | |||
|     """""Load the field to pos.session""""" | |||
|     _inherit = 'pos.session' | |||
| 
 | |||
|     def _loader_params_res_partner(self): | |||
|         """""Load the field birthdate to pos.session""""" | |||
|         result = super()._loader_params_res_partner() | |||
|         result['search_params']['fields'].append('birthdate') | |||
|         return result | |||
| @ -0,0 +1,43 @@ | |||
| # -*- coding: utf-8 -*- | |||
| ############################################################################### | |||
| # | |||
| #    Cybrosys Technologies Pvt. Ltd. | |||
| # | |||
| #    Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) | |||
| #    Author: Farook Al Ameen (odoo@cybrosys.com) | |||
| # | |||
| #    You can modify it under the terms of the GNU AFFERO | |||
| #    GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. | |||
| # | |||
| #    You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE | |||
| #    (AGPL v3) along with this program. | |||
| #    If not, see <http://www.gnu.org/licenses/>. | |||
| # | |||
| ############################################################################### | |||
| from odoo import fields, models | |||
| 
 | |||
| 
 | |||
| class ResConfigSettings(models.TransientModel): | |||
|     """This is for validating the birthdate""" | |||
|     _inherit = 'res.config.settings' | |||
| 
 | |||
|     birthday_discount = fields.Boolean(string="Birthday Discount", | |||
|                                        related="pos_config_id." | |||
|                                                "birthday_discount", | |||
|                                        help="Enable this field to enable " | |||
|                                             "birthday discount feature", | |||
|                                        readonly=False) | |||
|     discount = fields.Float(string="Discount", | |||
|                             help="Percentage of birthday discount", | |||
|                             related="pos_config_id.discount", readonly=False) | |||
|     first_order = fields.Boolean(string="Only Apply the discount on the first " | |||
|                                         "order on Birthday", | |||
|                                  help="Restrict discount to apply only on " | |||
|                                       "first order on birthday", | |||
|                                  related="pos_config_id.first_order", | |||
|                                  readonly=False) | |||
| @ -0,0 +1,30 @@ | |||
| # -*- coding: utf-8 -*- | |||
| ############################################################################### | |||
| # | |||
| #    Cybrosys Technologies Pvt. Ltd. | |||
| # | |||
| #    Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) | |||
| #    Author: Farook Al Ameen (odoo@cybrosys.com) | |||
| # | |||
| #    You can modify it under the terms of the GNU AFFERO | |||
| #    GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. | |||
| # | |||
| #    You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE | |||
| #    (AGPL v3) along with this program. | |||
| #    If not, see <http://www.gnu.org/licenses/>. | |||
| # | |||
| ############################################################################### | |||
| from odoo import models, fields | |||
| 
 | |||
| 
 | |||
| class ResPartner(models.Model): | |||
|     """New field birthdate is added in res_partner""" | |||
|     _inherit = 'res.partner' | |||
| 
 | |||
|     birthdate = fields.Date(string="Birth Date", | |||
|                             help="Birthdate of the partner") | |||
| After Width: | Height: | Size: 36 KiB | 
| 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.1 KiB | 
| After Width: | Height: | Size: 1.2 KiB | 
| After Width: | Height: | Size: 673 B | 
| After Width: | Height: | Size: 11 KiB | 
| 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: 3.2 KiB | 
| After Width: | Height: | Size: 589 B | 
| After Width: | Height: | Size: 3.4 KiB | 
| After Width: | Height: | Size: 565 B | 
| After Width: | Height: | Size: 1.7 KiB | 
| After Width: | Height: | Size: 2.3 KiB | 
| After Width: | Height: | Size: 967 B | 
| After Width: | Height: | Size: 26 KiB | 
| After Width: | Height: | Size: 1.6 KiB | 
| After Width: | Height: | Size: 43 KiB | 
| After Width: | Height: | Size: 1.4 KiB | 
| After Width: | Height: | Size: 3.8 KiB | 
| After Width: | Height: | Size: 4.0 KiB | 
| After Width: | Height: | Size: 38 KiB | 
| After Width: | Height: | Size: 5.0 KiB | 
| After Width: | Height: | Size: 4.3 KiB | 
| After Width: | Height: | Size: 46 KiB | 
| After Width: | Height: | Size: 44 KiB | 
| After Width: | Height: | Size: 86 KiB | 
| After Width: | Height: | Size: 48 KiB | 
| After Width: | Height: | Size: 82 KiB | 
| After Width: | Height: | Size: 86 KiB | 
| After Width: | Height: | Size: 40 KiB | 
| After Width: | Height: | Size: 50 KiB | 
| After Width: | Height: | Size: 205 KiB | 
| After Width: | Height: | Size: 169 KiB | 
| After Width: | Height: | Size: 171 KiB | 
| After Width: | Height: | Size: 159 KiB | 
| After Width: | Height: | Size: 82 KiB | 
| After Width: | Height: | Size: 13 KiB | 
| @ -0,0 +1,663 @@ | |||
| <!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:#875A7B !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;"> | |||
|                     POS Birthday Discount</h1> | |||
|                 <p class="my-3 mb-4" | |||
|                    style="max-width: 80%; font-weight: 400 !important; line-height: 32px; color: #718096;"> | |||
|                     Customers get Extra Discount for their Orders in Point Of Sale in Odoo on their | |||
|         Birthdate. | |||
|                 </p> | |||
|                 <div style="width: 80%; margin-top: 3rem;"> | |||
|                     <img src="assets/screenshots/hero.png" | |||
|                          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;"> | |||
|                                 Special discount for products in POS on customer birthday.</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;"> | |||
|                                  Discount will be automatically applied to products while creating pos order.</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;"> | |||
|                                 Discount Percentage can be set in POS settings.</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;"> | |||
|                                 New field 'Birth Date' is added in customer form.</p> | |||
|                         </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="px-3"> | |||
|                                 <h4 class="mt-2" | |||
|                                     style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> | |||
|                                     Point of sale.</h4> | |||
|                             </div> | |||
|                             <div class="row justify-content-center p-3 w-100 m-0"> | |||
|                                 <img src="assets/screenshots/1.png" | |||
|                                      class="img-responsive" width="100%" | |||
|                                      height="auto"> | |||
|                             </div> | |||
|                         </div> | |||
|                     </div> | |||
|                     <div class="col-lg-12 py-2" | |||
|                          style="padding: 1rem 4rem !important;"> | |||
|                         <div class="px-3"> | |||
|                                 <h4 class="mt-2" | |||
|                                     style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"> | |||
|                                     Point of sale Settings</h4> | |||
|                             </div> | |||
|                         <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/2.png" | |||
|                                      class="img-responsive" width="100%" | |||
|                                      height="auto"> | |||
|                             </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="px-3"> | |||
|                                 <h4 class="mt-2" | |||
|                                     style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"Point of sale Configuration> | |||
|                                 </h4> | |||
|                             </div> | |||
|                             <div class="row justify-content-center p-3 w-100 m-0"> | |||
|                                 <img src="assets/screenshots/3.png" | |||
|                                      class="img-responsive" width="100%" | |||
|                                      height="auto"> | |||
|                             </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="px-3"> | |||
|                                 <h4 class="mt-2" | |||
|                                     style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"Customer Form> | |||
|                                 </h4> | |||
|                             </div> | |||
|                             <div class="row justify-content-center p-3 w-100 m-0"> | |||
|                                 <img src="assets/screenshots/4.png" | |||
|                                      class="img-responsive" width="100%" | |||
|                                      height="auto"> | |||
|                             </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="px-3"> | |||
|                                 <h4 class="mt-2" | |||
|                                     style=" font-weight:600 !important; color:#282F33 !important; font-size:1.3rem !important"New POS Session> | |||
|                                 </h4> | |||
|                             </div> | |||
|                             <div class="row justify-content-center p-3 w-100 m-0"> | |||
|                                 <img src="assets/screenshots/5.png" | |||
|                                      class="img-responsive" width="100%" | |||
|                                      height="auto"> | |||
|                             </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 (1) 2.svg" | |||
|                                             alt="" | |||
|                                             width="16px"></span>Special discount for products in POS on customer birthday.. | |||
|                             </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 (1) 2.svg" | |||
|                                             alt="" | |||
|                                             width="16px"></span>Discount will be automatically applied to products while creating pos order. | |||
|                             </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 (1) 2.svg" | |||
|                                             alt="" | |||
|                                             width="16px"></span>Discount Percentage can be set in POS settings. | |||
|                             </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 (1) 2.svg" | |||
|                                             alt="" | |||
|                                             width="16px"></span>New field 'Birth Date' is added in customer form. | |||
|                             </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 | |||
|                                         17.0.1.0.0</span><span | |||
|                                     class="px-2">|</span><span | |||
|                                     style="color: #714B67;font-weight: 600;">Released on:28th November 2023</span> | |||
|                             </div> | |||
|                             <p class="m-0" | |||
|                                style=" color:#718096!important; font-size:1rem !important;line-height: 28px;"> | |||
| 
 | |||
|                                 Initial Commit for POS Dashboard.</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/invoice_format_editor/" 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"> | |||
| 
 | |||
|                                             </div> | |||
|                                             <p class="text-center pt-2 text-black font-weight-bold">Invoice Format Editor</p> | |||
|                                         </div> | |||
|                                     </a> | |||
|                                 </div> | |||
|                             </div> | |||
|                             <div class="col"> | |||
|                                 <div class="p-3"> | |||
|                                     <a href="https://apps.odoo.com/apps/modules/17.0/pos_book_order/" 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.png" alt="" width="100%" height="auto"> | |||
| 
 | |||
|                                             </div> | |||
|                                             <p class="text-center pt-2 text-black font-weight-bold">POS Booking Order</p> | |||
|                                         </div> | |||
|                                     </a> | |||
|                                 </div> | |||
|                             </div> | |||
|                             <div class="col"> | |||
|                                 <div class="p-3"> | |||
|                                     <a href="https://apps.odoo.com/apps/modules/17.0/pos_magnify_image/" 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"> | |||
| 
 | |||
|                                             </div> | |||
|                                             <p class="text-center pt-2 text-black font-weight-bold">POS Product Magnify Image</p> | |||
|                                         </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/pos_mrp_order/" 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.jpg" alt="" width="100%" height="auto"> | |||
| 
 | |||
|                                             </div> | |||
|                                             <p class="text-center pt-2 text-black font-weight-bold">Make MRP Orders from POS</p> | |||
|                                         </div> | |||
|                                     </a> | |||
|                                 </div> | |||
|                             </div> | |||
|                             <div class="col"> | |||
|                                 <div class="p-3"> | |||
|                                     <a href="https://apps.odoo.com/apps/modules/17.0/service_charges_pos/" 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"> | |||
| 
 | |||
|                                             </div> | |||
|                                             <p class="text-center pt-2 text-black font-weight-bold">Service Charges POS</p> | |||
|                                         </div> | |||
|                                     </a> | |||
|                                 </div> | |||
|                             </div> | |||
|                             <div class="col"> | |||
|                                 <div class="p-3"> | |||
|                                     <a href="https://apps.odoo.com/apps/modules/17.0/odoo_advanced_chatter/" 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"> | |||
|                                             </div> | |||
|                                             <p class="text-center pt-2 text-black font-weight-bold">Odoo Advanced Chatter</p> | |||
|                                         </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,74 @@ | |||
| /** @odoo-module */ | |||
| import { ActionpadWidget } from "@point_of_sale/app/screens/product_screen/action_pad/action_pad"; | |||
| import { patch } from "@web/core/utils/patch"; | |||
| import { useService } from "@web/core/utils/hooks"; | |||
| 
 | |||
| patch(ActionpadWidget.prototype, { | |||
| 
 | |||
|     setup() { | |||
|         super.setup(); | |||
|         this.orm = useService('orm'); | |||
|     }, | |||
| 
 | |||
|     get isBirthDay() { | |||
|         this.val = 0; | |||
|         var self = this; | |||
|         var isBirthday = false; | |||
| 
 | |||
|         if (this.pos.config.birthday_discount) { | |||
|             if (this.props.partner) { | |||
|                 const systemDate = new Date(); | |||
| 
 | |||
|                 // Extract day and month from the current system date
 | |||
|                 const todayMonth = systemDate.getMonth() + 1;  // months are zero-indexed, so January is 0
 | |||
|                 const todayDay = systemDate.getDate(); | |||
| 
 | |||
|                 var orderLines = self.pos.selectedOrder.orderlines; | |||
| 
 | |||
| 
 | |||
|                 // Extract day and month from the partner's birthdate
 | |||
|                 if (this.props.partner.birthdate) { | |||
|                     const birthDate = new Date(this.props.partner.birthdate); | |||
|                     const birthMonth = birthDate.getMonth() + 1; | |||
|                     const birthDay = birthDate.getDate(); | |||
| 
 | |||
|                     // Compare day and month (ignore year)
 | |||
|                     if (birthDay === todayDay && birthMonth === todayMonth) { | |||
|                         isBirthday = true; | |||
| 
 | |||
|                         // If it's the partner's birthday, proceed to apply discount
 | |||
|                         this.props.partner['birthday'] = 'True'; | |||
|                         this.first_order = self.pos.config.first_order; | |||
| 
 | |||
|                         // Call the backend method to check if it's the first order
 | |||
|                         this.check_pos_order().then(() => { | |||
|                             for (var order_id = 0; order_id < orderLines.length; order_id++) { | |||
|                                 // Apply the discount
 | |||
|                                 orderLines[order_id].set_discount(this.val); | |||
|                             } | |||
|                         }); | |||
|                     } else { | |||
|                         // Reset discount if it's not the birthday
 | |||
|                         for (var order_id = 0; order_id < orderLines.length; order_id++) { | |||
|                             orderLines[order_id].set_discount(0); | |||
|                         } | |||
|                     } | |||
|                 } else { | |||
|                      for (var order_id = 0; order_id < orderLines.length; order_id++) { | |||
|                             orderLines[order_id].set_discount(0); | |||
|                      } | |||
|                 } | |||
|             } | |||
|         } | |||
|         return isBirthday; | |||
|     }, | |||
| 
 | |||
|     async check_pos_order() { | |||
|         // Call the Python method to check if it is the partner's birthday and if it's their first order
 | |||
|         const result = await this.orm.call("pos.config", "check_pos_order", [this.props.partner.id, this.first_order]); | |||
|         if (result['birthday'] == 'True' && result['order'] == 'False') { | |||
|             // If the birthday is today and no order has been placed, set the discount
 | |||
|             this.val = Math.round(this.pos.config.discount * 100); | |||
|         } | |||
|     } | |||
| }); | |||
| @ -0,0 +1,44 @@ | |||
| /** @odoo-module */ | |||
| 
 | |||
| import { Orderline } from "@point_of_sale/app/store/models"; | |||
| import { patch } from "@web/core/utils/patch"; | |||
| import { parseFloat as oParseFloat } from "@web/views/fields/parsers"; | |||
| import { useService } from "@web/core/utils/hooks"; | |||
| 
 | |||
| 
 | |||
| patch(Orderline.prototype, { | |||
| 
 | |||
|     getDisplayData() { | |||
|         return { | |||
|             ...super.getDisplayData(), | |||
|             check_birthday: this.check_birthday, | |||
| 
 | |||
|         }; | |||
|     }, | |||
| 
 | |||
|         async set_discount(discount){ | |||
|         var disc; | |||
|         /**Original code of set_discount function*/ | |||
|         var parsed_discount = | |||
|             typeof discount === "number" | |||
|                 ? discount | |||
|                 : isNaN(parseFloat(discount)) | |||
|                 ? 0 | |||
|                 : oParseFloat("" + discount); | |||
|         disc = Math.min(Math.max(parsed_discount || 0, 0), 100); | |||
|         this.discount = disc; | |||
|         this.discountStr = "" + disc; | |||
|         /**Extended code for birthday discount functions*/ | |||
|         if(this.pos.config.birthday_discount && this.order.partner){ | |||
|             var partner_id = this.order.partner.id; | |||
|             var first_order = this.pos.config.first_order; | |||
|             const result = await this.env.services.orm.call("pos.config", "check_pos_order", [partner_id,first_order]) | |||
|                 if(result['birthday'] === 'True' && result['order'] === 'False'){ | |||
|                     this.check_birthday = true | |||
|                 } | |||
|                 else{ | |||
|                     this.check_birthday = false | |||
|                 } | |||
|         } | |||
|     } | |||
| }); | |||
| @ -0,0 +1,22 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | |||
| <!--Template for customer --> | |||
| <templates id="template"> | |||
|     <t t-name="pos_customer_birthday_discount.ActionpadWidget" t-inherit="point_of_sale.ActionpadWidget" t-inherit-mode="extension"> | |||
|         <xpath expr="." position="inside"> | |||
|             <style> | |||
|                 .birthday-message { | |||
|                     font-size: 0.8em; | |||
|                     color: black; | |||
|                     margin-top: 2px; | |||
|                 } | |||
|             </style> | |||
|         </xpath> | |||
|         <xpath expr="//button[hasclass('set-partner')]" position="inside"> | |||
|             <t t-if="props.partner"> | |||
|                 <t t-if="isBirthDay"> | |||
|                     <div class="birthday-message"> Happy Birthday </div> | |||
|                 </t> | |||
|             </t> | |||
|         </xpath> | |||
|     </t> | |||
| </templates> | |||
| @ -0,0 +1,56 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | |||
| <!--Orderline template--> | |||
| <templates xml:space="preserve"> | |||
|     <t t-name="Orderline" t-inherit="point_of_sale.Orderline"  t-inherit-mode="extension"> | |||
|         <xpath expr="//ul[hasclass('info-list')]" position="replace"> | |||
| 
 | |||
|             <ul class="info-list ms-2"> | |||
|                 <li class="price-per-unit"> | |||
|                     <em t-esc="line.qty" class="qty fst-normal fw-bolder me-1" /> <t t-if="line.unit" t-esc="line.unit" /> | |||
|                     <t t-if="line.price !== 0"> | |||
|                         x <s t-esc="line.oldUnitPrice" t-if="line.oldUnitPrice" /> | |||
|                         <t t-esc="line.unitPrice" /> <span t-if="line.unit"> / <t t-esc="line.unit" /></span> | |||
|                     </t> | |||
|                 </li> | |||
|                 <li t-if="line.price !== 0 and line.discount and line.discount !== '0'"> | |||
|                         <li class="info"> | |||
|                         With a | |||
|                         <em> | |||
|                             <t t-esc="line.discount"/>% | |||
|                         </em> | |||
|                         <t t-if="line.check_birthday"> | |||
|                             Birthday discount | |||
|                         </t> | |||
|                         <t t-else=""> | |||
|                             discount | |||
|                         </t> | |||
| 
 | |||
|                         </li> | |||
|                 </li> | |||
|                 <t t-slot="default" /> | |||
|                 <li t-if="line.customerNote" class="customer-note w-100 p-2 my-1 rounded text-break text-bg-warning text-warning bg-opacity-25"> | |||
|                     <i class="fa fa-sticky-note me-1" role="img" aria-label="Customer Note" title="Customer Note"/> | |||
|                     <t t-esc="line.customerNote" /> | |||
|                 </li> | |||
|                 <li t-if="line.internalNote" class="internal-note w-100 p-2 my-1 rounded text-bg-info text-info bg-opacity-25 text-break"> | |||
|                     <i class="fa fa-tag me-1" role="img" aria-label="Note" title="Note"/> | |||
|                     <t t-esc="line.internalNote" /> | |||
|                 </li> | |||
|                 <li t-if="line.attributes"> | |||
|                     <div t-foreach="line.attributes" t-as="attribute" t-key="attribute.id"> | |||
|                         <t t-esc="attribute.name"/>: | |||
|                         <t t-foreach="attribute.valuesForOrderLine" t-as="value" t-key="value.id"> | |||
|                             <t t-if="value_index !== 0" t-esc="' | '"/> | |||
|                             <t t-esc="value.name"/> | |||
|                             <t t-if="value.price_extra"> | |||
|                                 (<t t-esc='env.utils.formatCurrency(value.price_extra)'/>) | |||
|                             </t> | |||
| 
 | |||
|                         </t><br/> | |||
|                     </div> | |||
|                 </li> | |||
|             </ul> | |||
| 
 | |||
|         </xpath> | |||
|     </t> | |||
| </templates> | |||
| @ -0,0 +1,53 @@ | |||
| <?xml version="1.0" encoding="utf-8" ?> | |||
| <!--Inherit form view of res.config.settings--> | |||
| <odoo> | |||
|     <record id="res_config_settings_view_form" model="ir.ui.view"> | |||
|         <field name="name"> | |||
|             res.config.settings.view.form.inherit.pos.customer.birthday.discount | |||
|         </field> | |||
|         <field name="model">res.config.settings</field> | |||
|         <field name="inherit_id" | |||
|                ref="point_of_sale.res_config_settings_view_form"/> | |||
|         <field name="arch" type="xml"> | |||
|             <xpath expr="//block[@id='pos_pricing_section']" position="inside"> | |||
|                 <div class="o_setting_box"> | |||
|                     <div class="o_setting_left_pane"> | |||
|                         <field name="birthday_discount"/> | |||
|                     </div> | |||
|                     <div class="o_setting_right_pane"> | |||
|                         <label for="birthday_discount" | |||
|                                string="Birthday Discount"/> | |||
|                         <div> | |||
|                             Provides extra discount for customers on their | |||
|                             Birthday | |||
|                         </div> | |||
|                     </div> | |||
|                 </div> | |||
|                 <div class="col-xs-12 col-lg-6 o_setting_box" | |||
|                     invisible="not birthday_discount"> | |||
|                     <div class="o_setting_right_pane"> | |||
|                         <label for="discount" class="col-lg-3"/> | |||
|                         <field name="discount" widget="percentage" | |||
|                                style="width:80px;"/> | |||
|                     </div> | |||
|                 </div> | |||
|                 <div class="col-xs-12 col-lg-6 o_setting_box" | |||
|                      invisible="not birthday_discount"> | |||
|                     <div class="o_setting_left_pane"> | |||
|                         <field name="first_order"/> | |||
|                     </div> | |||
|                     <div class="o_setting_right_pane"> | |||
|                         <label for="first_order"/> | |||
|                         <div class="text-muted"> | |||
|                             Apply the discount only for the first order of the | |||
|                             customer on Birthday | |||
|                         </div> | |||
|                     </div> | |||
|                 </div> | |||
|             </xpath> | |||
|         </field> | |||
|     </record> | |||
| </odoo> | |||
| 
 | |||
| 
 | |||
| 
 | |||
| @ -0,0 +1,18 @@ | |||
| <?xml version="1.0" encoding="utf-8" ?> | |||
| <!--Inherit form view of res.partner--> | |||
| <odoo> | |||
|     <record id="view_partner_form" model="ir.ui.view"> | |||
|         <field name="name">res.partner.view.form.inherit.pos.customer.birthday.discount</field> | |||
|         <field name="model">res.partner</field> | |||
|         <field name="inherit_id" ref="base.view_partner_form"/> | |||
|         <field name="arch" type="xml"> | |||
|             <xpath expr="//label[@for='email']" position="before"> | |||
|                 <label for="birthdate" string="Birth Date"/> | |||
|                 <div> | |||
|                     <field name="birthdate"/> | |||
|                 </div> | |||
|             </xpath> | |||
|         </field> | |||
|     </record> | |||
| </odoo> | |||
| 
 | |||