You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Ajmal Cybro 51e7f9ed35 [UPDT] Index Update mail 4 years ago
..
doc [ADD] Initial Commit 'multiple_datepicker_widget' 5 years ago
static [UPDT] Index Update mail 4 years ago
view [ADD] Initial Commit 'multiple_datepicker_widget' 5 years ago
README.rst [ADD] Initial Commit 'multiple_datepicker_widget' 5 years ago
__manifest__.py [ADD] Initial Commit 'multiple_datepicker_widget' 5 years ago

README.rst

MULTIPLE DATE PICKER WIDGET
===========================
Multiple date picker widget for Odoo client

Credits
=======
Credits for https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.7.1/js/bootstrap-datepicker.min.js
Developer: Varsha Vivek K @ cybrosys, Contact: odoo@cybrosys.com

Usage
=====
You need to declare a char field.

multi_dates = fields.Char(string="Multiple Dates")

In the view declaration,
...
<field name="arch" type="xml">
<form string="View name">
...
<field name="multi_dates" widget="multiple_datepicker"/>
...
</form>
</field>
...