📄 sale_list.php
字号:
<?php
require(dirname(__FILE__)."/include/config_base.php");
require(dirname(__FILE__)."/include/config_rglobals.php");
require(dirname(__FILE__)."/include/page.php");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<link href="style/main.css" rel="stylesheet" type="text/css" />
<title><?php echo $cfg_softname;?>选择产品</title>
<script language="javascript">
function selectpro(value,id,gg,dw){
window.opener.document.<?php echo $form ?>.<?php echo $field ?>.value=value;
window.opener.document.<?php echo $form ?>.seek_number.value=id;
window.opener.document.<?php echo $form ?>.showinfo.value="产品名称:"+value+" 规格:"+gg;
window.opener.document.<?php echo $form ?>.showdw.value=dw;
window.close();
return false;
}
</script>
</head>
<body>
<table width="100%" border="0" id="table_style_all" cellpadding="0" cellspacing="0">
<tr>
<td id="table_style" class="l_t"> </td>
<td> </td>
<td id="table_style" class="r_t"> </td>
</tr>
<tr>
<td> </td>
<td>
<table width="100%" border="0" cellpadding="0" cellspacing="2">
<tr>
<td>
<table width="100%" border="0" cellspacing="0">
<tr><form action="sale_list.php?action=seek&form=<?php echo $form; ?>&field=<?php echo $field; ?>" name="form1" method="post">
<td>
<strong> 选择你要的产品</strong>
</td>
<td align="right">销售单号:
<?php
if ($action=='seek')
echo "<input type='text' name='s_number' value='".$s_number."' size='12'> 产品货号:<input type='text' name='stext' value='".$stext."' size='12'>";
else
echo "<input type='text' name='s_number' size='12'> 产品货号:<input type='text' name='stext' size='12'>";
?>
<input type="submit" value="开始检索">
</td>
</tr></form>
</table>
</td>
</tr>
<form method="post" name="sel">
<tr>
<td bgcolor="#FFFFFF">
<?php
echo "<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" id=\"table_border\">";
if($action=='seek'){
if($s_number=='')echo "<script>alert('请输入要退货的销售单号');history.go(-1);</script>";
$query="select * from #@__sale where rdh='$s_number' and productid LIKE '%".$stext."%'";
}
else
$query="select * from #@__sale";
$csql=New Dedesql(false);
$dlist = new DataList();
$dlist->pageSize = $cfg_record;
$dlist->SetParameter("form",$form);
$dlist->SetParameter("field",$field);//设置GET参数表
if($action=='seek'){
$dlist->SetParameter("action",$action);
$dlist->SetParameter("s_number",$s_number);
$dlist->SetParameter("stext",$stext);
}
$dlist->SetSource($query);
echo "<tr class='row_color_head'><td>货号</td><td>名称</td><td>规格</td><td>售价</td><td>供应商</td><td>销售单号</td><td>选择</td></tr>";
$mylist = $dlist->GetDataList();
while($row = $mylist->GetArray('dm')){
echo "<tr onMouseMove=\"javascript:this.bgColor='#EBF1F6';\" onMouseOut=\"javascript:this.bgColor='#FFFFFF';\">\r\n<td>".$row['productid']."</td><td> ".get_name($row['productid'],'name')."</td><td>".get_name($row['productid'],'gg')."</td><td>¥".getsale($row['productid'])."</td><td>".get_name($row['productid'],'gys')."</td><td>".$row['rdh']."</td><td><input type='checkbox' name='sel_pro".$row['id']."' value='".get_name($row['productid'],'name')."' onclick=\"selectpro(this.value,".$row['productid'].",'".get_name($row['productid'],'gg')."','".get_name(get_name($row['productid'],'dwname'),'dw')."')\"></td>\r\n</tr>";
}
echo "<tr><td colspan='8'> ".$dlist->GetPageList($cfg_record)."</td></tr>";
echo "</table>";
$csql->close();
?>
</td>
</tr></form>
</table>
</td>
<td> </td>
</tr>
<tr>
<td id="table_style" class="l_b"> </td>
<td> </td>
<td id="table_style" class="r_b"> </td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -