Přejít na obsah
Odoo Menu
  • Přihlásit se
  • Vyzkoušejte zdarma
  • Aplikace
    Finance
    • Účetnictví
    • Fakturace
    • Výdaje
    • Spreadsheet (BI)
    • Dokumenty
    • Podpisy
    Prodej
    • CRM
    • Prodej
    • POS Obchod
    • POS Restaurace
    • Předplatné
    • Pronájem
    Webové stránky
    • Webové stránky
    • E-shop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Dodavatelský řetězec
    • Sklad
    • Výroba
    • PLM
    • Nákup
    • Údržba
    • Kvalita
    Lidské zdroje
    • Zaměstnanci
    • Nábor
    • Volno
    • Hodnocení zaměstnanců
    • Doporučení
    • Vozový park
    Marketing
    • Marketing sociálních sítí
    • Emailový marketing
    • SMS Marketing
    • Události
    • Marketingová automatizace
    • Dotazníky
    Služby
    • Projekt
    • Časové výkazy
    • Práce v terénu
    • Helpdesk
    • Plánování
    • Schůzky
    Produktivita
    • Diskuze
    • Umělá inteligence
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Aplikace třetích stran Odoo Studio Odoo cloudová platforma
  • Branže
    Maloobchod
    • Knihkupectví
    • Obchod s oblečením
    • Obchod s nábytkem
    • Potraviny
    • Obchod s hardwarem
    • Hračkářství
    Jídlo a pohostinství
    • Bar a Pub
    • Restaurace
    • Fast Food
    • Penzion
    • Distributor nápojů
    • Hotel
    Nemovitost
    • Realitní kancelář
    • Architektonická firma
    • Stavba
    • Správa nemovitostí
    • Zahradnictví
    • Asociace vlastníků nemovitosti
    Poradenství
    • Účetní firma
    • Odoo Partner
    • Marketingová agentura
    • Právník
    • Akvizice talentů
    • Audit a certifikace
    Výroba
    • Textil
    • Kov
    • Nábytek
    • Jídlo
    • Pivovar
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Transakce
    • Údržbář
    • Podpora IT & hardware
    • Systémy solární energie
    • Výrobce obuvi
    • Úklidové služby
    • Služby HVAC
    Ostatní
    • Nezisková organizace
    • Agentura pro životní prostředí
    • Pronájem billboardů
    • Fotografování
    • Leasing jízdních kol
    • Prodejce softwaru
    Procházet všechna odvětví
  • Komunita
    Edukační program
    • Tutoriály
    • Dokumentace
    • Certifikace
    • Vzdělávání
    • Blog
    • Podcast
    Podpora vzdělávání
    • Vzdělávací program
    • Scale Up! Hra na firmu
    • Navštivte Odoo
    Získat software
    • Stáhnout
    • Porovnejte edice
    • Verze
    Spolupráce
    • Github
    • Fórum
    • Události
    • Překlady
    • Stát se partnerem
    • Služby pro partnery
    • Registrujte svou účetní firmu
    Získat služby
    • Najít partnera
    • Najít účetní
    • Setkejte se s poradcem
    • Implementační služby
    • Zákaznické reference
    • Podpora
    • Upgrady
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dohodnout demo
  • Ceník
  • Pomoc
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
Pomoc

Menu Item not Appering and No Result of Code..

Odebírat

Get notified when there's activity on this post

This question has been flagged
odooodooV8odoo8.0
1 Odpovědět
7320 Zobrazení
Avatar
Mazhar Iqbal Rana

Hi There

Module is installed propey after writing the code in xml but menu item id not appearing above in parent..

_init__.opy

 

import sea

 

_openerp__.py

# -*- coding: utf-8 -*-
{
    'name': "vessel Tracker",

    'summary': """Vssel Finder""",

    'description': """
        Module for tracking vessels:
            It handles millions of vessel position records daily. Our API allows you to integrate our data into your application or website. You can harness all this data, along with port calls, ship particulars etc. to build powerful applications for real-time, targeted intelligence.
Get started by selecting an option from the available services below. Please contact us if you can't find what you are looking for.
    """,

    'author': "RANA",
    'website': "http://www.my-cricket.weebly.com",

    # Categories can be used to filter modules in modules listing
    # Check https://github.com/odoo/odoo/blob/master/openerp/addons/base/module/module_data.xml
    # for the full list
    'category': 'Fleet',
    'version': '0.1',

    # any module necessary for this one to work correctly
    'depends': ['base'],
   
    # always loaded
    'data': [
        # 'security/ir.model.access.csv',
        #'track.xml',
    #'act_data.xml',
    'sea_view.xml',
        
    ],
    # only loaded in demonstration mode
    'demo': [
        
    ],
'js': ["static/src/sea.js"],
}

 

My sea.py file

from openerp import models, fields,api
import canvas
import math

class Sea(models.Model):
    _name = 'vessel.track'


File of seamodule/static/src/sea.js

<script type="text/javascript">
// Map Size
var width='800';  // width of the embedded map in pixels (min. 600 px) or percentage (default=600px)
var height='500'; // height of the embedded map in pixels (min. 400 px) (default=400px)
// Map View (does not work if Ship Selection is used)
var latitude='40.0'; // coordinates of the map center in decimal degrees (not mandatory)
var longitude='2.0';
var zoom='2';        // map zoom level (between 2 and 17)
// Ship selection
// IMPORTANT: USE ONLY ONE OF THE FOLLOWING OPTIONS
// Option 1 – by MMSI
var mmsi='xxxxxxxxx';      // center map over selected vessel specified by MMSI
var show_track=true;       // show track of the selected ship
// Option 2 – by IMO
var imo='xxxxxxx';         // center map over selected vessel specified by IMO
var show_track=true;       // show track of the selected ship
// Option 3 – display user fleet ships
var fleet='your fleet id'; // your fleet key (default is false)
var fleet_hide_old_positions=false; // Hide ships with old positions (default is false)
// Auxiliary parameters
var names=false; // always display ship names (default is false)
var click_to_activate=true; // user has to click on the map before zooming with mouse wheel
var store_position=false; // store the last position of the map (default is false, does not work when ship selection is used
var default_maptype=1; // change default map type: 1 - google.maps.MapTypeId.ROADMAP, 2 - google.maps.MapTypeId.SATELLITE
var map_style=[ // use this tool for custom map styling
{"featureType": "landscape.natural.landcover", "stylers": [{ "hue": "#ffaa00" }]},
{"featureType": "water", "stylers": [{ "hue": "#00a1ff" },{ "saturation": 91 },{ "lightness": -18 }]}];
</script>

 

And sea_view.xml

<?xml version="1.0" encoding="UTF-8"?>
<openerp>
    <data>
        
        <!-- top level menu: no parent -->
        <menuitem id="main_sea_menu" name="Sea Map"/>
        <!-- A first level in the left side menu is needed
             before using action= attribute -->
         <menuitem id="sea_menu" name="Sea Map" parent="main_sea_menu"/>
        <!--the following menuitem should appear *after*
             its parent openacademy_menu and *after* its
             action course_list_action -->
       <!--<menuitem id="maps_menu" name="Sea Map" parent="sea_menu" action="sea_list_action"/>
         Full id location:
             action="openacademy.course_list_action" It is not required when it is the same module -->
      <!-- -<menuitem id="configuration_menu" name="Configuraiton" action="configuration_list_action"/>
    <record model="ir.actions.act_window" id="action_sea_map">
        <field name="name">Ideas</field>
        <field name="res_model">idea.idea</field>
        <field name="view_mode">tree,form</field> -->
    
    <template>
     <html>
        <head>
            <script type="text/javascript" src="static/src/sea.js"/>
            
        </head>
    </html>

    </template>        

</data>
</openerp>

Plesae guide that module installs correctly but data as well as menu item in parent is not shown

 

Thanks

 

 

 

0
Avatar
Zrušit
Mazhar Iqbal Rana
Autor

OK I doo @Vasanth PLease tell remaining code seems ok? Javascript path etc?

Mazhar Iqbal Rana
Autor

Andt his template will come within the record?

Avatar
Vasanth
Nejlepší odpověď

try this in instead of your menu item

        <menuitem name="Sea Map"   id="main_sea_menu" />
        <menuitem name="Sea Map1" parent="main_sea_menu"  id="sea_menu" />
        <menuitem name="Sea Map2" parent="sea_menu"  id="maps_menu" action="sea_list_action" />

 <record model="ir.actions.act_window" id="sea_list_action">
        <field name="name">Ideas</field>
        <field name="res_model">idea.idea</field>
        <field name="view_mode">tree,form</field>

</record>

2
Avatar
Zrušit
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Přihlásit se
Related Posts Odpovědi Zobrazení Aktivita
Created automatically in website_sale (possible bot traffic?)
odoo odooV8 odoo8.0
Avatar
0
dub 26
20
odoo 8.0 opening balance doesn't appear in balance sheet and trail balance
odoo odooV8 odoo8.0
Avatar
Avatar
1
pro 24
6086
set default user Vyřešeno
odoo odooV8 odoo8.0
Avatar
Avatar
1
lis 16
11456
TRANSFER ODOO V8 DATABASE TO ANOTHER PC BUT CANT BOOT WINDOWS 7
odoo odooV8 odoo8.0
Avatar
Avatar
1
úno 16
5642
Keeping excel fonts Same? Odoo 8
odoo odooV8 odoo8.0
Avatar
0
bře 15
4860
Komunita
  • Tutoriály
  • Dokumentace
  • Fórum
Open Source
  • Stáhnout
  • Github
  • Runbot
  • Překlady
Služby
  • Odoo.sh hostování
  • Podpora
  • Upgrade
  • Nestandardní vývoj
  • Edukační program
  • Najít účetní
  • Najít partnera
  • Stát se partnerem
O nás
  • Naše společnost
  • Podklady značky
  • Kontakujte nás
  • Práce
  • Události
  • Podcast
  • Blog
  • Zákazníci
  • Právní dokumenty • Soukromí
  • Zabezpečení
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk Slovenščina Español (América Latina) Español Svenska ภาษาไทย Türkçe українська Tiếng Việt

Odoo je balíček open-source aplikací, které pokrývají všechny potřeby vaší společnosti: CRM, e-shop, účetnictví, sklady, kasy, projektové řízení a další.

Unikátní nabídka od Odoo poskytuje velmi jednoduché uživatelské rozhraní a vše je integrované na jednom místě.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now