Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

replace the view tree with kanban

Subscriure's

Get notified when there's activity on this post

This question has been flagged
kanban
2 Respostes
7340 Vistes
Avatar
ikrambenafia93@gmail.com

Hi, I'm a beginner, I want to display my data in a kanban(the kanban that is sort with the state) but I can not do it, can you help me to modify my code please 

<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<data>
<record model="ir.ui.view" id="service_form_view">
<field name="name">service.form</field>
<field name="model">association.service</field>
<field name="arch" type="xml">
<form string="Service Form">
<sheet>
<header>
<field name="state" widget="statusbar"
statusbar_visible="draft,sent,progress,invoiced,done"/>
</header>
<div class="oe_title">
<label for="name" class="oe_edit_only"/>
<h1>
<field name="titre" placeholder="nom de service"/>
</h1>
</div>
<group>
<group>
<field name="nom_benifier"/>
<field name="date" eval="strftime('%H:%M'),datetime.now()"/>
</group>
<group>
<field name="email" widget="email"/>
<field name="num_benifier" widget="phone"/>
</group>

</group>
<notebook>
<page string="Description">
<field name="description"/>
</page>
</notebook>
</sheet>
</form>
</field>
</record>
<record model="ir.ui.view" id="service_tree_view">
<field name="name">service.tree</field>
<field name="model">association.service</field>
<field name="arch" type="xml">
<tree string="Service Tree">
<field name="titre"/>
<field name="description"/>
<field name="date"/>
</tree>
</field>
</record>
<record model="ir.actions.act_window" id="services_list_action">
<field name="name">Déposer votre service</field>
<field name="res_model">association.service</field>
<field name="view_type">form</field>
<field name="view_mode">kanban,tree,form</field>
</record>
<!--<menuitem id="menu_project_config" name="Configuration" parent="menu_main_pm"
sequence="100" groups="project.group_project_manager"/> -->
<menuitem sequence="1" id="main_services_menu" name="Services"/>
<menuitem id="services_menu" name="Services" parent="main_services_menu"/>
<menuitem id="ser_menu" action="services_list_action"
parent="services_menu"/>


</data>
</odoo>

0
Avatar
Descartar
ikrambenafia93@gmail.com
Autor

again thank you once I have another problem I want to do a redirection after the form confirmation and I can not understand why it always shows me page not found voila mon code :

<?xml version="1.0" encoding="utf-8"?>

<odoo>

<data>

<template id="add">

<title>Services</title>

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

<t t-set="additional_title">Services</t>

<div id="wrap">

<div class="oe_structure"/>

<div class="container">

<h1>Nous Sommes Votre réference d'aide</h1>

<div class="row">

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

<div class="oe_structure">

<div>

<p>Nous serons bien augré de vos attentes.</p>

<p>We'll do our best to get back to you as soon as possible.</p>

</div>

</div>

<section id="forms">

<form method="post" class="s_website_form container-fluid form-horizontal"

action="/website_form/" data-model_name="association.service"

data-success_page="/page/services/add.thankyou"

enctype="multipart/form-data">

<!-- Description text field, required -->

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

<label class="col-md-3 col-sm-4 control-label" for="titre">Titre

</label>

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

<input type="text" class="form-control o_website_form_input"

name="titre"

t-att-value="request.params.get('titre', '')" required=""/>

</div>

</div>

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

<label class="col-md-3 col-sm-4 control-label" for="num_benifier">Phone

Number

</label>

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

<input type="text" class="form-control o_website_form_input"

name="num_benifier"

t-att-value="request.params.get('num_benifier', '')"

required=""/>

</div>

</div>

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

<label class="col-md-3 col-sm-4 control-label" for="email">Email

</label>

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

<input type="text" class="form-control o_website_form_input"

name="email"

required="" t-att-value="request.params.get('email', '')"/>

</div>

</div>

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

<label class="col-md-3 col-sm-4 control-label" for="description">

Description

</label>

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

<textarea class="form-control o_website_form_input" name="description"

required="">

<t t-esc="request.params.get('description', '')"/>

</textarea>

</div>

</div>

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

<label class="col-md-3 col-sm-4 control-label" for="partner_name">Votre Nom

:

</label>

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

<input type="text" class="form-control o_website_form_input"

name="partner_name" required=""

t-att-value="request.params.get('partner_name', '')"/>

</div>

</div>

<div class="form-group">

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

<span class="btn btn-primary btn-lg o_website_form_send">Envoyer</span>

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

</div>

</div>

</form>

</section>

</div>

<div class="col-md-4 mb32">

<t t-call="website.company_description"/>

</div>

</div>

</div>

</div>

</t>

</template>

<template id="thankyou">

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

<div id="wrap">

<div class="oe_structure">

<div class="container">

<h1>Thank you!</h1>

<p>

Your job application has been successfully registered,

we will get back to you soon.

</p>

</div>

<section class="oe_dark">

<div class="container">

<div class="row">

<div class="col-md-12 text-center mt16 mb16">

<a href="/" class="btn btn-primary btn-lg">Continue To Our Website</a>

</div>

</div>

</div>

</section>

</div>

</div>

</t>

</template>

</data>

</odoo>

et ça mon controlleur

from odoo import http

class Service_web(http.Controller):

@http.route('/page/services/add', auth='public', website=True)

def index(self, **kw):

Services = http.request.env['association.service'] # dans env on met nom de class

return http.request.render('website_service.add', { # nom de module avant index

'serv': Services.search([])

})

Avatar
ikrambenafia93@gmail.com
Autor Best Answer

@ibrahim thanks a lot for your answer but i would like to know the kanban board which is sorted by column to make example

0
Avatar
Descartar
Avatar
Ibrahim Boudmir
Best Answer

Hi, 
Kanban Mode is something like this : 
Take this code, read it and change variables (fields), test it to see the result and then adapt it to your need

<record id="id_kanban" model="ir.ui.view">
<field name="name">kanban.view</field>
<field name="model">Yourmodel</field>
<field name="arch" type="xml">
<kanban class="o_kanban_small_column o_opportunity_kanban" quick_create="false" group_edit="false" group_delete="false" group_create="false" default_group_by="state">
<templates>
<field name="field1"/>
<field name="field2"/>
<field name="field3"/>
<field name="field4"/>
<field name="icon"/>
<t t-name="kanban-box">
<div t-attf-class="oe_kanban_global_click">
<div class="o_dropdown_kanban dropdown">
<a class="dropdown-toggle btn" href="#" data-toggle="dropdown">
<span class="fa fa-bars fa-lg"/>
</a>
<ul role="menu" aria-labelledby="dLabel" class="dropdown-menu">
<t t-if="widget.editable">
<li>
<a type="edit">Edit</a>
</li>
</t>
<t t-if="widget.deletable">
<li>
<a type="delete">Delete</a>
</li>
</t>
</ul>
</div>
<div class="oe_kanban_content">
<div class="oe_kanban_case_top">
<span t-attf-class="badge badge_#{record.FIELD.raw_value}" t-if="record.icon">
<i t-attf-class="fa #{record.icon.raw_value}"/>
<![CDATA[&nbsp;]]>C. 
<field name="FIELD"/>
</span>
<strong>
<field name="FIELD"/>
</strong>
</div>
<div>
<strong>
<field name="FIELD"/>
</strong>
<field name="FIELD"/>
<strong>TEXT</strong>
<field name="FIELD"/>
</div>
<div>
<field name="FIELD"/>
<field name="FIELD"/>
</div>
<div class="oe_kanban_case_links">
<span class="badge pull-right" t-if="record.FIELD.value>1">
<i class="fa fa-fw fa-users"/>
<t t-esc="record.FIELD.value"/>
</span>
<span class="badge pull-right" t-if="record.FIELD.value>0">
<i class="fa fa-fw fa-files-o"/>
<t t-esc="record.FIELD.value"/>
</span>
</div>
</div>
<div class="oe_clear"/>
</div>
</t>
</templates>
</kanban>
</field>
</record>
0
Avatar
Descartar
Enjoying the discussion? Don't just read, join in!

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

Registrar-se
Related Posts Respostes Vistes Activitat
How to make the order of "default_group_by" in kanban view?
kanban
Avatar
Avatar
1
de gen. 25
2662
odoo 15 undraggable records in kanban view
kanban
Avatar
0
d’ag. 22
3237
add a second progressbar kanban
kanban
Avatar
0
de març 22
3262
Not display Kanban view ? Solved
kanban
Avatar
Avatar
1
d’oct. 19
6364
Gauge Widget and sparkline for Kanban
kanban
Avatar
Avatar
1
d’abr. 17
8368
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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