Merge pull request #1712 from expsa/dev_base_ahidev
[➕] expert_std_backend_theme
|
|
@ -0,0 +1 @@
|
|||
from .hooks import test_pre_init_hook, test_post_init_hook
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
{
|
||||
'name': 'Expert Standard Backend Theme',
|
||||
'category': 'Tools',
|
||||
'version': '0.1',
|
||||
'summary': 'Customization for backend and forntend themes built for odex',
|
||||
'description': 'Expert Standard Backend Theme',
|
||||
'author': "Expert Co. Ltd.",
|
||||
'website': "https://www.exp-sa.com",
|
||||
'depends': ['web','odex25_web'],
|
||||
'data': [
|
||||
'views/assets.xml',
|
||||
'views/icons.xml',
|
||||
'views/settings.xml',
|
||||
],
|
||||
"qweb": [
|
||||
'static/src/xml/*'
|
||||
],
|
||||
'license': 'LGPL-3',
|
||||
'pre_init_hook': 'test_pre_init_hook',
|
||||
'post_init_hook': 'test_post_init_hook',
|
||||
'installable': True,
|
||||
'application': False,
|
||||
'auto_install': False,
|
||||
}
|
||||
|
||||
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
|
||||
|
|
@ -0,0 +1,646 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
#############################################################################
|
||||
#
|
||||
# Cybrosys Technologies Pvt. Ltd.
|
||||
#
|
||||
# Copyright (C) 2021-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
|
||||
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>)
|
||||
#
|
||||
# You can modify it under the terms of the GNU LESSER
|
||||
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
|
||||
# (LGPL v3) along with this program.
|
||||
# If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
#############################################################################
|
||||
|
||||
import base64
|
||||
|
||||
from odoo import api, SUPERUSER_ID
|
||||
from odoo.modules import get_module_resource
|
||||
|
||||
|
||||
def test_pre_init_hook(cr):
|
||||
"""Hooks for Changing Menu Web_icon"""
|
||||
|
||||
env = api.Environment(cr, SUPERUSER_ID, {})
|
||||
menu_item = env['ir.ui.menu'].search([('parent_id', '=', False)])
|
||||
|
||||
for menu in menu_item:
|
||||
if menu.name == 'Contacts':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'contact.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Link Tracker':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'link_tracker.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Dashboards':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'dashboard.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Sales':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'sales.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Accounting':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'accounting.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Inventory':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'inventory.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Purchase':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'purchase.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Calendar':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'calendar.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'CRM':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'crm.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Note':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'notes.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Website':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'website.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Point of Sale':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'pos.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Manufacturing':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'manufacturing.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Repairs':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'repair.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Email Marketing':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'email_market.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'SMS Marketing':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'sms.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Project':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'project.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Surveys':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'surveys.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Employees':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'employees.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Recruitment':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'recruitment.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Attendances':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'attendances.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Time Off':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'time-off.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Expenses':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'expenses.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Maintenance':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'maintenance.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Live Chat':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'new-live-chat.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Lunch':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'lunch.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Fleet':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'fleet.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Timesheets':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'timesheet.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Events':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'events.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'eLearning':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'e-learning.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Membership':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'membership.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Members':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'members.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
|
||||
if menu.name == 'Subscriptions':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'subscription.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Documents':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'documents.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Rental':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'rental.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Marketing Automation':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'marketing_automation.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'IoT':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'iot.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Helpdesk':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'help.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Planning':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'planning.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Appraisal':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'appraisal.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Consolidation':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'consolidation.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Payroll':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'payaroll.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Barcode':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'barcode.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Quality':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'quality.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'PLM':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'plm.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Field Service':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'field-service.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Data Cleaning':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'clean-code.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Approvals':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'approvals.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Referrals':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'referral.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Discuss':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'discuss.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Social Marketing':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'like.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Document Management System':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'documents.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Asset Extend':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'assest-manager.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Odex25 Accounting':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'accounting.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Petty Cash':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'money.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Task Logs':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'task-log.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Base':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'dashboard.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'System Notification':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'notification.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Initiative Management':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'goal.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Sign':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'dashboard.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Recurring - Contracts Management':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'renewal.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Assets Management':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'assets.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Benefit Management':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'benefit_management.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'My Dashboard':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'my_dashboard.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Transactions Management':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'transactions_management.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Real Estate':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'real_estate.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Real Estate Marketing':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'real_estate_marketing.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Kafalat System':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'kafalat_system.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'KPI':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'kpi.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Timesheet':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'timesheet.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Email Market':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'email_market.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Workflow':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'workflow.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Takaful Settings':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'takaful_settings.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Empowerment Management':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'empowerment_management.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Invoicing':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'invoice.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
|
||||
|
||||
def test_post_init_hook(cr, registry):
|
||||
"""post init hook"""
|
||||
|
||||
env = api.Environment(cr, SUPERUSER_ID, {})
|
||||
menu_item = env['ir.ui.menu'].search([('parent_id', '=', False)])
|
||||
|
||||
for menu in menu_item:
|
||||
if menu.name == 'Contacts':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'contact.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Link Tracker':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'link_tracker.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Dashboards':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'dashboard.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Sales':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'sales.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Accounting':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'accounting.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Inventory':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'inventory.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Purchase':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'purchase.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Calendar':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'calendar.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'CRM':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'crm.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Note':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'notes.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Website':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'website.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Point of Sale':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'pos.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Manufacturing':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'manufacturing.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Repairs':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'repair.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Email Marketing':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'email_market.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'SMS Marketing':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'sms.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Project':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'project.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Surveys':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'surveys.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Employees':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'employees.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Recruitment':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'recruitment.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Attendances':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'attendances.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Time Off':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'time-off.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Expenses':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'expenses.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Maintenance':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'maintenance.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Live Chat':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'new-live-chat.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Lunch':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'lunch.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Fleet':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'fleet.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Timesheets':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'timesheet.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Events':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'events.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'eLearning':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'e-learning.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Membership':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'membership.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Members':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'members.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
|
||||
if menu.name == 'Subscriptions':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'subscription.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Documents':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'documents.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Rental':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'rental.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Marketing Automation':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'marketing_automation.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'IoT':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'iot.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Helpdesk':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'help.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Planning':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'planning.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Appraisal':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'appraisal.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Consolidation':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'consolidation.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Payroll':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'payaroll.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Barcode':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'barcode.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Quality':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'quality.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'PLM':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'plm.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Field Service':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'field-service.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Data Cleaning':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'clean-code.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Approvals':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'approvals.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Referrals':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'referral.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Discuss':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'discuss.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Social Marketing':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'like.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Document Management System':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'documents.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Asset Extend':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'assest-manager.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Odex25 Accounting':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'accounting.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Petty Cash':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'money.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Task Logs':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'task-log.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Base':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'dashboard.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'System Notification':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'notification.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Initiative Management':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'goal.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Sign':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'dashboard.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Recurring - Contracts Management':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'renewal.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Assets Management':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'assets.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Benefit Management':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'benefit_management.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'My Dashboard':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'my_dashboard.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Transactions Management':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'transactions_management.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Real Estate':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'real_estate.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Real Estate Marketing':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'real_estate_marketing.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Kafalat System':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'kafalat_system.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'KPI':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'kpi.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Timesheet':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'timesheet.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Email Market':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'email_market.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Workflow':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'workflow.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Takaful Settings':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'takaful_settings.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Empowerment Management':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'empowerment_management.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
if menu.name == 'Invoicing':
|
||||
img_path = get_module_resource(
|
||||
'expert_std_backend_theme', 'static', 'src', 'img', 'icons', 'invoice.png')
|
||||
menu.write({'web_icon_data': base64.b64encode(open(img_path, "rb").read())})
|
||||
|
After Width: | Height: | Size: 4.5 KiB |
|
|
@ -0,0 +1,83 @@
|
|||
<section class="oe_container">
|
||||
<div class="oe_row oe_spaced">
|
||||
<h2 class="oe_slogan"
|
||||
style="text-align: center;font-size: 25px;font-weight: 600;margin: 0px !important;color:#145374;">
|
||||
ONE OF ODEX MODULES</h2>
|
||||
<h6 class="oe_slogan" style="text-align: center;font-size: 18px;">
|
||||
ODEX system is over than 200+ modules developed by love of Expert Company, based on ODEX system
|
||||
<br/>
|
||||
.to effectively suite's Saudi and Arabic market needs.It is the first Arabic open source ERP and all-in-one
|
||||
solution
|
||||
</h6>
|
||||
</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: center;font-size: 25px;font-weight: 600;margin: 0px !important;color:#145374;">
|
||||
Contact Us
|
||||
</h2>
|
||||
<br/>
|
||||
<br/>
|
||||
<div style="display:flex;padding-top: 20px;justify-content: space-between;">
|
||||
<div style="flex-basis: 18%;"></div>
|
||||
<div style="flex-basis: 18%;">
|
||||
<div style="width:60px;height:60px;background:#fff; border-radius:100%;margin: auto;">
|
||||
<a href="https://exp-sa.com" target="_blank">
|
||||
<img src="internet.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://exp-sa.com/" target="_blank">
|
||||
www.exp-sa.com
|
||||
</a>
|
||||
</h3>
|
||||
</div>
|
||||
<div style="flex-basis: 18%;">
|
||||
<div style="width:60px;height:60px;background:#fff; border-radius:100%;margin: auto;">
|
||||
<a href="https://twitter.com/expcosa/" target="_blank">
|
||||
<img src="twitter.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://twitter.com/expcosa/" target="_blank">
|
||||
exposa
|
||||
</a>
|
||||
</h3>
|
||||
</div>
|
||||
<div style="flex-basis: 18%;">
|
||||
<div style="width:60px;height:60px;background:#fff; border-radius:100%;margin: auto;">
|
||||
<a href="https://www.linkedin.com/in/expert-company-52b5b812b/" target="_blank">
|
||||
<img src="linkedin.png" style="width: 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.linkedin.com/in/expert-company-52b5b812b/" target="_blank">
|
||||
exposa
|
||||
</a>
|
||||
</h3>
|
||||
</div>
|
||||
<div style="flex-basis: 18%;">
|
||||
<div style="width:60px;height:60px;background:#fff; border-radius:100%;margin: auto;">
|
||||
<a href="https://erp.exp-sa.com/contactus/" target="_blank">
|
||||
<img src="mail.png" style="width: 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://erp.exp-sa.com/contactus/" target="_blank">
|
||||
Info@exp-sa.com
|
||||
</a>
|
||||
</h3>
|
||||
</div>
|
||||
<div style="flex-basis: 18%;"></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="oe_container oe_separator">
|
||||
</section>
|
||||
|
After Width: | Height: | Size: 35 KiB |
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 24 KiB |
|
After Width: | Height: | Size: 98 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 3.9 KiB |
|
After Width: | Height: | Size: 5.7 KiB |
|
After Width: | Height: | Size: 5.0 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 3.1 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 2.8 KiB |
|
After Width: | Height: | Size: 4.7 KiB |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 3.1 KiB |
|
After Width: | Height: | Size: 5.0 KiB |
|
After Width: | Height: | Size: 4.6 KiB |
|
After Width: | Height: | Size: 2.7 KiB |
|
After Width: | Height: | Size: 6.2 KiB |
|
After Width: | Height: | Size: 5.7 KiB |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 8.0 KiB |
|
After Width: | Height: | Size: 8.1 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 8.5 KiB |
|
After Width: | Height: | Size: 3.9 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 6.7 KiB |
|
After Width: | Height: | Size: 6.7 KiB |
|
After Width: | Height: | Size: 2.6 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 5.2 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 812 B |
|
After Width: | Height: | Size: 4.0 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 5.9 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 3.9 KiB |
|
After Width: | Height: | Size: 5.9 KiB |
|
After Width: | Height: | Size: 3.9 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 9.8 KiB |
|
After Width: | Height: | Size: 8.1 KiB |
|
After Width: | Height: | Size: 3.1 KiB |
|
After Width: | Height: | Size: 5.0 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 6.0 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 4.6 KiB |
|
After Width: | Height: | Size: 5.0 KiB |
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 4.3 KiB |
|
After Width: | Height: | Size: 6.2 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 921 B |
|
After Width: | Height: | Size: 10 KiB |
|
After Width: | Height: | Size: 5.7 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 3.7 KiB |
|
After Width: | Height: | Size: 6.5 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 29 KiB |
|
After Width: | Height: | Size: 4.0 KiB |
|
After Width: | Height: | Size: 6.3 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 5.0 KiB |
|
After Width: | Height: | Size: 4.3 KiB |
|
After Width: | Height: | Size: 3.5 KiB |