You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.6 KiB
59 lines
1.6 KiB
<!-- $Id: integrate_sync.htm 14216 2008-03-10 02:27:21Z testyang $ -->
|
|
{include file="pageheader.htm"}
|
|
<div class="main-div">
|
|
<form action="integrate.php" method="post" onsubmit="return validate()" name="theForm">
|
|
<table>
|
|
<tr>
|
|
<td colspan="2" style="padding: 10px 80px">
|
|
<img src="images/warning.gif" width="32" height="32" border="0" alt="warning" align="left" hspace="10" /> {$lang.sync_notics}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="label">{$lang.sync_start}</td>
|
|
<td><input type="text" name="start" value="{$sync_start}" />{$lang.require_field}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="label">{$lang.sync_number}</td>
|
|
<td><input type="text" name="num" value="{$sync_num}" />{$lang.require_field}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="label">{$lang.sync_target}</td>
|
|
<td>{html_radios options=$lang.sync_target_sys checked=$sync_target name=target}</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2" align="center"><br />
|
|
<input type="submit" value="{$lang.btn_sync}" class="button" />
|
|
<input type="hidden" name="act" value="exec_sync" />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</div>
|
|
{insert_scripts files="../js/utils.js,validator.js"}
|
|
{literal}
|
|
<script language="JavaScript">
|
|
<!--
|
|
onload = function()
|
|
{
|
|
// 开始检查订单
|
|
startCheckOrder();
|
|
}
|
|
function validate()
|
|
{
|
|
if (confirm(sync_confirm))
|
|
{
|
|
var validator = new Validator('theForm');
|
|
validator.isInt("start", start_invalid, true);
|
|
validator.isInt("num", num_invalid, true);
|
|
|
|
return validator.passed();
|
|
}
|
|
else
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
//-->
|
|
</script>
|
|
{/literal}
|
|
{include file="pagefooter.htm"}
|