mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 16:18:47 +00:00
79 lines
3.1 KiB
Smarty
79 lines
3.1 KiB
Smarty
{*
|
|
/*************************************
|
|
* SPDX-FileCopyrightText: 2009-2020 Vtenext S.r.l. <info@vtenext.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
************************************/
|
|
*}
|
|
|
|
{* crmv@84320 *}
|
|
{if $activitytype == 'Call'}
|
|
{assign var="ACTIVITYIMG" value="call"}
|
|
{elseif $activitytype == 'Meeting'}
|
|
{assign var="ACTIVITYIMG" value="group"}
|
|
{elseif $activitytype == 'Task'}
|
|
{assign var="ACTIVITYIMG" value="event_note"}
|
|
{/if}
|
|
{* crmv@84320e *}
|
|
|
|
<div id="{$popupid}" class="reminder-popup">
|
|
<input type="hidden" name="{$popupid}_module" value="{$cbmodule}" />
|
|
<input type="hidden" name="{$popupid}_record" value="{$cbrecord}" />
|
|
<input type="hidden" name="{$popupid}_reminderid" value="{$cbreminderid}" />
|
|
|
|
<table class="table-fixed" border="0" cellpadding="2" cellspacing="0">
|
|
<tr>
|
|
<td rowspan="2" align="center" style="width:72px">
|
|
<i class="vteicon big_circle" style="color:#FFFFFF">{$ACTIVITYIMG}</i>
|
|
</td>
|
|
<td align="left" width="50%">
|
|
<table width="100%" border="0" cellpadding="2" cellspacing="0">
|
|
<tr>
|
|
<td align="left">
|
|
<b>{$activitytype|@getTranslatedString:$MODULE} - {$cbstatus|@getTranslatedString:$MODULE}</b>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
<td rowspan="2" width="40%" style="padding-right:20px">
|
|
<table class="table-fixed" border="0" cellpadding="2" cellspacing="0">
|
|
{* crmv@185423 *}
|
|
<tr>
|
|
<td align="right" class="card-action">
|
|
{* crmv@196511 *}
|
|
{if $activitytype == 'Task'}
|
|
<input class="crmbutton small save" type="button" value="{$APP.LBL_CLOSE} {$activitytype|getTranslatedString:$MODULE}" onclick="ActivityReminderCloseTask('{$cbrecord}', '{$popupid}');" />
|
|
{else}
|
|
<input class="crmbutton small save" type="button" value="{$APP.LBL_CLOSE} {$APP.Activity}" onclick="ActivityReminderCloseActivity('{$cbrecord}', '{$popupid}');" />
|
|
{/if}
|
|
{* crmv@196511e *}
|
|
</td>
|
|
</tr>
|
|
{* crmv@185423e *}
|
|
<tr>
|
|
<td align="right" class="card-action">
|
|
<input class="crmbutton small edit" type="button" value="{$APP.LBL_OPEN}" onclick="location.href='index.php?action=DetailView&module={$cbmodule}&record={$cbrecord}'" />
|
|
<input class="crmbutton small edit" type="button" value="{$APP.LBL_DISMISS}" onclick="ActivityReminderCloseCallback('{$cbmodule}','{$cbrecord}','{$cbreminderid}');ActivityReminderCallbackReset(0, '{$popupid}');ActivityReminderRemovePopupDOM('{$popupid}');" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td align="right" class="wrap-content">
|
|
{if !empty($cbcolor)}
|
|
{assign var="colorprop" value="color:$cbcolor;"}
|
|
{/if}
|
|
<span style="{$colorprop}">{$OVERDUE} {$PERIOD}.</span> {* crmv@138716 *}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td align="left">
|
|
<table class="table-fixed" border="0" cellpadding="2" cellspacing="0">
|
|
<tr><td align="left" class="wrap-content"><b>{$cbsubject}</b></td></tr>
|
|
<tr><td align="left" class="wrap-content">{$WHEN_STRING}</td></tr>
|
|
<tr><td align="left" class="wrap-content">{$LOCATION_STRING}</td></tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div> |