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

How Do I Attach Functionality To Drag & Drop Kanban Movements?

Subscribe

Get notified when there's activity on this post

This question has been flagged
developmentworkflowkanbanfunctionality
7 Replies
16887 Views
Avatar
Alex Malone

Hi folks,

I am looking to add some functionality to the kanban view that I've not seen elsewhere so I'm unsure if it is possible.

Essentially, I have an entity called "Cases" within my system. These are used to track issues raised by customers. Cases have states. We dont allow users to directly edit states, instead they must go through a custom workflow in order to progress a state. For example, if they want to close a case (move case from work complete to closed status) then they must press a "Close" button which launches a popup. The popup asks the user to fill in some details, they press another button which then updates the cases and changes the state.

I would like to add this functionality to the kanban view for cases. So, if a user drags a case from the "Work Complete" column in to the "Closed" column, I would like them to fill out the same form as before.

Does anyone know if this is possible? If it is possible, has it already been done in one of the standard OpenERP modules?

Many thanks for your time,

-Alex

10
Avatar
Discard
Timo Talvitie, Vizucom Oy

Hi Alex, did you find a solution or workaround for this?

Soohoo

Hi how we can write the python function ......... can you provide some example did you find any solution

Avatar
Ray Carnes (ray)
Best Answer

This can easily be achieved with an Automated Action that 'listens' to the update of the record being moved.

It can check that certain data is populated, and can prevent movement if the conditions in the Automated Action are not met.

Example Python Code you can use:

stage_new = 'New'
stage_opp = 'Opportunities'
stage_gath = 'Requirements'
stage_eng = 'Scoping'
stage_pqc = 'Pending Quotation'
stage_pca = 'Customer Approval'
stage_pma = 'Manager Approval'
stage_ver = 'Verbally Approved'
stage_po = 'Purchase Order'
stage_app = 'Approved Orders'
stage_tm = 'T & M'
stage_hand = 'Project Handoff'
stage_done = 'Completed'

# Require Project 
if record.stage_id.name in [stage_gath,stage_eng, stage_pqc, stage_pca, stage_pma, stage_ver, stage_po, stage_app, stage_tm, stage_hand, stage_done] and not record.x_project: 
raise Warning('Please create a Project for this Opportunity!')

# Opportunity cannot be moved into Project Handoff OR Completed.
if record.stage_id.name in [stage_hand, stage_done]:   
needs_warning = False   
for quote in record.order_ids:      
if quote.state not in ['sale','done','cancel']:          
needs_warning = True   
if needs_warning:       
raise Warning('Please confirm or cancel each Quote before moving!')



Note: This does not require development of a module.  Automated Actions can be created within Odoo like another other record. 

2
Avatar
Discard
Avatar
Ivan Elizaryev
Best Answer

You can modify web client to fit your needs. You can inject some javascript code in OpenERP, which will do things you described. Also, you probably should make some modifications via python code.

UPD

Here you can find some example. It overwrite the write function to check changes in the state field. If some conditions is not passed it raises warning and doesn't allows to make such changes. I think this approach doesn't allow to raise widget with a form you need. I can suggest another simple solution: add button to a kanban card, which will raise widget and if user will move state and some conditions is not passed show to him warning "Click button ... before moving to new state"

    @api.multi
    def write(self, vals):
        if 'stage_id' in vals:
            new_stage = self.env['crm.case.stage'].browse(vals['stage_id'])
            for r in self:
                res = r.try_update_stage(new_stage)[0]
                if res.get('warning'):
                    raise exceptions.Warning(res.get('warning'))
                ...
        result = super(crm_lead, self).write(vals)
        return result 

3
Avatar
Discard
Soohoo

Hi how we can write the python function ......... can you provide some example

Ivan Elizaryev

@Soohoo try to find information about how to write modules in odoo

Avatar
Leonardo Donelli
Best Answer

If you want to automatically open a wizard/popup or another window when a kanban card is moved, you'll have to modify the web client, which is usually not easy and not recommended.

I was in a similar situation where I created a kanban view for sale orders based on the "expected delivery week". So if a sale order was having some problems in production, the user could just move the card to the next week. The idea was originally to open a wizard when the card was moved to send a mail alerting the customer of the change of the date, so similar to what you want to do, but we quickly discovered it was not possible without modifying the client code of Odoo.

We ended up using two field "previously agreed delivery week" and "expected delivery week". When the user moves the kanban the "expected delivery week" is changed, and when "expected delivery week" and "previously agreed delivery week" are different, it shows a button "alert customer of change" which opens the wizard to send the email.

You could try to work around the problem in a similar fashion. For example, in the kanban view, you could show a "Insert closing information" button/link when the state = closed, so that when an user drags a card to the closed column the link will appear. It will not be automatic (the user will have to remember to click the link to open the wizard instead of having it opens automatically) but I think it's a good compromise.

 

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
Multiple approver in Expense Odoo 16 E
development workflow
Avatar
Avatar
1
Jun 25
1391
Inquiry About Route Planning with Live Location Tracking
development functionality
Avatar
0
May 24
2462
Change the Checkout name in Odoo 18 Solved
development workflow shop
Avatar
Avatar
2
Jul 25
2045
How can I customize Odoo 18 HRMS modules to add unique value beyond the standard features?
development hr workflow
Avatar
0
Mar 25
2156
API: Connect error: Connection refused (111)
action development workflow
Avatar
Avatar
2
Mar 25
2221
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