Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Artificial Intelligence
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Property Management
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

I can´t install my Module (My Module crash Odoo)

Subscriure's

Get notified when there's activity on this post

This question has been flagged
modulesodooodooV9
1 Respondre
4924 Vistes
Avatar
Patrick

Hi i have a Problem :
I made a Modul for Odoo (Ver. 9 ) , this Modul Imports Products over Itscope API and XMLRPC.
When i want to install this Modul , Odoo is only loading a long time.
This is the Loading Screen :
 https://picload.org/image/rarigcra/modul.png
The folder structure is:
     - ->demo:
         -->demo.xml
    -->models:
       -->__init__.py
       -->models.py
      -->models.xml
   -->security:
       -->ir.model.access.csv
   -->__init__.py
  -->__openerp__.py
This are the Files:
models.py

# -*- encoding: utf-8 -*-
#Description: ITScope Modul für Odoo
#Dev: Patrick Mitteregger
from openerp import osv, fields, api
from openerp.tools.translate import _
from httplib import *
from base64 import b64encode
import libxml2import
xmlrpcliburl = 'XXXXXXXXXXX'
username = 'XXXXXX'
pwd = 'XXXXXXXXXX'
dbname = 'XXXXXXXXX'
sock_common = xmlrpclib.ServerProxy('{}/xmlrpc/common'.format(url))
login = sock_common.login(dbname,username,pwd)
sock = xmlrpclib.ServerProxy('{}/xmlrpc/object'.format(url))
product = 'product.template'
accountID = "XXXXXX"
apiKey = "XXXXXXXX"
ean = 0
class product_search(osv.osv):
########################################################################
#Auswahl des Nutzers (Über Formular) auslesen und in Variablen speichern#
#########################################################################
_name = 'itscope_modul.itscope_modul'
eanumber = fields.Float('EAN',required=True,string="Ean")
language = fields.Char('Language',default="de",string="lang")
@api.one def
search_prod():
#########################################################################
#Mit der ItScope API verbinden und die Infos vom Produkt holen #
 #########################################################################
try:
headers = {'Authorization' : 'Basic %s' % base64.b64encode(accountID+ ':'+ apiKey), 'Accept-Language' : language}
url = "https://api.itscope.com/2.0" Get = "/products/ean/" + eanumber + "/standard." + "xml"
req = urllib2.Request(url + Get,headers=headers)
response = urllib2.urlopen(req)
itscope = response.read()
xmlread = libxml2.parseDoc(itscope)
# Antwort-XML Feld auswahl
eancode = xmlread.xpathEval('/products/product/ean')
prodname = xmlread.xpathEval('/products/product/supplierItems/supplierItem/productName')
manuf = xmlread.xpathEval('/products/product/supplierItems/supplierItem/manufacturerName ')
description = xmlread.xpathEval('/products/product/longDescription')
pricelist = xmlread.xpathEval('/products/product/price')
except Exception,e:
print str(e)
#########################################################################
#Die Infos zum Produkt in die Datenbank eintragen #
#########################################################################
try:
product_colum={ 'barcode': eancode[0].content, 'name' : prodname[0].content, 'list_price' : pricelist[0].content, 'manufacture': manuf[0].content, 'description_sale' : description[0].content }
prodimport = sock.execute(dbname,login,pwd,product,'create',product_colum)
print "Produkt wurde erfolgreich eingetragen"
except Exception ,e :
print str(e)

models.xml:

<?xml version='1.0' encoding='utf-8'?>
<openerp>
<data>
<record id="itscope_modul_wizard" model="ir.ui.view">
<field name="name">itscope.modul.wizard.form</field>
<field name="model">itscope.modul.wizard</field>
<field name="arch" type="xml">
<form string="Import Itscope" version="0.1">
<group col="4" colspan="4" attrs="{'invisible':[('state','=','done')]}">
<label string="Willkommen beim Itscope Import" colspan="4"/>
<field name="Ean"/><newline/>
<field name="Language"/><newline/>
 </group>
<group col="2" colspan="4">
<field name="state" invisible="1"/>
<button string="Cancel" special="cancel" icon="gtk-cancel" states="first"/>
<button string="import" name="search_prod" type="object" icon="gtk-ok" states="first"/>
<button string="Close" special="cancel" icon="gtk-ok" states="done"/>
</group>
</form>
</field>
</record>
<act_window name="Import Itscope" res_model="itscope.modul.wizard" src_model="product.product" view_mode="form" target="new" key2="client_action_multi" id="itscope_modul_act"/>
</data>
</openerp>
0
Avatar
Descartar
Avatar
Patrick
Autor Best Answer

I solved the Problem. The Problem was the installed Odoo not my Module.

0
Avatar
Descartar
Enjoying the discussion? Don't just read, join in!

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

Registrar-se
Related Posts Respostes Vistes Activitat
Unmet Dependencies in odoo14
modules odoo
Avatar
Avatar
1
de juny 21
7829
comment je peux crée un module hérité d'autres modules ?
modules odooV9
Avatar
0
de gen. 24
5336
Module not install in new database
odoo odooV9
Avatar
3
de febr. 20
1300
Can I buy some of the Odoo v9 Enterprise modules to use on the Community Edition?
modules odooV9
Avatar
Avatar
2
de des. 15
7039
How to create multiple task in a existing project by code? Solved
community modules odoo
Avatar
Avatar
Avatar
3
d’ag. 21
5879
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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