Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Artificial Intelligence
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Priemyselné odvetvia
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Reštaurácia
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Reality
    • Real Estate Agency
    • Architecture Firm
    • Konštrukcia
    • Property Management
    • Gardening
    • Property Owner Association
    Poradenstvo
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Jedlo
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Iní
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Pomoc
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

Fast Payment method from Quotation

Odoberať

Get notified when there's activity on this post

This question has been flagged
salesinvoicesales_order
2 Replies
7084 Zobrazenia
Avatar
Prasanth KS

Hello,

       I have one problem , from sales i need to create one button to create invoice and register the payment. with in one click.

i got one solution to do quotation to Invoice by one click, but now i need to add the invoice to register payment method into it.

"""""""" this is my code , give me one hand to do this

for sale in self:

# Process order

sale.action_button_confirm()

inv_id = sale.action_invoice_create()

if inv_id:

inv = self.env['account.invoice'].browse(inv_id)

inv.signal_workflow('invoice_open')

voc = self.env

self.signal_workflow(cr, uid, ids, 'proforma_voucher')

for picking in sale.picking_ids:

picking.force_assign()

picking.action_done()


***********************

it can able to create invoice within one click, but i need to complete all process including payment  into it.

0
Avatar
Zrušiť
Prasanth ks

actually it is in odoo 9 coding, i already done this , but it is in v8, so u can refer this,

Avatar
Prasanth ks
Best Answer

invoice_obj.write(cr,uid,invoice_id,{'state':'open'})

invoice_datas = invoice_obj.browse(cr, uid, invoice_id)

move_id = invoice_datas.move_id.id

print"Single Invoice",move_id

date=datetime.datetime.now()

data = voucher_obj.onchange_partner_id(cr, uid, [],data_partner.id, invoice_datas.journal_id.id ,0.0, False, 'receipt', date, context)['value']

journal_ids = journal_obj.search(cr, uid, [('type','in',['cash','bank'])])

statement_vals = {

'reference': invoice_datas.number,

'journal_id': journal_ids[0],

'amount': invoice_datas.amount_total,

'date' : date,

'partner_id': data_partner.id,

'account_id': invoice_datas.account_id.id,

'type': 'receipt',

'company_id':1,

}

if data.get('payment_rate_currency_id'):

statement_vals['payment_rate_currency_id'] = data['payment_rate_currency_id']

if data.get('paid_amount_in_company_currency'):

statement_vals['paid_amount_in_company_currency'] = data['paid_amount_in_company_currency']

if data.get('writeoff_amount'):

statement_vals['writeoff_amount'] =data['writeoff_amount']

if data.get('pre_line'):

statement_vals['pre_line'] = data['pre_line']

if data.get('payment_rate'):

statement_vals['payment_rate'] = data['payment_rate']

statement_id = voucher_obj.create(cr, uid, statement_vals, context)

print'+++++++++++++++++++++',data.get('line_cr_ids')

for line_cr in data.get('line_cr_ids'):

line_cr.update({'voucher_id':statement_id})

if line_cr['name']==invoice_datas.number:

line_cr['amount']=line_cr['amount_original']

line_cr['reconcile']=True

line_cr_id=voucher_line_obj.create(cr,uid,line_cr)

for line_dr in data.get('line_dr_ids'):

line_dr.update({'voucher_id':statement_id})

line_dr_id=voucher_line_obj.create(cr,uid,line_dr)

0
Avatar
Zrušiť
Enjoying the discussion? Don't just read, join in!

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

Registrácia
Related Posts Replies Zobrazenia Aktivita
Problem with sales order pdf quotation
sales sales_order
Avatar
1
máj 25
2497
Sales upload Template required
sales invoice
Avatar
Avatar
2
dec 23
5523
Importing confirmed sales orders?
sales sales_order
Avatar
Avatar
Avatar
Avatar
3
okt 23
6077
Sales orders that have been billed are kept with "To Invoice" status Solved
sales invoice
Avatar
Avatar
Avatar
Avatar
6
mar 22
12218
[18] have different invoice status for invoices needind manager validation and fully invoiced orders
sales accounting invoice
Avatar
Avatar
Avatar
2
apr 26
901
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة 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 sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

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