2022-01-29 14:51:59 -06:00
|
|
|
# -*- coding: utf-8; -*-
|
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# Rattail -- Retail Software Framework
|
|
|
|
# Copyright © 2010-2022 Lance Edgar
|
|
|
|
#
|
|
|
|
# This file is part of Rattail.
|
|
|
|
#
|
|
|
|
# Rattail is free software: you can redistribute it and/or modify it under the
|
|
|
|
# terms of the GNU General Public License as published by the Free Software
|
|
|
|
# Foundation, either version 3 of the License, or (at your option) any later
|
|
|
|
# version.
|
|
|
|
#
|
|
|
|
# Rattail is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
|
|
# details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License along with
|
|
|
|
# Rattail. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
"""
|
|
|
|
Harvest Project views
|
|
|
|
"""
|
|
|
|
|
|
|
|
from rattail_harvest.db.model import HarvestProject
|
|
|
|
|
|
|
|
from .master import HarvestMasterView
|
|
|
|
|
|
|
|
|
|
|
|
class HarvestProjectView(HarvestMasterView):
|
|
|
|
"""
|
|
|
|
Master view for Harvest Projects
|
|
|
|
"""
|
|
|
|
model_class = HarvestProject
|
|
|
|
url_prefix = '/harvest/projects'
|
|
|
|
route_prefix = 'harvest.projects'
|
|
|
|
|
2022-01-29 19:36:17 -06:00
|
|
|
has_rows = True
|
|
|
|
|
2022-01-29 14:51:59 -06:00
|
|
|
grid_columns = [
|
|
|
|
'id',
|
|
|
|
'client',
|
|
|
|
'name',
|
|
|
|
'code',
|
|
|
|
'is_active',
|
|
|
|
'is_billable',
|
|
|
|
'bill_by',
|
|
|
|
'hourly_rate',
|
|
|
|
'fee',
|
|
|
|
]
|
|
|
|
|
2022-01-29 19:36:17 -06:00
|
|
|
row_grid_columns = [
|
|
|
|
'id',
|
|
|
|
'spent_date',
|
|
|
|
'user',
|
|
|
|
'client',
|
|
|
|
'task',
|
|
|
|
'hours',
|
|
|
|
]
|
|
|
|
|
2022-01-29 14:51:59 -06:00
|
|
|
def configure_grid(self, g):
|
|
|
|
super(HarvestProjectView, self).configure_grid(g)
|
|
|
|
model = self.model
|
|
|
|
|
|
|
|
g.set_joiner('client', lambda q: q.outerjoin(model.HarvestClient))
|
|
|
|
g.set_sorter('client', model.HarvestClient.name)
|
|
|
|
g.set_filter('client', model.HarvestClient.name, label="Client Name")
|
|
|
|
g.filters['client'].default_active = True
|
|
|
|
g.filters['client'].default_verb = 'contains'
|
|
|
|
|
2022-01-29 19:36:17 -06:00
|
|
|
g.filters['is_active'].default_active = True
|
|
|
|
g.filters['is_active'].default_verb = 'is_true'
|
|
|
|
|
2022-01-29 14:51:59 -06:00
|
|
|
g.set_type('hourly_rate', 'currency')
|
|
|
|
g.set_type('fee', 'currency')
|
|
|
|
|
|
|
|
g.set_sort_defaults('client')
|
|
|
|
|
2022-02-11 21:07:58 -06:00
|
|
|
g.set_filters_sequence([
|
|
|
|
'id',
|
|
|
|
'name',
|
|
|
|
'client',
|
|
|
|
])
|
|
|
|
|
2022-01-29 14:51:59 -06:00
|
|
|
g.set_link('id')
|
|
|
|
g.set_link('client')
|
|
|
|
g.set_link('name')
|
|
|
|
g.set_link('code')
|
|
|
|
|
2022-01-29 19:36:17 -06:00
|
|
|
def grid_extra_class(self, project, i):
|
|
|
|
if not project.is_active:
|
|
|
|
return 'warning'
|
|
|
|
|
2022-01-30 12:38:15 -06:00
|
|
|
def configure_form(self, f):
|
|
|
|
super(HarvestProjectView, self).configure_form(f)
|
|
|
|
|
|
|
|
if self.editing:
|
|
|
|
f.remove('client')
|
|
|
|
f.set_type('over_budget_notification_date', 'date_jquery')
|
|
|
|
f.set_type('starts_on', 'date_jquery')
|
|
|
|
f.set_type('ends_on', 'date_jquery')
|
|
|
|
f.set_readonly('created_at')
|
|
|
|
f.set_readonly('updated_at')
|
|
|
|
|
2022-01-29 19:36:17 -06:00
|
|
|
def get_row_data(self, project):
|
|
|
|
model = self.model
|
|
|
|
return self.Session.query(model.HarvestTimeEntry)\
|
|
|
|
.filter(model.HarvestTimeEntry.project == project)
|
|
|
|
|
|
|
|
def get_parent(self, entry):
|
|
|
|
return entry.project
|
|
|
|
|
2022-01-29 14:51:59 -06:00
|
|
|
|
|
|
|
def includeme(config):
|
|
|
|
HarvestProjectView.defaults(config)
|