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

Website: Method post does not work

Subscribe

Get notified when there's activity on this post

This question has been flagged
portalcontrollersodoo
1 Reply
7472 Views
Avatar
Rihene

Hello my Friends!!

I am creating a specific portal.

So that i have to edit fields of a model.

In the Xml File i have created my form and in the controller i have specified the route called. Now i need to get the values written by the user.

Here what i have tried but not working.

XML:

 <template id="apply">

<t t-call="website.layout">

<t t-set="additional_title">Create Payment</t>

<div id="wrap" class="container">

<div class="row">

<div class="col-sm-6">

<ol class="breadcrumb mt8">

<li><a href="/test/residence"><i class="fa fa-home"/></a></li>

<li>Save</li>

</ol>

</div>

</div>

<h1 class="text-center">

Save Payment

</h1>

<h2 t-if="invoice" class="text-center text-muted">

<span t-field="invoice.name"/>

</h2>

<form t-att-action="'/test/valid_payment/'+str(widget['invoice_id'])" method="post" data-model_name="account.invoice">

<input type="hidden" name="csrf_token" t-att-value="request.csrf_token()"/>

<div class="row o_website_portal_details">

<div class="col-md-8">

<div class="row">

<div class="form-group form-field o_website_form_required_custom">

<div class="col-md-3 col-sm-4 text-right">

<label class="control-label" for="journal_id">Your Journal</label>

</div>

<div class="col-md-7 col-sm-8">

<select name="journal_id" class="form-control">

<t t-foreach="widget['journal']" t-as="journal">

<option t-esc="journal.name"/>

</t>

</select>

</div>

</div>

<div class="form-group form-field o_website_form_required_custom">

<div class="col-md-3 col-sm-4 text-right">

<label class="control-label" for="payment_date">Payment Date</label>

</div>

</div>

<div class="form-group form-field o_website_form_custom">

<div class="col-md-3 col-sm-4 text-right">

<label class="control-label" for="amount">Amount</label>

</div>

<div class="col-md-7 col-sm-8">

<input type="email" class="form-control o_website_form_input" name="amount" required="" t-att-value="widget['payment_amount']"/>

</div>

</div>

<div class="form-group form-field o_website_form_custom">

<div class="col-md-3 col-sm-4 text-right">

<label class="control-label" for="comunication">Communication</label>

</div>

<div class="col-md-7 col-sm-8">

<input type="email" class="form-control o_website_form_input" name="comunication" required="" t-att-value="widget['number']"/>

</div>

</div>

<div class="form-group">

<div class="col-md-offset-3 col-sm-offset-4 col-sm-8 col-md-7">

<a t-att-href="'/test/valid_payment/'+str(widget['invoice_id'])" class="btn btn-primary btn-lg o_website_form_send">Pay</a>

<span id="o_website_form_result"></span>

</div>

</div>

</div>

</div>

</div>

</form>

</div>

</t>

</template> 


Python Controller:

 @http.route('/test/valid_payment/<int:invoice_id>', type='http', auth="user", website=True)

def valid_payment_invoice_resident(self,invoice_id=None, **post):

w_obj = {}

_logger.debug('Incoming data: %s', post) post is empty!!!!!!

InvoiceData = request.env['account.invoice'].browse([invoice_id])

invoice_ids = request.env['account.invoice'].search([('id', '=', invoice_id)])

_logger.info(invoice_ids)

payment = request.env['account.payment'].create({

'payment_date': u'2018-01-25',

'communication': u'FAC/2018/0002',

'payment_difference_handling': u'open',

'journal_id': 11,

'currency_id': 1,

'partner_type': u'customer',

'amount': 35,

'writeoff_account_id': False,

'payment_type': u'inbound',

'payment_token_id': False,

'partner_id': 17,

'payment_method_id': 1

})

request.env['account.payment'].post()

request.env['account.payment']._create_payment_entry(35)

w_obj = {

'invoice_id': invoice_id,

}

return request.render("luxus_portal.confirmation", {'widget' : w_obj})

0
Avatar
Discard
Avatar
Hilar Andikkadavath
Best Answer

You should submit the form to get the form values, so either you have to submit manually using js or use the Submit button itself.

Here is an example of form and submit https://www.w3schools.com/html/tryit.asp?filename=tryhtml_form_submit

2
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
How we can get one controller values into another controller it may be in same class or in different class ?
portal technical controllers odoo
Avatar
0
Nov 21
3274
How to check current portal user group Odoo 12 Solved
portal controllers odoo odoo12
Avatar
Avatar
4
Aug 20
10212
How to create customer signature in portal view odoo14
portal odoo
Avatar
Avatar
1
Sep 23
6419
How to redirect a controller from portal to fieldservice backend for users who are not backend users
controllers odoo
Avatar
Avatar
1
Jun 23
3887
Best way to show employees all records, but portal users only their own? Solved
portal odoo
Avatar
Avatar
1
Apr 16
6485
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