-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.odoo-work-cli.toml
More file actions
61 lines (51 loc) · 1.45 KB
/
.odoo-work-cli.toml
File metadata and controls
61 lines (51 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
bundesland = "Baden-Württemberg"
[op_secrets]
url = "op://Employee/Digitalgedacht Odoo/url"
database = "op://Employee/Digitalgedacht Odoo/database-name"
username = "op://Employee/Digitalgedacht Odoo/login"
password = "op://Employee/Digitalgedacht Odoo/api-key"
[hours]
daily_low = 6.0
daily_high = 9.0
weekly_low = 35.0
weekly_high = 40.0
[models.timesheet]
# filters = [
# { field = "company_id.name", op = "=", value = "digitalgedacht GmbH" },
# ]
[models.project]
extra_fields = [
{ name = "product_owner", field = "x_studio_productowner", type = "many2one" },
]
filters = [
{ field = "company_id.name", op = "=", value = "digitalgedacht GmbH" },
]
[models.task]
extra_fields = []
filters = [
{ field = "project_id.name", op = "=", value = "Infrastruktur und Betrieb" },
{ field = "company_id.name", op = "=", value = "digitalgedacht GmbH" },
{ field = "stage_id.name", op = "=", value = "Umsetzung" },
]
[keys]
# Cursor movement (shared across grid, detail, search views)
cursor_up = ["up", "k"]
cursor_down = ["down", "j"]
# Grid view
grid_next_col = ["right", "l"]
grid_prev_col = ["left", "h"]
grid_enter = ["enter"]
grid_search = ["/"]
# Detail view
detail_edit = ["e"]
detail_add = ["a"]
detail_delete = ["d"]
# Search view
search_toggle = ["ctrl+a"]
# Global (available in all non-modal views)
global_prev_week = ["p"]
global_next_week = ["n"]
global_back = ["esc"]
global_refresh = ["r"]
global_help = ["?"]
global_quit = ["q", "ctrl+c"]