Files
PropertyDeployment/resources/Web/MicroCommunityWeb/html/pages/property/printPurchaseApply/printPurchaseApply.html
2025-12-09 20:22:03 +08:00

96 lines
5.0 KiB
HTML
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.

<div>
<div>
<div>
<div class="row">
<div class="col-sm-4">
<span>
<span><vc:i18n name="申请单号" namespace="printPurchaseApply"></vc:i18n></span>{{printPurchaseApplyInfo.applyOrderId}}
</span>
</div>
<div class="col-sm-4">
<span>
<span><vc:i18n name="申请人" namespace="printPurchaseApply"></vc:i18n></span>{{printPurchaseApplyInfo.endUserName}}
</span>
</div>
<div class="col-sm-4">
<span>
<span><vc:i18n name="联系电话" namespace="printPurchaseApply"></vc:i18n></span>{{printPurchaseApplyInfo.endUserTel}}
</span>
</div>
</div>
<table class="table table-bordered margin-top">
<thead>
<tr>
<th scope="col" class="text-center">
<span><vc:i18n name="编号" namespace="printPurchaseApply"></vc:i18n></span>
</th>
<th scope="col" class="text-center">
<span><vc:i18n name="名称" namespace="printPurchaseApply"></vc:i18n></span>
</th>
<th scope="col" class="text-center">
<span><vc:i18n name="编码规格" namespace="printPurchaseApply"></vc:i18n></span>
</th>
<th scope="col" class="text-center">
<span><vc:i18n name="采购单价" namespace="printPurchaseApply"></vc:i18n></span>
</th>
<th scope="col" class="text-center">
<span><vc:i18n name="申请数量" namespace="printPurchaseApply"></vc:i18n></span>
</th>
<th scope="col" class="text-center">
<span><vc:i18n name="采购数量" namespace="printPurchaseApply"></vc:i18n></span>
</th>
<th scope="col" class="text-center">
<span><vc:i18n name="备注" namespace="printPurchaseApply"></vc:i18n></span>
</th>
</tr>
</thead>
<tbody>
<tr v-for="(item,index) in printPurchaseApplyInfo.purchaseApplyDetailVo">
<th scope="row" class="text-center">{{index +1}}</th>
<td class="text-center">{{item.resName}}</td>
<td class="text-center">{{item.resCode}}</td>
<td class="text-center">{{item.purchasePrice}}</td>
<td class="text-center">{{item.quantity}}</td>
<td class="text-center">{{item.purchaseQuantity? item.purchaseQuantity : '-'}}</td>
<td class="text-center">{{item.remark}}</td>
</tr>
<tr>
<th scope="row" class="text-center">
<span><vc:i18n name="备注" namespace="printPurchaseApply"></vc:i18n></span>
</th>
<td colspan="4">{{printPurchaseApplyInfo.description}}</td>
<td class="text-center">实际采购总价格</td>
<td>{{printPurchaseApplyInfo.purchaseTotalPrice}}</td>
</tr>
<tr height="60px">
<td colspan="2" class="text-center " style="vertical-align:middle;">
<span><vc:i18n name="厂家签字" namespace="printPurchaseApply"></vc:i18n></span>
</td>
<td colspan="2"></td>
<td class="text-center " style="vertical-align:middle;">
<span><vc:i18n name="时间" namespace="printPurchaseApply"></vc:i18n></span>
</td>
</tr>
<tr height="60px">
<td colspan="2" class="text-center" style="vertical-align:middle;">
<span><vc:i18n name="采购人员签字" namespace="printPurchaseApply"></vc:i18n></span>
</td>
<td colspan="2"></td>
<td class="text-center " style="vertical-align:middle;">
<span><vc:i18n name="时间" namespace="printPurchaseApply"></vc:i18n></span>
</td>
</tr>
</tbody>
</table>
</div>
<div id="print-btn">
<button class="btn btn-primary float-right" type="button" v-on:click="_printPurchaseApplyDiv()">
<i class="fa fa-check"></i>&nbsp;打印
</button>
<button type="button" class="btn btn-warning float-right" style="margin-right:20px;"
v-on:click="_closePage()">
<span><vc:i18n name="取消" namespace="printPurchaseApply"></vc:i18n></span>
</button>
</div>
</div>
</div>