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
    • Schvalovania
    • 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
    • Estate Managament
    • 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

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

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
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

Get values of controller into another controller (odoo v11)

Odoberať

Get notified when there's activity on this post

This question has been flagged
webqwebreportingcontrollersodoov11
4137 Zobrazenia
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
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
Odoo (v11) is it possible to convert a web report to pdf? Solved
pdf web controllers odoov11
Avatar
Avatar
1
jún 20
4079
path problem with openerp controller
web qweb controllers path
Avatar
Avatar
1
mar 15
7021
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
8478
Report for Product move list view in inventory module.(Odoo v11) Solved
qweb inventory reporting reports odoov11
Avatar
Avatar
Avatar
4
aug 20
6104
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
4098
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 ภาษาไทย 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