PMCORE-4027[28891-29654] Case history and case data showing previous case information

Corrections

add overlay

CR
This commit is contained in:
Fabio Guachalla
2022-12-21 11:10:01 -04:00
parent ab9e8d9bc0
commit 990f704f65
8 changed files with 24 additions and 19 deletions

View File

@@ -8,7 +8,7 @@ $actionAjax = isset($_REQUEST['actionAjax']) ? $_REQUEST['actionAjax'] : null;
switch ($actionAjax) {
case 'historyGridList_JXP':
global $G_PUBLISH;
$appUid = $_SESSION['APPLICATION'];
$appUid = isset($_REQUEST['appUid']) ? $_REQUEST['appUid'] : $_SESSION['APPLICATION'];
$case = new ClassesCases();
$fields = $case->loadCase($appUid);
$criteria = Cases::getTransferHistoryCriteria($fields['APP_NUMBER']);

View File

@@ -179,11 +179,12 @@
//!!historyGridList|changeLog
function historyGridList(){
var appUid = this.window.location.search.substr(27);
store = new Ext.data.GroupingStore({
proxy : new Ext.data.HttpProxy
(
{
url: 'caseHistory_Ajax.php?actionAjax=historyGridList_JXP'
url: 'caseHistory_Ajax.php?actionAjax=historyGridList_JXP&appUid=' + appUid
}
),