Allow complete freedom on project and task states
Following the discussion from: https://discuss.tryton.org/t/link-between-sales-and-projects/654/16
- Show closed items
Activity
-
Newest first Oldest first
-
Show all activity Show comments only Show history only
- Sergi Almacellas Abellana assigned to @pokoli
assigned to @pokoli
- Sergi Almacellas Abellana added project type::performance + 1 deleted label
added project type::performance + 1 deleted label
- Sergi Almacellas Abellana added 1 deleted label and removed 1 deleted label
added 1 deleted label and removed 1 deleted label
New review64411002 at https://codereview.tryton.org/64411002/#ps1
- Cédric Krier added type::feature label and removed type::performance label
added type::feature label and removed type::performance label
review64411002 updated at https://codereview.tryton.org/64411002/#ps20001
review64411002 updated at https://codereview.tryton.org/64411002/#ps40001
review64411002 updated at https://codereview.tryton.org/64411002/#ps60001
review64411002 updated at https://codereview.tryton.org/64411002/#ps80001
- Author Developer
Here are the sql queries which will be used for migration from previous version:
update project_work set work_state = db_id from ir_model_data where module = 'project' and fs_id = 'work_open_state' and state = 'opened';
update project_work set work_state = db_id from ir_model_data where module = 'project' and fs_id = 'work_done_state' and state = 'done';
Should be executed after the update. review64411002 updated at https://codereview.tryton.org/64411002/#ps273771002
review64411002 updated at https://codereview.tryton.org/64411002/#ps265891002
- Author Developer
Here are the updated migration queries to run on latest review patchset:
update project_work set status = db_id from ir_model_data where module = 'project' and fs_id = 'work_open_state' and state = 'opened';
update project_work set status = db_id from ir_model_data where module = 'project' and fs_id = 'work_done_state' and state = 'done'; review64411002 updated at https://codereview.tryton.org/64411002/#ps285921002
review64411002 updated at https://codereview.tryton.org/64411002/#ps277791013
review64411002 updated at https://codereview.tryton.org/64411002/#ps262421002
review64411002 updated at https://codereview.tryton.org/64411002/#ps274531002
- Cédric Krier assigned to @ced and unassigned @pokoli
review64411002 updated at https://codereview.tryton.org/64411002/#ps270861013
New changeset dca2bc7ae397 by Cédric Krier in branch 'default':
Make project status configurable
https://hg.tryton.org/modules/project/rev/dca2bc7ae397- Roundup Robot added 1 deleted label and removed 1 deleted label
added 1 deleted label and removed 1 deleted label
- Roundup Robot closed
closed
New changeset 26f24e3def35 by Cédric Krier in branch 'default':
Make project status configurable
https://hg.tryton.org/modules/project_invoice/rev/26f24e3def35New changeset 07d0f9b58a2c by Cédric Krier in branch 'default':
Make project status configurable
https://hg.tryton.org/tryton-env/rev/07d0f9b58a2cNew changeset d1e349389ead by Cédric Krier in branch 'default':
Remove domain on status when type is empty
https://hg.tryton.org/modules/project/rev/d1e349389eadNew changeset d79b25f53f1c by Cédric Krier in branch 'default':
Remove domain on status when type is empty
https://hg.tryton.org/tryton-env/rev/d79b25f53f1c- Cédric Krier mentioned in issue #8551 (closed)
mentioned in issue #8551 (closed)
- Cédric Krier marked #8551 (closed) as a duplicate of this issue
marked #8551 (closed) as a duplicate of this issue
- Cédric Krier marked this issue as related to #8551 (closed)
marked this issue as related to #8551 (closed)