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
    • Artificial Intelligence
    • 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
    • Property Management
    • 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
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

Paypal Button. in eCommerce.

Odoberať

Get notified when there's activity on this post

This question has been flagged
invoicepaypalecommerce
1 Odpoveď
7488 Zobrazenia
Avatar
Jayson

Hello Good Day,

I having hard time to deal with paypal integration in my odoo.

Scenario:

i buy product in website then I input my Invoice Address and Delivery address in Shop webpage. Now when i open Sales.Order in User's Portal the Paypal Button there is not clickable.  And also in the paypal button there is something Warning message like This One

Pay safely online

 <input type="hidden" name="business" value="jtipon8321-facilitator@gmail.com"/> <input type="hidden" name="email" value="andres@gmail.com"/>

 

______________________________________________________________________________

 

and this is my actual architecture for Paypal.

 

<?xml version="1.0"?>

<t t-name="payment_paypal.paypal_acquirer_button">

<form t-if="acquirer.paypal_email_account" t-att-action="tx_url" method="post" target="_self">

<input type="hidden" name="cmd" t-att-value="tx_values['cmd']"/>

<input type="hidden" name="business" t-att-value="tx_values['business']"/>

<input type="hidden" name="item_name" t-att-value="tx_values['item_name']"/>

<input type="hidden" name="item_number" t-att-value="tx_values['item_number']"/>

<input type="hidden" name="amount" t-att-value="tx_values['amount'] or '0.0'"/>

<input t-if="'handling' in tx_values" type="hidden" name="handling" t-att-value="tx_values.get('handling')"/>

<input type="hidden" name="currency_code" t-att-value="tx_values['currency_code']"/>

<!-- partner / address data -->

<input type="hidden" name="address1" t-att-value="tx_values['address1']"/>

<input type="hidden" name="city" t-att-value="tx_values['city']"/>

<input type="hidden" name="country" t-att-value="tx_values['country']"/>

<input type="hidden" name="email" t-att-value="tx_values['email']"/>

<input type="hidden" name="first_name" t-att-value="tx_values['first_name']"/>

<input type="hidden" name="last_name" t-att-value="tx_values['last_name']"/>

<input type="hidden" name="zip" t-att-value="tx_values['zip']"/>

<!-- after payment parameters -->

<input t-if="tx_values.get(&quot;custom&quot;)" type="hidden" name="custom" t-att-value="tx_values.get(&quot;custom&quot;)"/> <!-- URLs -->

<input t-if="tx_values.get('return')" type="hidden" name="return" t-att-value="tx_values.get('return')"/>

<input t-if="acquirer.paypal_use_ipn" type="hidden" name="notify_url" t-att-value="tx_values.get('notify_url')"/>

<input t-if="tx_values.get('cancel_return')" type="hidden" name="cancel_return" t-att-value="tx_values.get('cancel_return')"/> <!-- submit -->

<button type="submit" width="100px" t-att-class="submit_class"> <img t-if="not submit_txt" src="/payment_paypal/static/src/img/paypal_icon.png"/> <span t-if="submit_txt">

<t t-esc="submit_txt"/> <span class="fa fa-long-arrow-right"/></span> </button> </form> </t>

 

 

"I NEED HELP"

 

1
Avatar
Zrušiť
Avatar
Fnordbedarf
Best Answer

Are you using the Payment_acquirer for Paypal? you find it searching for module

payment_paypal

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
Paypal on multiple websites [SOLVED] Solved
paypal ecommerce
Avatar
Avatar
Avatar
2
dec 23
4215
How to automatically apply Paypal payments to invoices?
invoice payment paypal ecommerce ipn
Avatar
Avatar
Avatar
Avatar
4
apr 16
11261
How to establish the value of transport in ecommerce automatically in the pedido Solved
invoice web ecommerce
Avatar
Avatar
1
dec 22
3828
Odoo 12 eCommerce problem when not completing paypal payment.
paypal ecommerce odoo12
Avatar
0
aug 20
3921
Invoice from eCommerce order V13 CE Solved
invoice quotation ecommerce
Avatar
Avatar
1
nov 19
4324
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 Svenska ภาษาไทย 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