print_order_1.tpl

来自「渣渣网络商店系统[ZZShop] V1.0」· TPL 代码 · 共 39 行

TPL
39
字号
<script language='javascript'>
<!--
	function checkValue()
	{
		var Obj = document.frmInfo;
		
		for(var i = 0; i < Obj.PrintPart.length; i++)
		{
			if(Obj.PrintPart[i].checked) return true;
		}
		
		return false;
	}
	
//-->
</script>
<form action="{ACTION}" method='POST' name='frmInfo' onSubmit='return checkValue();' enctype='multipart/form-data' target='_blank'>
<table width="100%"  border="0"  cellspacing=0 cellpadding=5 class=adminform>
  <tr class='info_title'>
  	<td colspan="8"><strong>选择要打印的订单部分</strong></td>
  </tr>
  <tr class='info_content'>
    <td width=100>要打印的部分: </td>
    <td>
    	<input type=checkbox name='PrintPart[]' id=PrintPart value='BaseInfo' checked> 订单基本信息<br>
    	<input type=checkbox name='PrintPart[]' id=PrintPart value='Payer' checked> 付款人信息<br>
    	<input type=checkbox name='PrintPart[]' id=PrintPart value='Receiver' checked> 收货人信息<br>
    	<input type=checkbox name='PrintPart[]' id=PrintPart value='Product' checked> 商品信息<br>
    </td>
  </tr>
  <tr align="center" class='info_bottom'>
    <td colspan="4">
		<input type="submit" value="打印">
		<input type="button" onClick='history.go(-1);' value="返回(C)" accesskey="c">
		<input name="btnSubmit" type="hidden" id="btnSubmit" value="1">
	</td>
  </tr>
</table>
</form>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?