mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 06:30:59 +01:00
More Home progress:
- Send action results
This commit is contained in:
parent
978b5f4ffd
commit
35ebfc4f9f
@ -112,6 +112,7 @@ class timesheet_favorite_portlet extends home_favorite_portlet
|
|||||||
if (!count($content['nm']['selected']) && !$content['nm']['select_all'])
|
if (!count($content['nm']['selected']) && !$content['nm']['select_all'])
|
||||||
{
|
{
|
||||||
$msg = lang('You need to select some entries first!');
|
$msg = lang('You need to select some entries first!');
|
||||||
|
egw_json_response::get()->apply('egw.message',array($msg,'error'));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -121,17 +122,19 @@ class timesheet_favorite_portlet extends home_favorite_portlet
|
|||||||
{
|
{
|
||||||
$msg .= lang('%1 timesheets(s) %2',$success,$action_msg);
|
$msg .= lang('%1 timesheets(s) %2',$success,$action_msg);
|
||||||
|
|
||||||
foreach($values['nm']['selected'] as &$id)
|
egw_json_response::get()->apply('egw.message',array($msg,'success'));
|
||||||
|
foreach($content['nm']['selected'] as &$id)
|
||||||
{
|
{
|
||||||
$id = 'timesheet::'.$id;
|
$id = 'timesheet::'.$id;
|
||||||
}
|
}
|
||||||
// Directly request an update - this will get timesheet tab too
|
// Directly request an update - this will get timesheet tab too
|
||||||
egw_json_response::get()->apply('egw.dataRefreshUIDs',array($values['nm']['selected']));
|
egw_json_response::get()->apply('egw.dataRefreshUIDs',array($content['nm']['selected']));
|
||||||
}
|
}
|
||||||
elseif(empty($msg))
|
elseif(empty($msg))
|
||||||
{
|
{
|
||||||
$msg .= lang('%1 timesheets(s) %2, %3 failed because of insufficent rights !!!',$success,$action_msg,$failed);
|
$msg .= lang('%1 timesheets(s) %2, %3 failed because of insufficent rights !!!',$success,$action_msg,$failed);
|
||||||
}
|
}
|
||||||
|
egw_json_response::get()->apply('egw.message',array($msg,'error'));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user