Files
erp-site/application/views/scm/invSo/toPdf.php
2026-04-19 01:39:41 +08:00

139 lines
7.1 KiB
PHP
Executable File
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php if(!defined('BASEPATH')) exit('No direct script access allowed');?>
<!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>
<title><?php echo $transType==150601 ? '销货订单' :'销货退货订单'?></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style></style>
</head>
<body>
<?php for($t=1; $t<=$countpage; $t++){?>
<table width="800" align="center">
<tr height="15px">
<td align="center" style="font-family:'宋体'; font-size:18px; font-weight:normal;height:50px;"></td>
</tr>
<tr height="15px">
<td align="center" style="font-family:'宋体'; font-size:18px; font-weight:normal;"><?php echo $system['companyName']?></td>
</tr>
<tr height="15px">
<td align="center" style="font-family:'宋体'; font-size:18px; font-weight:normal;height:25px;"><?php echo $transType==150601 ? '销货订单' :'销货退货订单'?></td>
</tr>
</table>
<table width="800" align="center">
<tr height="15" align="left">
<td width="220" style="font-family:'宋体'; font-size:12px;height:20px;">客户:<?php echo $contactNo.' '.$contactName?> </td>
<td width="120" style="font-family:'宋体'; font-size:12px;height:20px;">销售人员:<?php echo $salesName?></td>
<td width="120" style="font-family:'宋体'; font-size:12px;height:20px;">单据日期:<?php echo $billDate?></td>
<td width="180" style="font-family:'宋体'; font-size:12px;height:20px;">单据编号:<?php echo $billNo?></td>
<td width="50" style="font-family:'宋体'; font-size:12px;height:20px;">币别RMB</td>
</tr>
</table>
<table width="900" border="1" cellpadding="2" cellspacing="1" align="center" style="border-collapse:collapse;border:solid #000000;border-width:1px 0 0 1px;">
<tr style="height:20px">
<td width="30" style="border:solid #000000;border-width:0 1px 1px 0;padding:2px; font-family:'宋体'; font-size:14px;height:15px;" align="center">序号</td>
<td width="220" style="border:solid #000000;border-width:0 1px 1px 0;padding:2px; font-family:'宋体'; font-size:14px;height:15px;" align="center">商品</td>
<td width="30" style="border:solid #000000;border-width:0 1px 1px 0;padding:2px; font-family:'宋体'; font-size:14px;height:15px;" align="center">单位</td>
<td width="40" style="border:solid #000000;border-width:0 1px 1px 0;padding:2px; font-family:'宋体'; font-size:14px;height:15px;" align="center">数量</td>
<td width="60" style="border:solid #000000;border-width:0 1px 1px 0;padding:2px; font-family:'宋体'; font-size:14px;height:15px;" align="center">销售单价</td>
<td width="60" style="border:solid #000000;border-width:0 1px 1px 0;padding:2px; font-family:'宋体'; font-size:14px;height:15px;" align="center">折扣率(%)</td>
<td width="50" style="border:solid #000000;border-width:0 1px 1px 0;padding:2px; font-family:'宋体'; font-size:14px;height:15px;" align="center">折扣额</td>
<td width="60" style="border:solid #000000;border-width:0 1px 1px 0;padding:2px; font-family:'宋体'; font-size:14px;height:15px;" align="center">销售金额</td>
<td width="80" style="border:solid #000000;border-width:0 1px 1px 0;padding:2px; font-family:'宋体'; font-size:14px;height:15px;" align="center">仓库</td>
</tr>
<?php
$i = ($t-1)*$num + 1;
foreach($list as $arr=>$row) {
if ($row['i']>=(($t-1)*$num + 1) && $row['i'] <=$t*$num) {
?>
<tr style="border:solid #000000;border-width:0 1px 1px 0;padding:2px;height:15px;font-family:'宋体'; font-size:12px;">
<td width="30" align="center"><?php echo $row['i']?></td>
<td width="220" style="border:solid #000000;border-width:0 1px 1px 0;height:15px;font-family:'宋体'; font-size:12px;"><?php echo $row['goods'];?></td>
<td width="30" align="center" style="border:solid #000000;border-width:0 1px 1px 0;height:15px;font-family:'宋体'; font-size:12px;"><?php echo $row['invSpec']?></td>
<td width="40" align="right"><?php echo str_money(abs($row['qty']),$system['qtyPlaces'])?></td>
<td width="60" align="right"><?php echo abs($row['price'])?></td>
<td width="60" align="right"><?php echo $row['discountRate']?></td>
<td width="50" align="right"><?php echo $row['deduction']?></td>
<td width="60" align="right"><?php echo str_money(abs($row['amount']),2)?></td>
<td width="80"><?php echo $row['locationName']?></td>
</tr>
<?php
$s = $row['i'];
}
$i++;
}
?>
<?php
//补全
if ($t==$countpage) {
for ($m=$s+1;$m<=$t*$num;$m++) {
?>
<tr style="border:solid #000000;border-width:0 1px 1px 0;padding:2px;height:15px;font-family:'宋体'; font-size:12px;">
<td width="30" align="center" style="border:solid #000000;border-width:0 1px 1px 0;height:15px;font-family:'宋体'; font-size:12px;"><?php echo $m?></td>
<td width="220"></td>
<td width="30"></td>
<td width="40"></td>
<td width="60"></td>
<td width="60"></td>
<td width="50"></td>
<td width="60"></td>
<td width="80"></td>
</tr>
<?php }}?>
<?php if ($t==$countpage) {?>
<tr style="height:20px">
<td colspan="3" align="right" style="border:solid #000000;border-width:0 1px 1px 0;padding:2px;height:15px;font-family:'宋体'; font-size:12px;">合计:</td>
<td width="60" align="right"><?php echo str_money(abs($totalQty),$system['qtyPlaces'])?></td>
<td width="60" align="center"></td>
<td width="60" align="center"></td>
<td width="60" align="center"></td>
<td width="60" align="right"><?php echo str_money(abs($totalAmount),2)?></td>
<td width="80" align="center"></td>
</tr>
<tr target="id">
<td colspan="9" style="border:solid #000000;border-width:0 1px 1px 0;padding:2px; font-family:'宋体'; font-size:12px;height:15px;">合计 金额大写: <?php echo str_num2rmb(abs($totalAmount))?> </td>
</tr>
<?php }?>
</table>
<table width="800" align="center">
<tr height="15" align="left">
<td align="left" width="700" style="font-family:'宋体'; font-size:12px;height:25px;">备注: <?php echo $description?></td>
<td width="0" ></td>
<td width="0" ></td>
<td width="0" ></td>
<td width="0" ></td>
</tr>
</table>
<table width="800" align="center">
<tr height="15" align="left">
<td align="left" width="200" style="font-family:'宋体'; font-size:12px;height:25px;">制单人:<?php echo $userName?> </td>
<td width="150" style="font-family:'宋体'; font-size:12px;height:25px;">发货人签字____________</td>
<td width="150" style="font-family:'宋体'; font-size:12px;height:25px;">客户签字____________</td>
<td width="150"></td>
<td width="50" ></td>
</tr>
</table>
<?php echo $t==$countpage?'':'<br><br><br>';}?>
</body>
</html>