📄 delegationentryreport.aspx
字号:
<%@ page language="C#" autoeventwireup="true" inherits="BaseInfo_DelegationEntryReport, App_Web_eihb9n8s" %><html>
<head id="Head1" runat="server">
<title>外协加工入库单打印</title>
<link rel="stylesheet" href="../css/master.css" type="text/css" />
<style media=print>
.noprint
{
display:none;
}
</style>
</head>
<body>
<OBJECT classid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2 height=0 id=wb width=0></OBJECT>
<div style=" position:absolute; width:350; border:none; top:10px;left:10px;">
<input type=button value="打印机设置" style="border:solid 1px #a3a3a3; background-color:#e6e6e6;font-size:12px" class="noprint" onclick="javascript:wb.execWB(8,1);"/> <input type=button value="打印预览" style="border:solid 1px #a3a3a3; background-color:#e6e6e6;font-size:12px" class="noprint" onclick="javascript:wb.execWB(7,1);"/> <input type=button value=" 打 印 " style="border:solid 1px #a3a3a3; background-color:#e6e6e6;font-size:12px" class="noprint" onclick="javascript:wb.execWB(6,1);"/> <input type=button value=" 关闭窗口 " style="border:solid 1px #a3a3a3; background-color:#e6e6e6;font-size:12px" class="noprint" onclick="javascript:window.close();"/>
</div>
<form id="form1" runat="server">
<div style="overflow-x:hidden;width:600; overflow-y:hidden;height:90;background-color:#ffffff;border-top:#a3a3a3 1px solid;border-left:#a3a3a3 1px solid;border-bottom:#a3a3a3 0px solid;border-right:#a3a3a3 1px solid;">
<table cellpadding="0" cellspacing="0" width="598" style="cursor:default" border=0 style="padding:2px 1px 1px 1px">
<tr>
<td align="right" width="350" rowspan="3" style="font-weight:bold"><u>外 协 加 工 入 库 单</u></td>
<td align="right" style="font-size:14px">中山尚洋精密工业有限公司</td>
</tr>
<tr>
<td align="right" style="font-size:12px">地址:中山市三乡镇里塘敢开洋厂房</td>
</tr>
<tr>
<td align="right" style="font-size:12px">TEL:0760-6382801 FAX:6382806</td>
</tr>
<tr>
<td colspan=2>
<table width="100%">
<tr>
<td colspan="5"></td>
</tr>
<tr>
<td>编号:</td>
<td>
<input readonly class="underLineTextBox" id="txtPONo" style="width:70" value="<%=entryNo %>"/>
</td>
<td>加工单编号:</td>
<td>
<input readonly class="underLineTextBox" id="Text3" style="width:70" value="<%=pono %>"/>
</td>
<td><input type=hidden id="pupkid" value="999"/>
厂家:
<input readonly class="underLineTextBox" id="Text1" style="width:70" value="<%=supplierName %>"/>
</td>
<td>
入库单日期:
</td>
<td>
<input class="underLineTextBox" id="txtPurchaseDate" style="width:70" value="<%=date1 %>"/>
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
<div id="span1" style="width:600; overflow-x:auto;overflow-y:auto;background-color:ffffff;border-top:#a3a3a3 1px solid;border-left:#a3a3a3 1px solid;border-bottom:#a3a3a3 1px solid;border-right:#a3a3a3 1px solid;"onscroll="vbs:HScroll">
<table border=0 cellspacing=0 cellpadding=0 id=tb1 STYLE="table-layout: fixed; background-Color:#ffffff;border-left:buttonface 1px solid;">
<tr>
<td class="td1">物料ID</td>
<td class="td1">物料编号</td>
<td class="td1">物料名称</td>
<td class="td1">物料规格</td>
<td class="td1">入库数量</td>
<td class="td1">单位</td>
</tr>
<asp:Repeater ID="rptDetails" runat="server">
<ItemTemplate>
<tr style="height:20; white-space:nowrap;background-Color:#ffffff" >
<td class="td1"> <%#DataBinder.Eval(Container.DataItem, "StuffId") %> </td>
<td class="td1"><%#DataBinder.Eval(Container.DataItem, "StuffNo")%> </td>
<td class="td1"><%#DataBinder.Eval(Container.DataItem,"StuffName") %> </td>
<td class="td1"><%#DataBinder.Eval(Container.DataItem,"StuffSpec") %> </td>
<td class="td1"><%#DataBinder.Eval(Container.DataItem,"Quantity") %> </td>
<td class="td1"><%#DataBinder.Eval(Container.DataItem,"Unit") %> </td>
</tr>
</ItemTemplate>
</asp:Repeater>
</table>
</div>
</form>
<!--物料列表-->
</body>
</html>
<script language=javascript defer>
var rows1=document.all("tb1").rows.length;
for(var i=rows1;i<30;i++)
{
var row1=document.all("tb1").insertRow();
for(var ii=0;ii<6;ii++)
{
var cell=row1.insertCell();
cell.innerText=" ";
cell.className="td1";
}
}
</script>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -