diff --git a/core/trunk/core/manage_action.php b/core/trunk/core/manage_action.php index 49c18bcc4d3db65342fe33d31cea0d689d96c81b..78d611014e02109e1af7ee06e2a3ffc53b2b5869 100644 --- a/core/trunk/core/manage_action.php +++ b/core/trunk/core/manage_action.php @@ -343,6 +343,17 @@ else { $comp .= ", table : '".$res_action['table_dest']."'"; } + + + if(isset($res_action['newResultId']) && !empty($res_action['newResultId'])) + { + $comp .= ", newResultId : '".$res_action['newResultId']."'"; + } + if(isset($res_action['action_status']) && !empty($res_action['action_status'])) + { + $comp .= ", action_status : '".$res_action['action_status']."'"; + } + $_SESSION['action_error'] = _ACTION_DONE.' : '.$label_action; echo "{status : 0, error_txt : '".addslashes($_SESSION['action_error'])."'".$comp.", result_id : '".$res_action['result']."'}"; } diff --git a/core/trunk/core/xml/actions_pages.xml b/core/trunk/core/xml/actions_pages.xml index 0ad0fe92296009611e838c1673ecc829c953c16f..4e65216e805eb93a432e07c4e680ea1235772b3a 100644 --- a/core/trunk/core/xml/actions_pages.xml +++ b/core/trunk/core/xml/actions_pages.xml @@ -369,4 +369,15 @@ An action page is described in a ACTIONPAGE tag : <COLL_ID>letterbox_coll</COLL_ID> </COLLECTIONS> </ACTIONPAGE> + <ACTIONPAGE> + <ID>send_signed_docs</ID> + <LABEL>_SEND_SIGNED_DOCS</LABEL> + <NAME>send_signed_docs</NAME> + <ORIGIN>module</ORIGIN> + <MODULE>visa</MODULE> + <FLAG_CREATE>false</FLAG_CREATE> + <COLLECTIONS> + <COLL_ID>letterbox_coll</COLL_ID> + </COLLECTIONS> + </ACTIONPAGE> </ROOT>