Overslaan naar inhoud
Odoo Menu
  • Aanmelden
  • Probeer het gratis
  • Apps
    Financiën
    • Boekhouding
    • Facturatie
    • Onkosten
    • Spreadsheet (BI)
    • Documenten
    • Ondertekenen
    Verkoop
    • CRM
    • Verkoop
    • Kassasysteem winkel
    • Kassasysteem Restaurant
    • Abonnementen
    • Verhuur
    Websites
    • Websitebouwer
    • E-commerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Bevoorradingsketen
    • Voorraad
    • Productie
    • PLM
    • Inkoop
    • Onderhoud
    • Kwaliteit
    Personeelsbeheer
    • Werknemers
    • Werving & Selectie
    • Verlof
    • Evaluaties
    • Aanbevelingen
    • Wagenpark
    Marketing
    • Social media Marketing
    • E-mailmarketing
    • SMS Marketing
    • Evenementen
    • Marketingautomatisering
    • Enquêtes
    Diensten
    • Project
    • Urenstaten
    • Buitendienst
    • Helpdesk
    • Planning
    • Afspraken
    Productiviteit
    • Chat
    • Goedkeuringen
    • IoT
    • VoIP
    • Kennis
    • WhatsApp
    Apps van derden Odoo Studio Odoo Cloud Platform
  • Bedrijfstakken
    Detailhandel
    • Boekhandel
    • kledingwinkel
    • Meubelzaak
    • Supermarkt
    • Bouwmarkt
    • Speelgoedwinkel
    Food & Hospitality
    • Bar en Pub
    • Restaurant
    • Fastfood
    • Gastenverblijf
    • Drankenhandelaar
    • Hotel
    Vastgoed
    • Makelaarskantoor
    • Architectenbureau
    • Bouw
    • Vastgoedbeheer
    • Tuinieren
    • Vereniging van eigenaren
    Consulting
    • Accountantskantoor
    • Odoo Partner
    • Marketingbureau
    • Advocatenkantoor
    • Talentenwerving
    • Audit & Certificering
    Productie
    • Textiel
    • Metaal
    • Meubels
    • Eten
    • Brewery
    • Relatiegeschenken
    Gezondheid & Fitness
    • Sportclub
    • Opticien
    • Fitnesscentrum
    • Wellness-medewerkers
    • Apotheek
    • Kapper
    Trades
    • Klusjesman
    • IT-hardware & support
    • Zonne-energiesystemen
    • Schoenmaker
    • Schoonmaakdiensten
    • HVAC-diensten
    Andere
    • Non-profitorganisatie
    • Milieuagentschap
    • Verhuur van Billboards
    • Fotograaf
    • Fietsleasing
    • Softwareverkoper
    Browse all Industries
  • Community
    Leren
    • Tutorials
    • Documentatie
    • Certificeringen
    • Training
    • Blog
    • Podcast
    Versterk het onderwijs
    • Onderwijs- programma
    • Scale Up! Business Game
    • Bezoek Odoo
    Download de Software
    • Downloaden
    • Vergelijk edities
    • Releases
    Werk samen
    • Github
    • Forum
    • Evenementen
    • Vertalingen
    • Word een Partner
    • Services for Partners
    • Registreer je accountantskantoor
    Diensten
    • Vind een partner
    • Vind een boekhouder
    • Een adviseur ontmoeten
    • Implementatiediensten
    • Klantreferenties
    • Ondersteuning
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Vraag een demo aan
  • Prijzen
  • Help

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Boekhouding
  • Voorraad
  • PoS
  • Project
  • MRP
All apps
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Help

Create Invoice from a Sale Order using node.js

Inschrijven

Ontvang een bericht wanneer er activiteit is op deze post

Deze vraag is gerapporteerd
codeinvoicecreatesale.ordernodejs
1 Beantwoorden
5598 Weergaven
Avatar
Axel A.

Hi,

I'm trying to create an invoice from a sale order. When using the interface, I can click on 'Create Invoice', this will open a pop-up, giving me few options and allowing to confirm by clickin on 'Create Invoice' again.Trough this process my invoice is generated from a sale order.

I'd like to do it in node.js, so I know I have to call 2 actions:

- invoice_order, which create an invoice from sale order

- create invoices, which validate the pop-up

My problem is, I don't know how and I can't find any example on how to call those methods.

The node package I'm using: https://www.npmjs.com/package/odoo?activeTab=readmeThe only 'example' I could find is the rpc_call, but I keep having errors such as

{ debug: 'Traceback (most recent call last):\n File "/usr/lib/python2.7/dist-packages/odoo/http.py", line 638, in _handle_exception\n return super(JsonRequest, self)._handle_exception(exception)\n File "/usr/lib/python2.7/dist-packages/odoo/http.py", line 675, in dispatch\n result = self._call_function(**self.params)\n File "/usr/lib/python2.7/dist-packages/odoo/http.py", line 331, in _call_function\n return checked_call(self.db, *args, **kwargs)\n File "/usr/lib/python2.7/dist-packages/odoo/service/model.py", line 119, in wrapper\n return f(dbname, *args, **kwargs)\n File "/usr/lib/python2.7/dist-packages/odoo/http.py", line 324, in checked_call\n result = self.endpoint(*a, **kw)\n File "/usr/lib/python2.7/dist-packages/odoo/http.py", line 933, in __call__\n return self.method(*args, **kw)\n File "/usr/lib/python2.7/dist-packages/odoo/http.py", line 504, in response_wrap\n response = f(*args, **kw)\n File "/usr/lib/python2.7/dist-packages/odoo/addons/web/controllers/main.py", line 885, in call_kw\n return self._call_kw(model, method, args, kwargs)\n File "/usr/lib/python2.7/dist-packages/odoo/addons/web/controllers/main.py", line 877, in _call_kw\n return call_kw(request.env[model], method, args, kwargs)\n File "/usr/lib/python2.7/dist-packages/odoo/api.py", line 677, in call_kw\n method = getattr(type(model), name)\nAttributeError: type object \'sale.order\' has no attribute \'invoice_order\'\n',

exception_type: 'internal_error',

message: 'type object \'sale.order\' has no attribute \'invoice_order\'',

name: 'exceptions.AttributeError',

arguments:

[ 'type object \'sale.order\' has no attribute \'invoice_order\'' ] } }

Any lead on how I can directly call methods from odoo ?

Thanks, 

0
Avatar
Annuleer
Avatar
Axel A.
Auteur Beste antwoord

Hi

I'm still stuck in this process, any hints ?

0
Avatar
Annuleer
Geniet je van het gesprek? Blijf niet alleen lezen, doe ook mee!

Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!

Aanmelden
Gerelateerde posts Antwoorden Weergaven Activiteit
Trying to resize signature on invoice
code invoice
Avatar
Avatar
1
jun. 24
3120
Create new invoice by code Opgelost
code invoice
Avatar
Avatar
1
nov. 22
19585
Create invoice from sales order using xml-rpc (python)
invoice sale.order
Avatar
Avatar
1
okt. 22
4909
Different Sale Order and Invoice description for one Product
invoice sale.order
Avatar
Avatar
1
feb. 17
3772
Different sales orders on a single invoice Opgelost
invoice sale.order
Avatar
Avatar
2
jan. 17
7891
Community
  • Tutorials
  • Documentatie
  • Forum
Open Source
  • Downloaden
  • Github
  • Runbot
  • Vertalingen
Diensten
  • Odoo.sh Hosting
  • Ondersteuning
  • Upgrade
  • Gepersonaliseerde ontwikkelingen
  • Onderwijs
  • Vind een boekhouder
  • Vind een partner
  • Word een Partner
Over ons
  • Ons bedrijf
  • Merkelementen
  • Neem contact met ons op
  • Vacatures
  • Evenementen
  • Podcast
  • Blog
  • Klanten
  • Juridisch • Privacy
  • Beveiliging
الْعَرَبيّة 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 ภาษาไทย Türkçe українська Tiếng Việt

Odoo is een suite van open source zakelijke apps die aan al je bedrijfsbehoeften voldoet: CRM, E-commerce, boekhouding, inventaris, kassasysteem, projectbeheer, enz.

Odoo's unieke waardepropositie is om tegelijkertijd zeer gebruiksvriendelijk en volledig geïntegreerd te zijn.

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