Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Magazin de îmbrăcăminte
    • Magazin de Mobilă
    • Magazin alimentar
    • Magazin de materiale de construcții
    • Magazin de jucării
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Distribuitor de băuturi
    • Hotel
    Proprietate imobiliara
    • Real Estate Agency
    • Firmă de Arhitectură
    • Construcție
    • Estate Managament
    • Grădinărit
    • Asociația Proprietarilor de Proprietăți
    Consultanta
    • Firma de Contabilitate
    • Partener Odoo
    • Agenție de marketing
    • Law firm
    • Atragere de talente
    • Audit & Certification
    Producție
    • Textil
    • Metal
    • Mobilier
    • Mâncare
    • Brewery
    • Cadouri corporate
    Health & Fitness
    • Club Sportiv
    • Magazin de ochelari
    • Centru de Fitness
    • Wellness Practitioners
    • Farmacie
    • Salon de coafură
    Trades
    • Handyman
    • IT Hardware and Support
    • Asigurare socială de stat
    • Cizmar
    • Servicii de curățenie
    • HVAC Services
    Altele
    • Organizație nonprofit
    • Agenție de Mediu
    • Închiriere panouri publicitare
    • Fotografie
    • Închiriere biciclete
    • Asigurare socială
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

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

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

Website: Method post does not work

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
portalcontrollersodoo
1 Răspunde
7380 Vizualizări
Imagine profil
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
Imagine profil
Abandonează
Imagine profil
Hilar Andikkadavath
Cel mai bun răspuns

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
Imagine profil
Abandonează
Enjoying the discussion? Don't just read, join in!

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

Înscrie-te
Related Posts Răspunsuri Vizualizări Activitate
How we can get one controller values into another controller it may be in same class or in different class ?
portal technical controllers odoo
Imagine profil
0
nov. 21
3192
How to check current portal user group Odoo 12 Rezolvat
portal controllers odoo odoo12
Imagine profil
Imagine profil
4
aug. 20
10072
How to create customer signature in portal view odoo14
portal odoo
Imagine profil
Imagine profil
1
sept. 23
6254
How to redirect a controller from portal to fieldservice backend for users who are not backend users
controllers odoo
Imagine profil
Imagine profil
1
iun. 23
3765
Best way to show employees all records, but portal users only their own? Rezolvat
portal odoo
Imagine profil
Imagine profil
1
apr. 16
6401
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة 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 este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

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