diff --git a/customer_geolocation/README.rst b/customer_geolocation/README.rst new file mode 100755 index 000000000..47dfe2efe --- /dev/null +++ b/customer_geolocation/README.rst @@ -0,0 +1,41 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +Customer Geolocation +======================= +This module allow to set users address through Google Map. + +Configuration +============= +This helps customer to add their address through Google Map and locate their address. + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +Developer: Ansil P V @cybrosys, Contact: odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com +* Website : https://cybrosys.com + +Bug Tracker +----------- +Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. + +Maintainer +========== +.. image:: https://cybrosys.com/images/logo.png + :target: https://cybrosys.com + +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit `Our Website `__ + +Further information +=================== +HTML Description: ``__ diff --git a/customer_geolocation/__init__.py b/customer_geolocation/__init__.py new file mode 100644 index 000000000..d0b17ad7b --- /dev/null +++ b/customer_geolocation/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Ansil pv (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 . +# +##################################################################################### + +from . import controllers diff --git a/customer_geolocation/__manifest__.py b/customer_geolocation/__manifest__.py new file mode 100644 index 000000000..3ba2a5412 --- /dev/null +++ b/customer_geolocation/__manifest__.py @@ -0,0 +1,53 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# 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 . +# +############################################################################# +{ + 'name': "Geolocation Website", + 'version': '16.0.1.0.0 ', + 'depends': ['base', 'website', 'website_google_map', 'portal'], + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'images': ['static/description/banner.png'], + 'website': 'https://www.cybrosys.com', + 'category': 'Website', + 'description': "Geolocation is very useful to users", + 'summary': 'Geolocation In website. ' + 'This helps customer to add their address through map and locate the address.', + 'assets': { + 'web.assets_frontend': [ + 'customer_geolocation/static/src/css/cust_geolocation.css', + ], + }, + + 'data': [ + 'views/portal_templates.xml', + ], + + 'external_dependencies': { + 'python': ['pytz', 'geopy'], + }, + + 'license': 'AGPL-3', + 'installable': True, + 'application': False, + 'auto_install': False, +} diff --git a/customer_geolocation/controllers/__init__.py b/customer_geolocation/controllers/__init__.py new file mode 100644 index 000000000..592ceb06b --- /dev/null +++ b/customer_geolocation/controllers/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Ansil pv (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 . +# +##################################################################################### + +from . import main diff --git a/customer_geolocation/controllers/main.py b/customer_geolocation/controllers/main.py new file mode 100644 index 000000000..e7e2f4941 --- /dev/null +++ b/customer_geolocation/controllers/main.py @@ -0,0 +1,117 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Ansil pv (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 . +# +################################################################################ +""" + Install geopy package to decoding geocodes and vise versa +""" +import json +import pytz +from geopy import Nominatim +from odoo import http +from odoo.http import request, route + +from odoo.addons.portal.controllers.portal import CustomerPortal + + +class PortalGeolocation(CustomerPortal): + @route() + def account(self, **post): + """ Super CustomerPortal class function and pass the api key value + from settings using params to website view file""" + + res = super(PortalGeolocation, self).account(**post) + params = request.env['ir.config_parameter'].sudo() + values = params.get_param('base_geolocalize.google_map_api_key') + res.qcontext.update({ + 'api': values + }) + return res + + @http.route(['/geo/change/'], type='json', auth="none", + website=False, csrf=False) + def geo_changer(self, coordinates): + """Controller function for get address details from latitude and + longitude that we pinpointed in map using geopy package from python + + Parameters ---------- coordinates :The stringify value from map that + contains latitude and longitude + + Returns ------- Returning the address details back to view file from + the converted Latitude and longitude + """ + res = json.loads(coordinates) + geolocator = Nominatim(user_agent="geoapiExercises") + location = geolocator.reverse( + str(res.get('lat')) + "," + str(res.get('lng'))) + city = "Undefined" + suburb = "Undefined" + state = "Undefined" + country = "Undefined" + p_code = "Undefined" + if location: + addresses = location.raw['address'] + if addresses.get('village'): + city = addresses.get('village') + if addresses.get('suburb'): + suburb = addresses.get('suburb') + state = addresses.get('state') + country_code = addresses.get('country_code') + country = pytz.country_names[country_code] + if addresses.get('postcode'): + p_code = addresses.get('postcode') + return { + 'city': city, + 'suburb': suburb, + 'state': state, + 'country': country, + 'p_code': p_code, + } + + @http.route(['/geo/location/
'], type='json', auth="none", + website=False, csrf=False) + def geo_location(self, address): + """ Get value from city field in 'my_account' page and convert into + lat and long and return back to website and set the map and fields + Parameters ---------- address : The city name that in city field in + website + + Returns + ------- + Pass the value to website view and set required fields and map + + """ + locator = Nominatim(user_agent="myGeocoder") + location = locator.geocode(address) + geolocator = Nominatim(user_agent="geoapiExercises") + location_country = geolocator.reverse( + str(location.latitude) + "," + str(location.longitude)) + addresses = location_country.raw['address'] + country_code = addresses.get('country_code') + country = pytz.country_names[country_code] + p_code = "undefined" + if addresses.get('postcode'): + p_code = addresses.get('postcode') + return { + 'lat': location.latitude, + 'lng': location.longitude, + 'country': country, + 'p_code': p_code + } diff --git a/customer_geolocation/doc/RELEASE_NOTES.md b/customer_geolocation/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..e1c37c5a3 --- /dev/null +++ b/customer_geolocation/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 14.03.2023 +#### Version 16.0.1.0.0 +#### ADD + +- Initial commit for Customer Geolocation diff --git a/customer_geolocation/static/description/assets/icons/check.png b/customer_geolocation/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/customer_geolocation/static/description/assets/icons/check.png differ diff --git a/customer_geolocation/static/description/assets/icons/chevron.png b/customer_geolocation/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/customer_geolocation/static/description/assets/icons/chevron.png differ diff --git a/customer_geolocation/static/description/assets/icons/cogs.png b/customer_geolocation/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/customer_geolocation/static/description/assets/icons/cogs.png differ diff --git a/customer_geolocation/static/description/assets/icons/consultation.png b/customer_geolocation/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/customer_geolocation/static/description/assets/icons/consultation.png differ diff --git a/customer_geolocation/static/description/assets/icons/ecom-black.png b/customer_geolocation/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/customer_geolocation/static/description/assets/icons/ecom-black.png differ diff --git a/customer_geolocation/static/description/assets/icons/education-black.png b/customer_geolocation/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/customer_geolocation/static/description/assets/icons/education-black.png differ diff --git a/customer_geolocation/static/description/assets/icons/hotel-black.png b/customer_geolocation/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/customer_geolocation/static/description/assets/icons/hotel-black.png differ diff --git a/customer_geolocation/static/description/assets/icons/license.png b/customer_geolocation/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/customer_geolocation/static/description/assets/icons/license.png differ diff --git a/customer_geolocation/static/description/assets/icons/lifebuoy.png b/customer_geolocation/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/customer_geolocation/static/description/assets/icons/lifebuoy.png differ diff --git a/customer_geolocation/static/description/assets/icons/manufacturing-black.png b/customer_geolocation/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/customer_geolocation/static/description/assets/icons/manufacturing-black.png differ diff --git a/customer_geolocation/static/description/assets/icons/pos-black.png b/customer_geolocation/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/customer_geolocation/static/description/assets/icons/pos-black.png differ diff --git a/customer_geolocation/static/description/assets/icons/puzzle.png b/customer_geolocation/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/customer_geolocation/static/description/assets/icons/puzzle.png differ diff --git a/customer_geolocation/static/description/assets/icons/restaurant-black.png b/customer_geolocation/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/customer_geolocation/static/description/assets/icons/restaurant-black.png differ diff --git a/customer_geolocation/static/description/assets/icons/service-black.png b/customer_geolocation/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/customer_geolocation/static/description/assets/icons/service-black.png differ diff --git a/customer_geolocation/static/description/assets/icons/trading-black.png b/customer_geolocation/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/customer_geolocation/static/description/assets/icons/trading-black.png differ diff --git a/customer_geolocation/static/description/assets/icons/training.png b/customer_geolocation/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/customer_geolocation/static/description/assets/icons/training.png differ diff --git a/customer_geolocation/static/description/assets/icons/update.png b/customer_geolocation/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/customer_geolocation/static/description/assets/icons/update.png differ diff --git a/customer_geolocation/static/description/assets/icons/user.png b/customer_geolocation/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/customer_geolocation/static/description/assets/icons/user.png differ diff --git a/customer_geolocation/static/description/assets/icons/wrench.png b/customer_geolocation/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/customer_geolocation/static/description/assets/icons/wrench.png differ diff --git a/customer_geolocation/static/description/assets/misc/categories.png b/customer_geolocation/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/customer_geolocation/static/description/assets/misc/categories.png differ diff --git a/customer_geolocation/static/description/assets/misc/check-box.png b/customer_geolocation/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/customer_geolocation/static/description/assets/misc/check-box.png differ diff --git a/customer_geolocation/static/description/assets/misc/compass.png b/customer_geolocation/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/customer_geolocation/static/description/assets/misc/compass.png differ diff --git a/customer_geolocation/static/description/assets/misc/corporate.png b/customer_geolocation/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/customer_geolocation/static/description/assets/misc/corporate.png differ diff --git a/customer_geolocation/static/description/assets/misc/customer-support.png b/customer_geolocation/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/customer_geolocation/static/description/assets/misc/customer-support.png differ diff --git a/customer_geolocation/static/description/assets/misc/cybrosys-logo.png b/customer_geolocation/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/customer_geolocation/static/description/assets/misc/cybrosys-logo.png differ diff --git a/customer_geolocation/static/description/assets/misc/features.png b/customer_geolocation/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/customer_geolocation/static/description/assets/misc/features.png differ diff --git a/customer_geolocation/static/description/assets/misc/logo.png b/customer_geolocation/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/customer_geolocation/static/description/assets/misc/logo.png differ diff --git a/customer_geolocation/static/description/assets/misc/pictures.png b/customer_geolocation/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/customer_geolocation/static/description/assets/misc/pictures.png differ diff --git a/customer_geolocation/static/description/assets/misc/pie-chart.png b/customer_geolocation/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/customer_geolocation/static/description/assets/misc/pie-chart.png differ diff --git a/customer_geolocation/static/description/assets/misc/right-arrow.png b/customer_geolocation/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/customer_geolocation/static/description/assets/misc/right-arrow.png differ diff --git a/customer_geolocation/static/description/assets/misc/star.png b/customer_geolocation/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/customer_geolocation/static/description/assets/misc/star.png differ diff --git a/customer_geolocation/static/description/assets/misc/support.png b/customer_geolocation/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/customer_geolocation/static/description/assets/misc/support.png differ diff --git a/customer_geolocation/static/description/assets/misc/whatsapp.png b/customer_geolocation/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/customer_geolocation/static/description/assets/misc/whatsapp.png differ diff --git a/customer_geolocation/static/description/assets/modules/1.png b/customer_geolocation/static/description/assets/modules/1.png new file mode 100644 index 000000000..5238bdeab Binary files /dev/null and b/customer_geolocation/static/description/assets/modules/1.png differ diff --git a/customer_geolocation/static/description/assets/modules/2.png b/customer_geolocation/static/description/assets/modules/2.png new file mode 100644 index 000000000..1ae7cfe3b Binary files /dev/null and b/customer_geolocation/static/description/assets/modules/2.png differ diff --git a/customer_geolocation/static/description/assets/modules/3.png b/customer_geolocation/static/description/assets/modules/3.png new file mode 100644 index 000000000..3c3ff1afb Binary files /dev/null and b/customer_geolocation/static/description/assets/modules/3.png differ diff --git a/customer_geolocation/static/description/assets/modules/4.png b/customer_geolocation/static/description/assets/modules/4.png new file mode 100644 index 000000000..3fae4631e Binary files /dev/null and b/customer_geolocation/static/description/assets/modules/4.png differ diff --git a/customer_geolocation/static/description/assets/modules/5.gif b/customer_geolocation/static/description/assets/modules/5.gif new file mode 100644 index 000000000..2a5f8e659 Binary files /dev/null and b/customer_geolocation/static/description/assets/modules/5.gif differ diff --git a/customer_geolocation/static/description/assets/modules/6.png b/customer_geolocation/static/description/assets/modules/6.png new file mode 100644 index 000000000..7f2815273 Binary files /dev/null and b/customer_geolocation/static/description/assets/modules/6.png differ diff --git a/customer_geolocation/static/description/assets/screenshots/geo.gif b/customer_geolocation/static/description/assets/screenshots/geo.gif new file mode 100644 index 000000000..231a57afa Binary files /dev/null and b/customer_geolocation/static/description/assets/screenshots/geo.gif differ diff --git a/customer_geolocation/static/description/assets/screenshots/geo1.png b/customer_geolocation/static/description/assets/screenshots/geo1.png new file mode 100644 index 000000000..bdab51001 Binary files /dev/null and b/customer_geolocation/static/description/assets/screenshots/geo1.png differ diff --git a/customer_geolocation/static/description/assets/screenshots/geo2.png b/customer_geolocation/static/description/assets/screenshots/geo2.png new file mode 100644 index 000000000..8059d65b5 Binary files /dev/null and b/customer_geolocation/static/description/assets/screenshots/geo2.png differ diff --git a/customer_geolocation/static/description/assets/screenshots/geo3.png b/customer_geolocation/static/description/assets/screenshots/geo3.png new file mode 100644 index 000000000..cf13aea71 Binary files /dev/null and b/customer_geolocation/static/description/assets/screenshots/geo3.png differ diff --git a/customer_geolocation/static/description/assets/screenshots/geo4.png b/customer_geolocation/static/description/assets/screenshots/geo4.png new file mode 100644 index 000000000..8c1323a5f Binary files /dev/null and b/customer_geolocation/static/description/assets/screenshots/geo4.png differ diff --git a/customer_geolocation/static/description/banner.png b/customer_geolocation/static/description/banner.png new file mode 100644 index 000000000..6058f6c3b Binary files /dev/null and b/customer_geolocation/static/description/banner.png differ diff --git a/customer_geolocation/static/description/icon.png b/customer_geolocation/static/description/icon.png new file mode 100644 index 000000000..cccd2fdb8 Binary files /dev/null and b/customer_geolocation/static/description/icon.png differ diff --git a/customer_geolocation/static/description/index.html b/customer_geolocation/static/description/index.html new file mode 100644 index 000000000..b7e86fd2d --- /dev/null +++ b/customer_geolocation/static/description/index.html @@ -0,0 +1,558 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ +
+
+
+ +

+ Customer GeoLocation In Website

+

Helps Customers to Fetch their Address through Map.

+ + +
+
+
+ + +
+ + +
+
+ +
+

Explore This + Module

+
+ + + + +
+
+ +
+

Overview +

+
+
+
+ It will help customer to add their address from website when they logged in.The customer can pinpoint their exact location in map it will automatically + load into belongs fields like city,zip and country,customers don’t need to add addresses manually. +
+
+ + + +
+
+ +
+

Features +

+
+
+
+
+ + The users do not need to add address details manually + . +
+
+ + Page will automatically load existing address and shows in map when page open. +
+
+ + When user change their city name manually, the map will shows existing address and the country name and zip code will also change. +
+
+ + Users can pinpoint their exact location in the map, the details will load into fields automatically and users can confirm it. +
+
+
+
+
+ + + +
+
+ +
+

Screenshots +

+
+
+
+ +
+

Create Google API Key from https://console.cloud.google.com/ +

+

*Required:install Python packages Geopy and Pytz

+
+ +
+

Copy and paste the api key in field that we set in odoo settings +

+

+ +
+ +
+

Open the website, in my account page the existing address will load in fields and maps in there +

+

+ +
+ +
+

When we change the city in field, map and other fields like country and zip will change automatically +

+

+ +
+ +
+

If user change location through map the address will automatically change in their fields, it helps the users +

+

+ +
+ +
+
+ + + +
+
+ +
+

Related + Products +

+
+
+
+ +
+
+ + + + +
+
+ +
+

Our Services +

+
+ +
+
+
+
+ +
+
+ Odoo + Customization
+
+ +
+
+ +
+
+ Odoo + Implementation
+
+ +
+
+ +
+
+ Odoo + Support
+
+ + +
+
+ +
+
+ Hire + Odoo + Developer
+
+ +
+
+ +
+
+ Odoo + Integration
+
+ +
+
+ +
+
+ Odoo + Migration
+
+ + +
+
+ +
+
+ Odoo + Consultancy
+
+ +
+
+ +
+
+ Odoo + Implementation
+
+ +
+
+ +
+
+ Odoo + Licensing Consultancy
+
+
+ +
+ + + + + +
+
+ +
+

Our + Industries +

+
+ +
+
+
+
+ +
+ Trading +
+

+ Easily procure + and + sell your products

+
+
+ +
+
+ +
+ POS +
+

+ Easy + configuration + and convivial experience

+
+
+ +
+
+ +
+ Education +
+

+ A platform for + educational management

+
+
+ +
+
+ +
+ Manufacturing +
+

+ Plan, track and + schedule your operations

+
+
+ +
+
+ +
+ E-commerce & Website +
+

+ Mobile + friendly, + awe-inspiring product pages

+
+
+ +
+
+ +
+ Service Management +
+

+ Keep track of + services and invoice

+
+
+ +
+
+ +
+ Restaurant +
+

+ Run your bar or + restaurant methodically

+
+
+ +
+
+ +
+ Hotel Management +
+

+ An + all-inclusive + hotel management application

+
+
+
+
+ + + + +
+
+ +
+

Support +

+
+
+
+
+
+
+ +
+
+

Need Help?

+

Got questions or need help? Get in touch.

+ +

+ odoo@cybrosys.com

+
+
+
+
+
+
+
+ +
+
+

WhatsApp

+

Say hi to us on WhatsApp!

+ +

+91 86068 + 27707

+
+
+
+
+
+
+
+ +
+
+
+ \ No newline at end of file diff --git a/customer_geolocation/static/src/css/cust_geolocation.css b/customer_geolocation/static/src/css/cust_geolocation.css new file mode 100644 index 000000000..1c5d5548d --- /dev/null +++ b/customer_geolocation/static/src/css/cust_geolocation.css @@ -0,0 +1,8 @@ +#wrap { + +} +#map { + float: right; + width: 70%; + height: 450px; + } \ No newline at end of file diff --git a/customer_geolocation/views/portal_templates.xml b/customer_geolocation/views/portal_templates.xml new file mode 100644 index 000000000..ecf518be4 --- /dev/null +++ b/customer_geolocation/views/portal_templates.xml @@ -0,0 +1,214 @@ + + + + + + + + + + +