Browse Source
Merge pull request #29 from David-II/patch-1
[FIX] Remove trailing comma to avoid error
pull/30/merge
Cybrosys Technologies
8 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
fleet_car_workshop/models/dashboard.py
|
|
@ -100,7 +100,7 @@ class CarVehicle(osv.osv): |
|
|
|
track_visibility='onchange',default='open', copy=False) |
|
|
|
|
|
|
|
date_start = fields.Date(string='Start Date') |
|
|
|
date = fields.Date(string='Expiration Date', select=True, track_visibility='onchange'), |
|
|
|
date = fields.Date(string='Expiration Date', select=True, track_visibility='onchange') |
|
|
|
use_tasks = fields.Boolean(string='Tasks', default=True) |
|
|
|
image_medium = fields.Binary(string="Logo (medium)") |
|
|
|
|
|
|
|