Login_User_Detail
							parent
							
								
									b1dac6f0be
								
							
						
					
					
						commit
						9784084eb0
					
				|  | @ -0,0 +1,20 @@ | |||
| User Log Details v11 | ||||
| ==================== | ||||
| 
 | ||||
| This module developed to  record  login details of user. | ||||
| 
 | ||||
| Installation | ||||
| ============ | ||||
| 
 | ||||
| Just select it from available modules to install it, there is no need to extra installations. | ||||
| 
 | ||||
| Configuration | ||||
| ============= | ||||
| 
 | ||||
| Nothing to configure. | ||||
| 
 | ||||
| Credits | ||||
| ======= | ||||
| 
 | ||||
| Developer: Saritha @ cybrosys | ||||
| 
 | ||||
|  | @ -0,0 +1,20 @@ | |||
| # -*- coding: utf-8 -*- | ||||
| ############################################################################## | ||||
| # | ||||
| #    Cybrosys Technologies Pvt. Ltd. | ||||
| #    Copyright (C) 2016-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). | ||||
| #    Author: Saritha Sahadevan(<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 | ||||
| #    GENERAL PUBLIC LICENSE (LGPL v3) along with this program. | ||||
| #    If not, see <https://www.gnu.org/licenses/>. | ||||
| # | ||||
| ############################################################################## | ||||
| from . import models | ||||
|  | @ -0,0 +1,39 @@ | |||
| # -*- coding: utf-8 -*- | ||||
| ############################################################################## | ||||
| # | ||||
| #    Cybrosys Technologies Pvt. Ltd. | ||||
| #    Copyright (C) 2016-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). | ||||
| #    Author: Saritha Sahadevan(<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 | ||||
| #    GENERAL PUBLIC LICENSE (LGPL v3) along with this program. | ||||
| #    If not, see <https://www.gnu.org/licenses/>. | ||||
| # | ||||
| ############################################################################## | ||||
| { | ||||
|     'name': "User Log Details", | ||||
|     'version': '11.0.2.0.0', | ||||
|     'summary': """Login User Details & IP Address""", | ||||
|     'description': """This module records login information of user""", | ||||
|     'author': "Cybrosys Techno Solutions ", | ||||
|     'company': "Cybrosys Techno Solutions ", | ||||
|     'maintainer': 'Cybrosys Techno Solutions', | ||||
|     'website': "https://www.cybrosys.com", | ||||
|     'category': 'Tools', | ||||
|     'depends': ['base'], | ||||
|     'license': 'AGPL-3', | ||||
|     'data': [ | ||||
|         'security/ir.model.access.csv', | ||||
|         'views/login_user_views.xml'], | ||||
|     'demo': [], | ||||
|     'images': ['static/description/banner.png'], | ||||
|     'installable': True, | ||||
|     'auto_install': False, | ||||
| } | ||||
|  | @ -0,0 +1,8 @@ | |||
| Changelog | ||||
| ========= | ||||
| * Saritha Sahadevan   contact: saritha@cybrosys.in | ||||
| 
 | ||||
| 
 | ||||
| `10.0.2.0.0` | ||||
| ------------ | ||||
| - Access Right Issue fix. | ||||
|  | @ -0,0 +1,20 @@ | |||
| # -*- coding: utf-8 -*- | ||||
| ############################################################################## | ||||
| # | ||||
| #    Cybrosys Technologies Pvt. Ltd. | ||||
| #    Copyright (C) 2016-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). | ||||
| #    Author: Saritha Sahadevan(<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 | ||||
| #    GENERAL PUBLIC LICENSE (LGPL v3) along with this program. | ||||
| #    If not, see <https://www.gnu.org/licenses/>. | ||||
| # | ||||
| ############################################################################## | ||||
| from . import login_user_details | ||||
|  | @ -0,0 +1,49 @@ | |||
| # -*- coding: utf-8 -*- | ||||
| ############################################################################## | ||||
| # | ||||
| #    Cybrosys Technologies Pvt. Ltd. | ||||
| #    Copyright (C) 2016-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). | ||||
| #    Author: Saritha Sahadevan(<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 | ||||
| #    GENERAL PUBLIC LICENSE (LGPL v3) along with this program. | ||||
| #    If not, see <https://www.gnu.org/licenses/>. | ||||
| # | ||||
| ############################################################################## | ||||
| import logging | ||||
| from itertools import chain | ||||
| from odoo.http import request | ||||
| from odoo import models, fields, api | ||||
| 
 | ||||
| _logger = logging.getLogger(__name__) | ||||
| USER_PRIVATE_FIELDS = ['password'] | ||||
| concat = chain.from_iterable | ||||
| 
 | ||||
| 
 | ||||
| class LoginUserDetail(models.Model): | ||||
|     _inherit = 'res.users' | ||||
| 
 | ||||
|     @api.model | ||||
|     def check_credentials(self, password): | ||||
|         result = super(LoginUserDetail, self).check_credentials(password) | ||||
|         ip_address = request.httprequest.environ['REMOTE_ADDR'] | ||||
|         vals = {'name': self.name, | ||||
|                 'ip_address': ip_address | ||||
|                 } | ||||
|         self.env['login.detail'].sudo().create(vals) | ||||
|         return result | ||||
| 
 | ||||
| 
 | ||||
| class LoginUpdate(models.Model): | ||||
|     _name = 'login.detail' | ||||
| 
 | ||||
|     name = fields.Char(string="User Name") | ||||
|     date_time = fields.Datetime(string="Login Date And Time", default=lambda self: fields.datetime.now()) | ||||
|     ip_address = fields.Char(string="IP Address") | ||||
|  | @ -0,0 +1,2 @@ | |||
| id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink | ||||
| access_login_user_detail,login_user_detail_login_detail,model_login_detail,,1,1,1,1 | ||||
| 
 | 
										
											Binary file not shown.
										
									
								
							| After Width: | Height: | Size: 128 KiB | 
										
											Binary file not shown.
										
									
								
							| After Width: | Height: | Size: 50 KiB | 
										
											Binary file not shown.
										
									
								
							| After Width: | Height: | Size: 117 KiB | 
										
											Binary file not shown.
										
									
								
							| After Width: | Height: | Size: 14 KiB | 
|  | @ -0,0 +1,310 @@ | |||
| <section class="oe_container" style="background-image:url(https://www.cybrosys.com/images/odoo-index-header-banner.png);background-repeat:no-repeat;background-size:100%;padding: 4% 0% 2% 15%;background-position-y: -107px;"> | ||||
|     <div class="oe_row oe_spaced"> | ||||
|         <h2 class="oe_slogan" style="font-size: 35px;color: #fff;font-weight: 900;text-transform: uppercase;text-align: left;margin: 0;margin-bottom: 16px;"> | ||||
|             User Log Details | ||||
|         </h2> | ||||
|         <h3 class="oe_slogan" style="font-size: 25px;color: #fff;font-weight: 600;text-align: left;opacity: 1;margin: 0 !important;"> | ||||
|             Records User Log Details | ||||
|         </h3> | ||||
|         <h5 class="oe_slogan" style="text-align: left;background: #fff;width: 293px;padding: 10px;color: #080808 !important;opacity: 1 !important;font-weight: 600;font-size: 20px;"> | ||||
|             <a style="color: #080808 !important;" href="https://www.cybrosys.com" target="_blank">Cybrosys Technologies</a> | ||||
|         </h5> | ||||
|         <a style="color: #080808 !important;" href="https://www.cybrosys.com" target="_blank"> | ||||
|             <div style="width: 215px;margin-left: 57%;text-align: center;background: #ffffff;height: 215px;border-radius: 100%;display: flex;justify-content: center;align-items: center;box-shadow: 0 0 12px 4px #00000059;"> | ||||
|                     <img src="https://www.cybrosys.com/images/cybro-logo-oca.png" alt="cybrosys technologies" style="width: 180px;"/> | ||||
|             </div> | ||||
|         </a> | ||||
|     </div> | ||||
| </section> | ||||
| 
 | ||||
| <section class="oe_container" style="padding: 3% 0% 3% 15%;"> | ||||
|     <div class="oe_row oe_spaced"> | ||||
|         <h2 class="oe_slogan" style="text-align: left;font-size: 28px;font-weight: 600;margin: 0px !important;"> | ||||
|             Overview | ||||
|         </h2> | ||||
|         <h3 class="oe_slogan" style="text-align: left;font-size: 16px;width: 90%;margin: 0;margin-top: 14px;color: #000 !important;opacity: 1 !important;line-height: 24px;"> | ||||
|             User Log Details, Record login date,IP Address of login user. | ||||
|          </h3> | ||||
|     </div> | ||||
| </section> | ||||
| <section class="oe_container" style="padding: 3% 0% 0% 15%;"> | ||||
|     <div class="oe_row oe_spaced"> | ||||
|         <h2 class="oe_slogan" style="text-align: left;font-size: 28px;font-weight: 600;margin: 0px !important;"> | ||||
|             Screenshots | ||||
|         </h2> | ||||
|         <h3 class="oe_slogan" style="text-align: left;padding: 5% 0% 0% 0%;font-size: 16px;width: 90%;margin: 0;margin-top: 14px;color: #000 !important;opacity: 1 !important;line-height: 24px;"> | ||||
|             <i class="fa fa-check-circle-o" style="width:40px; color:#07B700"></i> | ||||
|             Login Details | ||||
|          </h3> | ||||
|         <div class="oe_row oe_spaced"> | ||||
|             <img src="cybrosys-login-user-details.png" alt="" style="width: 95%;"/> | ||||
|         </div> | ||||
|     </div> | ||||
| </section> | ||||
| 
 | ||||
| <section class="oe_container" style="padding: 7px 0% 0% 3%;"> | ||||
|      <div class="oe_row oe_spaced"> | ||||
|          <a style="color: #080808 !important;" href="https://apps.odoo.com/apps/modules/browse?search=cybrosys" target="_blank"><img src="https://www.cybrosys.com/images/view-more-apps.jpg" alt="cybrosys technologies" style="width: 100%;margin-bottom: 50px;"/></a> | ||||
|      </div> | ||||
| </section> | ||||
| <section class="oe_container" style="padding: 1% 0% 0% 3%;"> | ||||
|     <div class="oe_row oe_spaced"> | ||||
|         <h2 class="oe_slogan" style="text-align: left;font-size: 28px;font-weight: 600;margin: 0px !important;"> | ||||
|             Our Services | ||||
|         </h2> | ||||
|         <div style="display:flex;padding-top: 20px;justify-content: space-between;"> | ||||
|             <div style="flex-basis: 18%;"> | ||||
| 
 | ||||
|                     <div style="width:75px;height:75px;background:#fff; border-radius:100%;margin: auto;"> | ||||
|                             <a href="https://www.cybrosys.com/odoo-customization-and-installation/" target="_blank"> | ||||
|                             <img src="https://www.cybrosys.com/images/odoo-customization.png" style="width: 100%;border-radius: 100%;"/> | ||||
|                             </a> | ||||
|                     </div> | ||||
|                      <h3 class="oe_slogan" style="font-weight: 800;text-align: center;font-size: 14px;width: 100%;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;"> | ||||
|                          <a href="https://www.cybrosys.com/odoo-customization-and-installation/" target="_blank"> | ||||
|                         Odoo Customization | ||||
|                          </a> | ||||
|                      </h3> | ||||
| 
 | ||||
|             </div> | ||||
|              <div style="flex-basis: 18%;"> | ||||
| 
 | ||||
|                 <div style="width:75px;height:75px;background:#fff; border-radius:100%;margin: auto;"> | ||||
|                         <a href="https://www.cybrosys.com/odoo-erp-implementation/" target="_blank"> | ||||
|                             <img src="https://www.cybrosys.com/images/odoo-erp-implementation.png" style="width: 100%;border-radius: 100%;"/> | ||||
|                         </a> | ||||
|                 </div> | ||||
|                  <h3 class="oe_slogan" style="font-weight: 800;text-align: center;font-size: 14px;width: 100%;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;"> | ||||
|                     <a href="https://www.cybrosys.com/odoo-erp-implementation/" target="_blank"> | ||||
|                         Odoo Implementation </a> | ||||
|                  </h3> | ||||
| 
 | ||||
|             </div> | ||||
|              <div style="flex-basis: 18%;"> | ||||
| 
 | ||||
|                 <div style="width:75px;height:75px;background:#fff; border-radius:100%;margin: auto;"> | ||||
|                     <a href="https://www.cybrosys.com/odoo-erp-integration/" target="_blank"> | ||||
|                         <img src="https://www.cybrosys.com/images/odoo-erp-integration.png" style="width: 100%;border-radius: 100%;"/> | ||||
|                     </a> | ||||
|                 </div> | ||||
|                  <h3 class="oe_slogan" style="font-weight: 800;text-align: center;font-size: 14px;width: 100%;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;"> | ||||
|                     <a href="https://www.cybrosys.com/odoo-erp-integration/" target="_blank"> | ||||
|                         Odoo Integration | ||||
|                     </a> | ||||
|                  </h3> | ||||
| 
 | ||||
|             </div> | ||||
|              <div style="flex-basis: 18%;"> | ||||
| 
 | ||||
|                 <div style="width:75px;height:75px;background:#fff; border-radius:100%;margin: auto;"> | ||||
|                         <a href="https://www.cybrosys.com/odoo-erp-support/" target="_blank"> | ||||
|                             <img src="https://www.cybrosys.com/images/odoo-erp-support.png" style="width: 100%;border-radius: 100%;"/> | ||||
|                         </a> | ||||
|                 </div> | ||||
|                  <h3 class="oe_slogan" style="font-weight: 800;text-align: center;font-size: 14px;width: 100%;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;"> | ||||
|                     <a href="https://www.cybrosys.com/odoo-erp-support/" target="_blank"> | ||||
|                         Odoo Support</a> | ||||
|                  </h3> | ||||
| 
 | ||||
|             </div> | ||||
|              <div style="flex-basis: 18%;"> | ||||
| 
 | ||||
|                 <div style="width:75px;height:75px;background:#fff; border-radius:100%;margin: auto;"> | ||||
|                         <a href="https://www.cybrosys.com/hire-odoo-developer/" target="_blank"> | ||||
|                             <img src="https://www.cybrosys.com/images/hire-odoo-developer.png" style="width: 100%;border-radius: 100%;"/> | ||||
|                         </a> | ||||
|                 </div> | ||||
|                  <h3 class="oe_slogan" style="font-weight: 800;text-align: center;font-size: 14px;width: 100%;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;"> | ||||
|                     <a href="https://www.cybrosys.com/hire-odoo-developer/" target="_blank"> | ||||
|                         Hire Odoo Developers</a> | ||||
|                  </h3> | ||||
|                      </a> | ||||
|             </div> | ||||
|         </div> | ||||
|     </div> | ||||
| </section> | ||||
| <section class="oe_container" style="padding: 1% 0% 0% 3%;"> | ||||
|      <div class="oe_row oe_spaced"> | ||||
|         <h2 class="oe_slogan" style="text-align: left;font-size: 28px;font-weight: 600;margin: 0px !important;"> | ||||
|             Our Industries | ||||
|         </h2> | ||||
|         <div style="display:flex;justify-content: space-between;flex-wrap:wrap;"> | ||||
|             <div style="flex-basis: 32%;padding-top: 20px;"> | ||||
| 
 | ||||
|                     <div style="width:30%; float:left;"> | ||||
|                         <div style="width:75px;height:75px;background:#CE2D48; border-radius:100%;float: left;text-align: left;"> | ||||
|                             <a href="https://www.cybrosys.com/odoo/industries/best-trading-erp/" target="_blank"> | ||||
|                             <img src="https://www.cybrosys.com/images/odoo-index-industry-1.png" alt="Odoo Industry" style="    border-radius: 100%;width:100%;"/> | ||||
|                             </a> | ||||
|                         </div> | ||||
|                     </div> | ||||
|                     <div style="width:70%;float:left;"> | ||||
|                      <h3 class="oe_slogan" style=" text-align: left;font-size: 14px;font-weight:800;width: auto;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 4px;margin-left: 16px;"> | ||||
|                          <a href="https://www.cybrosys.com/odoo/industries/best-trading-erp/" target="_blank"> | ||||
|                         Trading | ||||
|                          </a> | ||||
|                      </h3> | ||||
|                     <h3 class="oe_slogan" style=" text-align: left;font-size: 13px;width: auto;margin: 0;margin-top:5px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 5px;margin-left: 16px;"> | ||||
|                         Easily procure and sell your products. | ||||
|                      </h3> | ||||
|                         </div> | ||||
| 
 | ||||
|             </div> | ||||
|             <div style="flex-basis: 32%;padding-top: 20px;"> | ||||
| 
 | ||||
|                     <div style="width:30%; float:left;"> | ||||
|                         <div style="width:75px;height:75px;background:#CE2D48; border-radius:100%;float: left;text-align: left;"> | ||||
|                             <a href="https://www.cybrosys.com/odoo/industries/manufacturing-erp-software/" target="_blank"> | ||||
|                             <img src="https://www.cybrosys.com/images/odoo-index-industry-2.png" alt="Odoo Industry" style="    border-radius: 100%;width:100%;"/> | ||||
|                             </a> | ||||
|                         </div> | ||||
|                     </div> | ||||
|                     <div style="width:70%;float:left;"> | ||||
|                      <h3 class="oe_slogan" style=" text-align: left;font-size: 14px;font-weight:800;width: auto;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 4px;margin-left: 16px;"> | ||||
|                         <a href="https://www.cybrosys.com/odoo/industries/manufacturing-erp-software/" target="_blank"> | ||||
|                             Manufacturing</a> | ||||
|                      </h3> | ||||
|                     <h3 class="oe_slogan" style=" text-align: left;font-size: 13px;width: auto;margin: 0;margin-top:5px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 5px;margin-left: 16px;"> | ||||
|                         Plan, track and schedule your operations. | ||||
|                      </h3> | ||||
|                         </div> | ||||
| 
 | ||||
|             </div> | ||||
|             <div style="flex-basis: 32%;padding-top: 20px;"> | ||||
| 
 | ||||
|                     <div style="width:30%; float:left;"> | ||||
|                         <div style="width:75px;height:75px;background:#CE2D48; border-radius:100%;float: left;text-align: left;"> | ||||
|                             <a href="https://www.cybrosys.com/odoo/industries/restaurant-management/" target="_blank"> | ||||
|                                 <img src="https://www.cybrosys.com/images/odoo-index-industry-3.png" alt="Odoo Industry" style="    border-radius: 100%;width:100%;"/> | ||||
|                             </a> | ||||
|                         </div> | ||||
|                     </div> | ||||
|                     <div style="width:70%;float:left;"> | ||||
|                      <h3 class="oe_slogan" style=" text-align: left;font-size: 14px;font-weight:800;width: auto;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 4px;margin-left: 16px;"> | ||||
|                         <a href="https://www.cybrosys.com/odoo/industries/restaurant-management/" target="_blank"> | ||||
|                             Restaurant</a> | ||||
|                      </h3> | ||||
|                     <h3 class="oe_slogan" style=" text-align: left;font-size: 13px;width: auto;margin: 0;margin-top:5px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 5px;margin-left: 16px;"> | ||||
|                         Run your bar or restaurant methodical. | ||||
|                      </h3> | ||||
|                         </div> | ||||
| 
 | ||||
|             </div> | ||||
|             <div style="flex-basis: 32%;padding-top: 20px;"> | ||||
| 
 | ||||
|                     <div style="width:30%; float:left;"> | ||||
|                         <div style="width:75px;height:75px;background:#CE2D48; border-radius:100%;float: left;text-align: left;"> | ||||
|                             <a href="https://www.cybrosys.com/odoo/industries/pos/" target="_blank"> | ||||
|                                 <img src="https://www.cybrosys.com/images/odoo-index-industry-4.png" alt="Odoo Industry" style="    border-radius: 100%;width:100%;"/> | ||||
|                             </a> | ||||
|                         </div> | ||||
|                     </div> | ||||
|                     <div style="width:70%;float:left;"> | ||||
|                      <h3 class="oe_slogan" style=" text-align: left;font-size: 14px;font-weight:800;width: auto;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 4px;margin-left: 16px;"> | ||||
|                         <a href="https://www.cybrosys.com/odoo/industries/pos/" target="_blank"> | ||||
|                             POS</a> | ||||
|                      </h3> | ||||
|                     <h3 class="oe_slogan" style=" text-align: left;font-size: 13px;width: auto;margin: 0;margin-top:5px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 5px;margin-left: 16px;"> | ||||
|                         Easy configuring and convivial selling. | ||||
|                      </h3> | ||||
|                         </div> | ||||
| 
 | ||||
|             </div> | ||||
|             <div style="flex-basis: 32%;padding-top: 20px;"> | ||||
| 
 | ||||
|                     <div style="width:30%; float:left;"> | ||||
|                         <div style="width:75px;height:75px;background:#CE2D48; border-radius:100%;float: left;text-align: left;"> | ||||
|                             <a href="https://www.cybrosys.com/odoo/industries/ecommerce-website/" target="_blank"> | ||||
|                             <img src="https://www.cybrosys.com/images/odoo-index-industry-5.png" alt="Odoo Industry" style="    border-radius: 100%;width:100%;"/> | ||||
|                             </a> | ||||
|                         </div> | ||||
|                     </div> | ||||
|                     <div style="width:70%;float:left;"> | ||||
|                      <h3 class="oe_slogan" style=" text-align: left;font-size: 14px;font-weight:800;width: auto;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 0px;margin-left: 16px;"> | ||||
|                         <a href="https://www.cybrosys.com/odoo/industries/ecommerce-website/" target="_blank"> | ||||
|                             E-commerce & Website</a> | ||||
|                      </h3> | ||||
|                     <h3 class="oe_slogan" style=" text-align: left;font-size: 13px;width: auto;margin: 0;margin-top:5px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 5px;margin-left: 16px;"> | ||||
|                         Mobile friendly, awe-inspiring product pages. | ||||
|                      </h3> | ||||
|                     </div> | ||||
|             </div> | ||||
|             <div style="flex-basis: 32%;padding-top: 20px;"> | ||||
| 
 | ||||
|                     <div style="width:30%; float:left;"> | ||||
|                         <div style="width:75px;height:75px;background:#CE2D48; border-radius:100%;float: left;text-align: left;"> | ||||
|                             <a href="https://www.cybrosys.com/odoo/industries/hotel-management-erp/" target="_blank"> | ||||
|                             <img src="https://www.cybrosys.com/images/odoo-index-industry-6.png" alt="Odoo Industry" style="    border-radius: 100%;width:100%;"/> | ||||
|                             </a> | ||||
|                         </div> | ||||
|                     </div> | ||||
|                     <div style="width:70%;float:left;"> | ||||
|                      <h3 class="oe_slogan" style=" text-align: left;font-size: 14px;font-weight:800;width: auto;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 4px;margin-left: 16px;"> | ||||
|                         <a href="https://www.cybrosys.com/odoo/industries/hotel-management-erp/" target="_blank"> | ||||
|                             Hotel Management</a> | ||||
|                      </h3> | ||||
|                     <h3 class="oe_slogan" style=" text-align: left;font-size: 13px;width: auto;margin: 0;margin-top:5px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 5px;margin-left: 16px;"> | ||||
|                         An all-inclusive hotel management application. | ||||
|                      </h3> | ||||
|                         </div> | ||||
|             </div> | ||||
|             <div style="flex-basis: 32%;padding-top: 20px;"> | ||||
| 
 | ||||
|                     <div style="width:30%; float:left;"> | ||||
|                         <div style="width:75px;height:75px;background:#CE2D48; border-radius:100%;float: left;text-align: left;"> | ||||
|                             <a href="https://www.cybrosys.com/odoo/industries/education-erp-software/" target="_blank"> | ||||
|                             <img src="https://www.cybrosys.com/images/odoo-index-industry-7.png" alt="Odoo Industry" style="    border-radius: 100%;width:100%;"/> | ||||
|                             </a> | ||||
|                         </div> | ||||
|                     </div> | ||||
|                     <div style="width:70%;float:left;"> | ||||
|                      <h3 class="oe_slogan" style=" text-align: left;font-size: 14px;font-weight:800;width: auto;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 4px;margin-left: 16px;"> | ||||
|                         <a href="https://www.cybrosys.com/odoo/industries/education-erp-software/" target="_blank"> | ||||
|                             Education</a> | ||||
|                      </h3> | ||||
|                     <h3 class="oe_slogan" style=" text-align: left;font-size: 13px;width: auto;margin: 0;margin-top:5px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 5px;margin-left: 16px;"> | ||||
|                         A Collaborative platform for educational management. | ||||
|                      </h3> | ||||
|                         </div> | ||||
|             </div> | ||||
|              <div style="flex-basis: 32%;padding-top: 20px;"> | ||||
| 
 | ||||
|                     <div style="width:30%; float:left;"> | ||||
|                         <div style="width:75px;height:75px;background:#CE2D48; border-radius:100%;float: left;text-align: left;"> | ||||
|                             <a href="https://www.cybrosys.com/odoo/industries/service-management/" target="_blank"> | ||||
|                                 <img src="https://www.cybrosys.com/images/odoo-index-industry-8.png" alt="Odoo Industry" style="    border-radius: 100%;width:100%;"/> | ||||
|                             </a> | ||||
|                         </div> | ||||
|                     </div> | ||||
|                     <div style="width:70%;float:left;"> | ||||
|                      <h3 class="oe_slogan" style=" text-align: left;font-size: 14px;font-weight:800;width: auto;margin: 0;margin-top: 14px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 4px;margin-left: 16px;"> | ||||
|                         <a href="https://www.cybrosys.com/odoo/industries/service-management/" target="_blank"> | ||||
|                             Service Management</a> | ||||
|                      </h3> | ||||
|                     <h3 class="oe_slogan" style=" text-align: left;font-size: 13px;width: auto;margin: 0;margin-top:5px;color: #000 !important;margin-top: 5px;opacity: 1 !important;line-height: 17px;float: left;margin-top: 5px;margin-left: 16px;"> | ||||
|                         Keep track of services and invoice accordingly. | ||||
|                      </h3> | ||||
|                         </div> | ||||
|             </div> | ||||
|         </div> | ||||
|     </div> | ||||
| </section> | ||||
| <section class="oe_container" style="background-image:url(https://www.cybrosys.com/images/odoo-index-footer-bg.png); background-repeat:no-repeat; background-size:100%;padding: 13% 0% 6% 0%;"> | ||||
|     <div class="oe_slogan" style="margin-top:10px !important;margin-bottom: 0px;"> | ||||
|         <div> | ||||
|             <a style="color: #5c5c5c !important;border-radius: 0;background: none;border: none;background: #fff;box-shadow: 0 10px 40px 0 rgba(62,57,107,0.07), 0 2px 9px 0 rgba(62, 57, 107, 0.05);border-radius: 30px;font-size: 12px;padding: 9px 26px;margin-right: 9px;width: 200px;text-transform: capitalize;" class="btn btn-primary btn-lg mt8" style="color: #FFFFFF !important;border-radius: 0;" href="mailto:odoo@cybrosys.com"><i class="fa fa-envelope"></i> Email us </a> | ||||
|             <a style="color: #5c5c5c !important;border-radius: 0;background: none;border: none;background: #fff;box-shadow: 0 10px 40px 0 rgba(62,57,107,0.07), 0 2px 9px 0 rgba(62, 57, 107, 0.05);border-radius: 30px;font-size: 12px;padding: 9px 26px;margin-right: 9px;width: 200px;text-transform: capitalize;" class="btn btn-primary btn-lg mt8" style="color: #FFFFFF !important;border-radius: 0;" href="https://www.cybrosys.com/contact/"><i class="fa fa-phone"></i> Contact Us </a> | ||||
|             <a style="color: #5c5c5c !important;border-radius: 0;background: none;border: none;background: #fff;box-shadow: 0 10px 40px 0 rgba(62,57,107,0.07), 0 2px 9px 0 rgba(62, 57, 107, 0.05);border-radius: 30px;font-size: 12px;padding: 9px 26px;margin-right: 9px;width: 200px;text-transform: capitalize;" class="btn btn-primary btn-lg mt8" style="color: #FFFFFF !important;border-radius: 0;" href="https://www.cybrosys.com/contact/"><i class="fa fa-check-square"></i> Request Customization </a> | ||||
|         </div> | ||||
|         <br> | ||||
|         <img src="https://www.cybrosys.com/images/logo.png" style="width: 190px; margin-bottom: 25px;margin-top: 30px;" class="center-block"> | ||||
|         <div> | ||||
|           <a href="https://twitter.com/cybrosys" target="_blank"><i class="fa fa-2x fa-twitter" style="color:white;background: #00a0d1;width:35px;height: 35px;padding-top: 7px;font-size: 21px;margin-right: 6px;border-radius: 100%;"></i></a></td> | ||||
|           <a href="https://www.linkedin.com/company/cybrosys-technologies-pvt-ltd" target="_blank"><i class="fa fa-2x fa-linkedin" style="color:white;background: #31a3d6;width:35px;padding-left: 3px;height: 35px;padding-top: 7px;font-size: 21px;margin-right: 6px;border-radius: 100%;"></i></a></td> | ||||
|           <a href="https://www.facebook.com/cybrosystechnologies" target="_blank"><i class="fa fa-2x fa-facebook" style="color:white;background: #3b5998;width:35px; ;height: 35px;padding-top: 7px;font-size: 21px;margin-right: 6px;border-radius: 100%;"></i></a></td> | ||||
|           <a href="https://plus.google.com/106641282743045431892/about" target="_blank"><i class="fa fa-2x fa-google-plus" style="color:white;background: #c53c2c;width:35px;padding-left: 3px;height: 35px;padding-top: 7px;font-size: 21px;margin-right: 6px;border-radius: 100%;"></i></a></td> | ||||
|           <a href="https://in.pinterest.com/cybrosys" target="_blank"><i class="fa fa-2x fa-pinterest" style="color:white;background: #ac0f18;width:35px;padding-left: 3px;height: 35px;padding-top: 7px;font-size: 21px;margin-right: 6px;border-radius: 100%;"></i></a></td> | ||||
|         </div> | ||||
|     </div> | ||||
| </section> | ||||
| 
 | ||||
|  | @ -0,0 +1,42 @@ | |||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <odoo> | ||||
|     <data> | ||||
|         <record model="ir.ui.view" id="login_user_detail_form_view"> | ||||
|             <field name="name">Login User Details</field> | ||||
|             <field name="model">login.detail</field> | ||||
|             <field name="arch" type="xml"> | ||||
|             <form> | ||||
|                 <sheet> | ||||
|                     <group> | ||||
|                         <field name="name"/> | ||||
|                         <field name="date_time"/> | ||||
|                         <field name="ip_address"/> | ||||
|                     </group> | ||||
|                 </sheet> | ||||
|             </form> | ||||
|             </field> | ||||
|         </record> | ||||
| 
 | ||||
|         <record model="ir.ui.view" id="login_user_detail_tree_view"> | ||||
|             <field name="name">Login User Details</field> | ||||
|             <field name="model">login.detail</field> | ||||
|             <field name="arch" type="xml"> | ||||
|                 <tree> | ||||
|                     <field name="name"/> | ||||
|                     <field name="date_time"/> | ||||
|                     <field name="ip_address"/> | ||||
|                 </tree> | ||||
|             </field> | ||||
|         </record> | ||||
| 
 | ||||
|         <record model="ir.actions.act_window" id="login_user_detail_action_window"> | ||||
|             <field name="name">Login User Details</field> | ||||
|             <field name="res_model">login.detail</field> | ||||
|             <field name="view_mode">tree,form</field> | ||||
|         </record> | ||||
| 
 | ||||
|     <menuitem name="Login Details" id="login_user_detail.menu_1_list" parent="base.menu_users" | ||||
|               action="login_user_detail_action_window"/> | ||||
| 
 | ||||
|   </data> | ||||
| </odoo> | ||||
		Loading…
	
		Reference in New Issue