Skip to Content
Odoo Menu
  • Prijavi
  • Try it free
  • Aplikacije
    Finance
    • Knjigovodstvo
    • Obračun
    • Stroški
    • Spreadsheet (BI)
    • Dokumenti
    • Podpisovanje
    Prodaja
    • CRM
    • Prodaja
    • POS Shop
    • POS Restaurant
    • Naročnine
    • Najem
    Spletne strani
    • Website Builder
    • Spletna trgovina
    • Blog
    • Forum
    • Pogovor v živo
    • eUčenje
    Dobavna veriga
    • Zaloga
    • Proizvodnja
    • PLM
    • Nabava
    • Vzdrževanje
    • Kakovost
    Kadri
    • Kadri
    • Kadrovanje
    • Odsotnost
    • Ocenjevanja
    • Priporočila
    • Vozni park
    Marketing
    • Družbeno Trženje
    • Email Marketing
    • SMS Marketing
    • Dogodki
    • Avtomatizacija trženja
    • Ankete
    Storitve
    • Projekt
    • Časovnice
    • Storitve na terenu
    • Služba za pomoč
    • Načrtovanje
    • Termini
    Produktivnost
    • Razprave
    • Odobritve
    • IoT
    • Voip
    • Znanje
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industrije
    Trgovina na drobno
    • Book Store
    • Trgovina z oblačili
    • Trgovina s pohištvom
    • Grocery Store
    • Trgovina s strojno opremo računalnikov
    • Trgovina z igračami
    Food & Hospitality
    • Bar and Pub
    • Restavracija
    • Hitra hrana
    • Guest House
    • Beverage Distributor
    • Hotel
    Nepremičnine
    • Real Estate Agency
    • Arhitekturno podjetje
    • Gradbeništvo
    • Estate Management
    • Vrtnarjenje
    • Združenje lastnikov nepremičnin
    Svetovanje
    • Računovodsko podjetje
    • Odoo Partner
    • Marketinška agencija
    • Law firm
    • Pridobivanje talentov
    • Audit & Certification
    Proizvodnja
    • Tekstil
    • Metal
    • Pohištvo
    • Hrana
    • Brewery
    • Poslovna darila
    Health & Fitness
    • Športni klub
    • Trgovina z očali
    • Fitnes center
    • Wellness Practitioners
    • Lekarna
    • Frizerski salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Sistemi sončne energije
    • Izdelovalec čevljev
    • Čistilne storitve
    • HVAC Services
    Ostali
    • Neprofitna organizacija
    • Agencija za okolje
    • Najem oglasnih panojev
    • Fotografija
    • Najem koles
    • Prodajalec programske opreme
    Browse all Industries
  • Skupnost
    Learn
    • Tutorials
    • Dokumentacija
    • Certifikati
    • Šolanje
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Prenesi
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Dogodki
    • Prevodi
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Sklici kupca
    • Podpora
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Določanje cen
  • Pomoč

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

  • CRM
  • e-Commerce
  • Knjigovodstvo
  • Zaloga
  • PoS
  • Projekt
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
Pomoč

Get values of controller into another controller (odoo v11)

Naroči se

Get notified when there's activity on this post

This question has been flagged
webqwebreportingcontrollersodoov11
4083 Prikazi
Avatar
Abdullah

Following is the code of a controller which is giving a rfq comparison report


@http.route(['/purchase_comparison_chart/purchase_comparison/<model("purchase.requisition"):purchase_requisition_id>'], type='http', auth='public', website=True)

def purchase_comparison(self, purchase_requisition_id, **post):
supplier_ids = []; product_ids=[]; values = []; amt = []; number = []; supplier_id = []
counts = 1
for record in request.env['purchase.order'].sudo().search([('requisition_id', '=', purchase_requisition_id.id)]):
# Append supplier
supplier_ids.append({'supplier_id':record.partner_id.id, 'sname':record.partner_id.name})
supplier_id.append(record.partner_id.id)
number.append(counts)
# Append Products and quantity
counts +=1
for line in record.order_line:
if values:
if line.product_id.id not in product_ids:
product_ids.append(line.product_id.id)
values.append({'product_id':line.product_id.id, 'product_name':line.product_id.name, 'price':line.price_unit, 'uom':line.product_id.uom_po_id.name, 'qty':line.product_qty})
else:
product_ids.append(line.product_id.id)
values.append({'product_id':line.product_id.id,'product_name':line.product_id.name, 'price':line.price_unit, 'uom':line.product_id.uom_po_id.name,'qty':line.product_qty})

count = 0; supplier_amount_total = []; no_of_col = 2 ; even_number = [] ; odd_number = []
# Append amount based on the products and supplier
for separate_values in values:
for suppliers in supplier_ids:
for record in request.env['purchase.order'].sudo().search([('requisition_id', '=', purchase_requisition_id.id),('partner_id', '=',suppliers['supplier_id'])]):
for po_line in request.env['purchase.order.line'].search([('order_id', '=', record.id),('product_id', '=',separate_values['product_id'])]):
amt.append({'total_amount':(po_line.product_qty * po_line.price_unit), 'price':po_line.price_unit})
values[count]['amt'] = amt
count +=1
amt = []
# Generate number to create rows and columns
total_supplier = len(number)
if total_supplier >= 2:
increase_by_supplier = total_supplier * no_of_col
else:
increase_by_supplier = no_of_col
if total_supplier > 1:
total_no = range(1, increase_by_supplier + 1)
supplier_amount_total_1 = list(range(1, increase_by_supplier + 1))
else:
total_no = range(1, increase_by_supplier)
supplier_amount_total_1 = list(range(1, increase_by_supplier))
for c_number in total_no:
if c_number%2 ==0:
even_number.append(c_number)
else:
odd_number.append(c_number)
for record in request.env['purchase.order'].sudo().search([('requisition_id', '=', purchase_requisition_id.id)]):
supplier_amount_total.append(record.amount_total)
# Update the amount in even number position
tcount = 1
for i in even_number:
supplier_amount_total_1[i-1] = supplier_amount_total[tcount-1]
tcount +=1
# Update the supplier id in odd number position
scount = 1
for odd_no in odd_number:
for total in total_no:
if total == odd_no:
supplier_amount_total_1[odd_no-1] = supplier_id[scount-1]
scount +=1
global result
global check
check = 'Hello world'
result = request.render('purchase_comparison_chart.purchase_comparison', {'data':values, 'supplier':supplier_ids,'purchase_requisition_id':purchase_requisition_id,
'number':number, 'to_no':total_no, 'column_no':even_number, 'supplier_amount_total':supplier_amount_total,
'supplier_amount_total_1':supplier_amount_total_1, 'odd_number':odd_number})


return result
Now i want to download this web report too. I know the code for that too but i dont know how to call the above controller code i am using is following

@http.route(['/purchase_comparison_chart/purchase_comparison'], type='http', auth='public', website=True)
def invoice_print(self, date_start=False, date_stop=False, **kw):
r = kw['purchase_comparison']
pdf = request.env['report'].sudo().get_pdf([r], 'purchase_comparison_chart.action_purchase_id', data=None)

pdfhttpheaders = [('Content-Type', 'application/pdf'), ('Content-Length', len(pdf))]

return request.make_response(pdf, headers=pdfhttpheaders)
​
This is giving me a pdf which i am unable to open kindly tell what should i do
0
Avatar
Opusti
Enjoying the discussion? Don't just read, join in!

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

Prijavi
Related Posts Odgovori Prikazi Aktivnost
Odoo (v11) is it possible to convert a web report to pdf? Solved
pdf web controllers odoov11
Avatar
Avatar
1
jun. 20
4035
path problem with openerp controller
web qweb controllers path
Avatar
Avatar
1
mar. 15
6970
odoo v11 (Qweb) how to store data in a variable after looping so that you could compare it Solved
qweb reporting conditional loop odoov11
Avatar
Avatar
1
mar. 22
8397
Report for Product move list view in inventory module.(Odoo v11) Solved
qweb inventory reporting reports odoov11
Avatar
Avatar
Avatar
4
avg. 20
6057
odoo (v11) how to start a loop and put a condition in it to check if a variable is repeating and it is repeating then it must not print
qweb reporting conditional loop odoov11
Avatar
0
nov. 19
4033
Community
  • Tutorials
  • Dokumentacija
  • Forum
Open Source
  • Prenesi
  • Github
  • Runbot
  • Prevodi
Services
  • Odoo.sh Hosting
  • Podpora
  • Nadgradnja
  • Custom Developments
  • Izobraževanje
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Sredstva blagovne znamke
  • Kontakt
  • Zaposlitve
  • Dogodki
  • Podcast
  • Blog
  • Stranke
  • Pravno • Zasebnost
  • Varnost
الْعَرَبيّة 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 a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

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