Add html files
This commit is contained in:
180
modules/EcmDocuments/DetailView.html
Executable file
180
modules/EcmDocuments/DetailView.html
Executable file
@@ -0,0 +1,180 @@
|
||||
<!--
|
||||
/*****************************************************************************
|
||||
* The contents of this file are subject to the RECIPROCAL PUBLIC LICENSE
|
||||
* Version 1.1 ("License"); You may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
* http://opensource.org/licenses/rpl.php. Software distributed under the
|
||||
* License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND,
|
||||
* either express or implied.
|
||||
*
|
||||
* You may:
|
||||
* a) Use and distribute this code exactly as you received without payment or
|
||||
* a royalty or other fee.
|
||||
* b) Create extensions for this code, provided that you make the extensions
|
||||
* publicly available and document your modifications clearly.
|
||||
* c) Charge for a fee for warranty or support or for accepting liability
|
||||
* obligations for your customers.
|
||||
*
|
||||
* You may NOT:
|
||||
* a) Charge for the use of the original code or extensions, including in
|
||||
* electronic distribution models, such as ASP (Application Service
|
||||
* Provider).
|
||||
* b) Charge for the original source code or your extensions other than a
|
||||
* nominal fee to cover distribution costs where such distribution
|
||||
* involves PHYSICAL media.
|
||||
* c) Modify or delete any pre-existing copyright notices, change notices,
|
||||
* or License text in the Licensed Software
|
||||
* d) Assert any patent claims against the Licensor or Contributors, or
|
||||
* which would in any way restrict the ability of any third party to use the
|
||||
* Licensed Software.
|
||||
*
|
||||
* You must:
|
||||
* a) Document any modifications you make to this code including the nature of
|
||||
* the change, the authors of the change, and the date of the change.
|
||||
* b) Make the source code for any extensions you deploy available via an
|
||||
* Electronic Distribution Mechanism such as FTP or HTTP download.
|
||||
* c) Notify the licensor of the availability of source code to your extensions
|
||||
* and include instructions on how to acquire the source code and updates.
|
||||
* d) Grant Licensor a world-wide, non-exclusive, royalty-free license to use,
|
||||
* reproduce, perform, modify, sublicense, and distribute your extensions.
|
||||
*
|
||||
* The Original Code is: CommuniCore
|
||||
* Olavo Farias
|
||||
* 2006-04-7 olavo.farias@gmail.com
|
||||
*
|
||||
* The Initial Developer of the Original Code is CommuniCore.
|
||||
* Portions created by CommuniCore are Copyright (C) 2005 CommuniCore Ltda
|
||||
* All Rights Reserved.
|
||||
********************************************************************************/
|
||||
-->
|
||||
<!-- BEGIN: main -->
|
||||
<div style="background:#ffffff;display:none;position:absolute; top:20; left:20; border:solid; border-width:2px; border-color:#333333" id="fade" class="fade"><div style="text-align:center; vertical-align:middle"><br />
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
<span style="font-size:16px; font-weight: bold;">Loading</span><br /><img src="modules/EcmDocuments/images/loading-big.gif" border="0" width="100" height="100"></div></div>
|
||||
<script>
|
||||
document.getElementById('fade').style.width=screen.width-57;
|
||||
document.getElementById('fade').style.height=screen.height-215;
|
||||
</script>
|
||||
<script type="text/javascript" src="include/javascript/overlibmws.js"></script>
|
||||
<script>
|
||||
function quick_create_overlib(id, theme, db_id) {
|
||||
return overlib(
|
||||
"<a style='width: 150px' class='menuItem' onmouseover='hiliteItem(this,\"yes\");' onmouseout='unhiliteItem(this);' href='index.php?module=EcmContracts&action=EditView&samba_file=" + id + "&db_id=" + db_id + "'>" +
|
||||
"<img border='0' src='themes/" + theme + "/images/Contracts.gif' style='margin-right:5px'>"
|
||||
+ "Contract" + "</a>" +
|
||||
"<a style='width: 150px' class='menuItem' onmouseover='hiliteItem(this,\"yes\");' onmouseout='unhiliteItem(this);' href='index.php?module=EcmCorrespondenceIns&action=EditView&samba_file=" + id + "&db_id=" + db_id + "'>" +
|
||||
"<img border='0' src='themes/" + theme + "/images/Contracts.gif' style='margin-right:5px'>"
|
||||
+ "Correspondence In" + "</a>" +
|
||||
"<a style='width: 150px' class='menuItem' onmouseover='hiliteItem(this,\"yes\");' onmouseout='unhiliteItem(this);' href='index.php?module=EcmCorrespondenceOuts&action=EditView&samba_file=" + id + "&db_id=" + db_id + "'>" +
|
||||
"<img border='0' src='themes/" + theme + "/images/Contracts.gif' style='margin-right:5px'>"
|
||||
+ "Correspondence Out" + "</a>" +
|
||||
"<a style='width: 150px' class='menuItem' onmouseover='hiliteItem(this,\"yes\");' onmouseout='unhiliteItem(this);' href='index.php?module=EcmDocs&action=EditView&samba_file=" + id + "&db_id=" + db_id + "'>" +
|
||||
"<img border='0' src='themes/" + theme + "/images/Contracts.gif' style='margin-right:5px'>"
|
||||
+ "File" + "</a>" +
|
||||
"<a style='width: 150px' class='menuItem' onmouseover='hiliteItem(this,\"yes\");' onmouseout='unhiliteItem(this);' href='index.php?module=EcmInvoiceIns&action=EditView&samba_file=" + id + "&db_id=" + db_id + "'>" +
|
||||
"<img border='0' src='themes/" + theme + "/images/Contracts.gif' style='margin-right:5px'>"
|
||||
+ "Invoice In" + "</a>" +
|
||||
"<a style='width: 150px' class='menuItem' onmouseover='hiliteItem(this,\"yes\");' onmouseout='unhiliteItem(this);' href='index.php?module=EcmInvoiceOuts&action=EditView&samba_file=" + id + "&db_id=" + db_id + "'>" +
|
||||
"<img border='0' src='themes/" + theme + "/images/Contracts.gif' style='margin-right:5px'>"
|
||||
+ "Invoice Out" + "</a>"
|
||||
, CAPTION, "Quick Create"
|
||||
, STICKY, MOUSEOFF, 3000, CLOSETEXT, '<img border=0 src="themes/' + theme + '/images/close_inline.gif">', WIDTH, 150, CLOSETITLE, SUGAR.language.get('app_strings', 'LBL_ADDITIONAL_DETAILS_CLOSE_TITLE'), CLOSECLICK, FGCLASS, 'olOptionsFgClass',
|
||||
CGCLASS, 'olOptionsCgClass', BGCLASS, 'olBgClass', TEXTFONTCLASS, 'olFontClass', CAPTIONFONTCLASS, 'olOptionsCapFontClass', CLOSEFONTCLASS, 'olOptionsCloseFontClass');
|
||||
}
|
||||
</script>
|
||||
<form action="index.php" method="post" name="DetailView" id="form">
|
||||
<input type="hidden" name="module" value="EcmDocuments">
|
||||
<input type="hidden" name="record" value="{ID}">
|
||||
<input type="hidden" name="isDuplicate" value=false>
|
||||
<input type="hidden" name="action">
|
||||
<input type="hidden" name="return_module">
|
||||
<input type="hidden" name="return_action">
|
||||
<input type="hidden" name="return_id" >
|
||||
<input type="hidden" name="contact_id">
|
||||
<input type="hidden" name="task_id">
|
||||
<input type="hidden" name="meeting_id">
|
||||
<input type="hidden" name="call_id">
|
||||
<input type="hidden" name="account_id">
|
||||
<input type="hidden" name="case_id">
|
||||
|
||||
</form>
|
||||
{SEARCHBLOCK}<br />
|
||||
|
||||
<table width="100%" cellspacing="0" cellpadding="0" border="0" class="subpanelTabForm" style="padding-top: 0px; margin-top: 0px; border-top: 0px none; border-bottom: 0px none; margin-bottom: 0px; padding-bottom: 0px;">
|
||||
<tr>
|
||||
<td>
|
||||
<table width="100%" cellpadding="0" cellspacing="0" border="0" class="h3Row"><tr><td width="100%" nowrap><h3><a name="ecmdocuments"></a>
|
||||
<a style="cursor:pointer;" class='utilsLink' onclick="displayshowblock('firstblock');"><input type="hidden" id="firstblock_input" value="{FIRSTBLOCKINPUTVALUE}" /><img src='themes/{THEME}/images/{IMGD}_search.gif' id='firstblock_image' width='8' height='8' alt="Hide" border="0" align="absmiddle"></a> Details</h3></td><td width='100%'><IMG height='1' width='1' src='include/images/blank.gif' alt=''></td></tr>
|
||||
</table>
|
||||
<div id="firstblock" class="{CLASSD}">
|
||||
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td width="50%"><form action="index.php?module=EcmDocuments&action=SaveInformation&record={ID}" method="post">
|
||||
|
||||
|
||||
<table width="100%" border="0" cellspacing="{GRIDLINE}" cellpadding="0" class="tabDetailView">
|
||||
<tr>
|
||||
<td width="15%" class="tabDetailViewDL"><span sugar='slot1'>{MOD.LBL_NAME}</span sugar='slot'></td>
|
||||
<td width="35%" class="tabDetailViewDF"><span sugar='slot1b'>{NAME} </span sugar='slot'></td>
|
||||
<td width="15%" valign="top" class="tabDetailViewDL">Cloning</td>
|
||||
<td width="35%" colspan="2" valign="top" class="tabDetailViewDF">{CLONING}</td>
|
||||
</tr>
|
||||
|
||||
|
||||
<tr>
|
||||
<td valign="top" class="tabDetailViewDL"><span sugar='slot2'>Full Path</span sugar='slot'></td>
|
||||
<td valign="top" class="tabDetailViewDF"><span sugar='slot2b'>{SCIEZKA}</span sugar='slot'></td>
|
||||
<td valign="top" class="tabDetailViewDL">Shortcut</td>
|
||||
<td colspan="2" valign="top" class="tabDetailViewDF">{SHORTCUT}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" class="tabDetailViewDL">Date Modified </td>
|
||||
<td valign="top" class="tabDetailViewDF">{DATE_MODIFIED}</td>
|
||||
<td colspan="3" rowspan="2" valign="top" class="tabDetailViewDL">{OPTIONSBLOCK}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" class="tabDetailViewDL">Date Created </td>
|
||||
<td valign="top" class="tabDetailViewDF">{DATE_ENTERED}</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td valign="top" class="tabDetailViewDL"><span sugar='slot3'>Description</span sugar='slot'></td>
|
||||
<td valign="top" class="tabDetailViewDF"><span sugar='slot3b'>{DESCRIPTION} {SAVEINFO}</span sugar='slot'></td>
|
||||
<td valign="top" class="tabDetailViewDL"><span sugar='slot2'>{APP.LBL_ASSIGNED_TO}</span sugar='slot'></td>
|
||||
<td align="left" valign="top" class="tabDetailViewDL"><table width="10" border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td><span class="tabDetailViewDF"><span sugar='slot2b'>{ASSIGNED_TO}</span sugar='slot'></span></td>
|
||||
</tr>
|
||||
</table></td>
|
||||
<td align="left" valign="top" class="tabDetailViewDL"> </td>
|
||||
</tr>
|
||||
|
||||
|
||||
<tr>
|
||||
<td colspan="5" align="left" valign="top" class="tabDetailViewDL"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</form></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
{SAMBABLOCK}
|
||||
|
||||
<!-- END: main -->
|
||||
<!-- BEGIN: subpanel -->
|
||||
<span sugar='slot23'>{SUBPANEL}</span sugar='slot'>
|
||||
<!-- END: subpanel -->
|
||||
Reference in New Issue
Block a user