Openbravo Issue Tracking System - Openbravo ERP |
View Issue Details |
|
ID | Project | Category | View Status | Date Submitted | Last Update |
0004549 | Openbravo ERP | 00. Application dictionary | public | 2008-07-31 12:48 | 2008-09-03 23:09 |
|
Reporter | galderromo | |
Assigned To | rafaroda | |
Priority | normal | Severity | major | Reproducibility | always |
Status | closed | Resolution | fixed | |
Platform | | OS | 20 | OS Version | Gentoo 2.6.24 |
Product Version | 2.40beta | |
Target Version | | Fixed in Version | 2.40 | |
Merge Request Status | |
Review Assigned To | |
OBNetwork customer | No |
Web browser | |
Modules | Core |
Support ticket | |
Regression level | |
Regression date | |
Regression introduced in release | |
Regression introduced by commit | |
Triggers an Emergency Pack | No |
|
Summary | 0004549: Process class tab should have a default be not editable and have a fixed value for the action |
Description | When you create a process through the application dictionary and setup a class for it, the action (drop down) should have a fixed value (P) and should be not editable. |
Steps To Reproduce | Go to Process window.
Process class tab.
Create new. Enter a class name.
And save.
You can't see the class, the tab is filtered by action and you didn't chose the right action. |
Proposed Solution | |
Additional Information | |
Tags | No tags attached. |
Relationships | depends on | backport | 0004572 | | closed | rafaroda | Process class tab should have a default be not editable and have a fixed value for the action | related to | defect | 0004636 | | closed | vmromanos | Process Class action do not correspond with parent type | related to | defect | 0008993 | | closed | rafaroda | ad_process window, class tab, action field |
|
Attached Files | |
|
Issue History |
Date Modified | Username | Field | Change |
2008-07-31 12:48 | galderromo | New Issue | |
2008-07-31 12:48 | galderromo | Assigned To | => cromero |
2008-07-31 12:48 | galderromo | sf_bug_id | 0 => 2033726 |
2008-08-05 09:59 | psarobe | OBNetwork customer | => No |
2008-08-05 09:59 | psarobe | Severity | minor => major |
2008-08-05 09:59 | psarobe | Status | new => scheduled |
2008-08-05 09:59 | psarobe | fix_in_branch | => trunk |
2008-08-14 15:47 | jpabloae | Issue Monitored: eduardo_Argal | |
2008-08-14 15:47 | jpabloae | Note Added: 0008558 | |
2008-08-18 11:13 | psarobe | Assigned To | cromero => rafaroda |
2008-08-18 16:16 | rafaroda | Note Added: 0008593 | |
2008-08-18 17:22 | rafaroda | Relationship added | related to 0004636 |
2008-08-18 19:45 | svnbot | Checkin | |
2008-08-18 19:45 | svnbot | Note Added: 0008599 | |
2008-08-18 19:45 | svnbot | Status | scheduled => resolved |
2008-08-18 19:45 | svnbot | Resolution | open => fixed |
2008-08-18 19:45 | svnbot | svn_revision | => 6386 |
2008-08-18 19:46 | svnbot | Checkin | |
2008-08-18 19:46 | svnbot | Note Added: 0008600 | |
2008-08-18 19:46 | svnbot | svn_revision | 6386 => 6387 |
2008-08-18 19:49 | svnbot | Checkin | |
2008-08-18 19:49 | svnbot | Note Added: 0008602 | |
2008-08-18 19:49 | svnbot | svn_revision | 6387 => 6388 |
2008-08-18 20:05 | svnbot | Checkin | |
2008-08-18 20:05 | svnbot | Note Added: 0008603 | |
2008-08-18 20:05 | svnbot | svn_revision | 6388 => 6389 |
2008-09-03 23:09 | psarobe | Regression testing | => No |
2008-09-03 23:09 | psarobe | Status | resolved => closed |
2008-09-03 23:09 | psarobe | Fixed in Version | => 2.40 |
2009-05-20 10:13 | rafaroda | Relationship added | related to 0008993 |
Notes |
|
|
Reminder sent to: eduardo_Argal The 2.40 release is close. As soon as all the major bugs are closed, we are ready to release. This is why I'd ask you to prioritize this issue. |
|
|
|
Proposed solution:
Step 1) Mark 'IsReport' and 'IsJasper' columns of 'AD_PROCESS' table as 'Stored in Session' (Application Dictionary || Tables and Columns || Table >> Column ).
Step 2) Add the following Default Value to 'Action' column of 'AD_MODEL_OBJECT' table: @SQL=SELECT (CASE WHEN @IsReport@='Y' OR @IsJasper@='Y' THEN 'R' ELSE 'P' END) FROM DUAL
Step 3) Mark 'Action' field read-only inside 'Process Class' tab (Application Dictionary || Report and Process || Report & Process >> Process Class) |
|
|
(0008599)
|
svnbot
|
2008-08-18 19:45
|
|
Repository: openbravo
Revision: 6386
Author: rafaroda
Date: 2008-08-18 19:45:05 +0200 (Mon, 18 Aug 2008)
Fixes bug 0004549 Marked 'IsReport' and 'IsJasper' columns of 'AD_PROCESS' table as 'Stored in Session'. Added the following Default Value to 'Action' column of 'AD_MODEL_OBJECT' table: @SQL=SELECT (CASE WHEN @IsReport@='Y' OR @IsJasper@='Y' THEN 'R' ELSE 'P' END) FROM DUAL. Marked 'Action' field as read-only inside 'Process Class' tab.
---
U branches/r2.3x/database/sourcedata/AD_COLUMN.xml
U branches/r2.3x/database/sourcedata/AD_FIELD.xml
---
https://dev.openbravo.com/websvn/openbravo/?rev=6386&sc=1 [^]
|
|
|
(0008600)
|
svnbot
|
2008-08-18 19:46
|
|
Repository: openbravo
Revision: 6387
Author: rafaroda
Date: 2008-08-18 19:46:27 +0200 (Mon, 18 Aug 2008)
Fixes bug 0004549 Marked 'IsReport' and 'IsJasper' columns of 'AD_PROCESS' table as 'Stored in Session'. Added the following Default Value to 'Action' column of 'AD_MODEL_OBJECT' table: @SQL=SELECT (CASE WHEN @IsReport@='Y' OR @IsJasper@='Y' THEN 'R' ELSE 'P' END) FROM DUAL. Marked 'Action' field as read-only inside 'Process Class' tab.
---
U trunk/src-db/database/sourcedata/AD_COLUMN.xml
U trunk/src-db/database/sourcedata/AD_FIELD_TRL.xml
---
https://dev.openbravo.com/websvn/openbravo/?rev=6387&sc=1 [^]
|
|
|
(0008602)
|
svnbot
|
2008-08-18 19:49
|
|
Repository: openbravo
Revision: 6388
Author: rafaroda
Date: 2008-08-18 19:48:51 +0200 (Mon, 18 Aug 2008)
Fixes bug 0004549 Marked 'IsReport' and 'IsJasper' columns of 'AD_PROCESS' table as 'Stored in Session'. Added the following Default Value to 'Action' column of 'AD_MODEL_OBJECT' table: @SQL=SELECT (CASE WHEN @IsReport@='Y' OR @IsJasper@='Y' THEN 'R' ELSE 'P' END) FROM DUAL. Marked 'Action' field as read-only inside 'Process Class' tab.
---
U trunk/src-db/database/sourcedata/AD_FIELD.xml
---
https://dev.openbravo.com/websvn/openbravo/?rev=6388&sc=1 [^]
|
|
|
(0008603)
|
svnbot
|
2008-08-18 20:05
|
|
Repository: openbravo
Revision: 6389
Author: rafaroda
Date: 2008-08-18 20:05:43 +0200 (Mon, 18 Aug 2008)
Note to issue 0004549 Reverted commit of src-db/database/sourcedata/AD_FIELD_TRL.xml file done by error in revision number 6387.
---
U trunk/src-db/database/sourcedata/AD_FIELD_TRL.xml
---
https://dev.openbravo.com/websvn/openbravo/?rev=6389&sc=1 [^]
|
|