Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

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

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

Get values of controller into another controller (odoo v11)

Subscribe

Get notified when there's activity on this post

This question has been flagged
webqwebreportingcontrollersodoov11
4088 Views
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
Discard
Enjoying the discussion? Don't just read, join in!

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

Sign up
Related Posts Replies Views Activity
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
8407
Report for Product move list view in inventory module.(Odoo v11) Solved
qweb inventory reporting reports odoov11
Avatar
Avatar
Avatar
4
Aug 20
6061
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
4044
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة 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