MicroCommunityWeb/public/pages/common/purchaseApplyManage/purchaseApplyManage.html
2022-04-26 19:22:36 +08:00

161 lines
11 KiB
HTML
Executable File

<div id="component" class="wrapper wrapper-content animated fadeInRight ecommerce">
<div class="row">
<div class="col-lg-12">
<div class="ibox ">
<div class="ibox-title">
<h5>
<span><vc:i18n name="查询条件" namespace="purchaseApplyManage"></vc:i18n></span>
</h5>
<div class="ibox-tools" style="top:10px;">
</div>
</div>
<div class="ibox-content">
<div class="row">
<div class="col-sm-3">
<div class="form-group">
<input type="text" :placeholder="vc.i18n('订单号','purchaseApplyManage')" v-model="purchaseApplyManageInfo.conditions.applyOrderId" class=" form-control">
</div>
</div>
<div class="col-sm-4">
<select class="custom-select" v-model="purchaseApplyManageInfo.conditions.state">
<option selected value="">{{vc.i18n('请选择状态','purchaseApplyManage')}}</option>
<option v-for="(item,index) in purchaseApplyManageInfo.states" :key="index"
v-bind:value="item.statusCd">{{item.name}}
</option>
</select>
</div>
<div class="col-sm-3">
<div class="form-group">
<input type="text" :placeholder="vc.i18n('请填写申请人姓名','purchaseApplyManage')" v-model="purchaseApplyManageInfo.conditions.userName" class=" form-control">
</div>
</div>
<div class="col-sm-2">
<button type="button" class="btn btn-primary btn-sm" v-on:click="_queryInspectionPlanMethod()">
<i class="fa fa-search"></i> <span><vc:i18n name="查询" namespace="purchaseApplyManage"></vc:i18n></span>
</button>
<button type="button" class="btn btn-primary btn-sm" v-on:click="_resetInspectionPlanMethod()">
<i class="fa fa-repeat"></i> <span><vc:i18n name="重置" namespace="purchaseApplyManage"></vc:i18n></span>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5>
<span><vc:i18n name="采购申请" namespace="purchaseApplyManage"></vc:i18n></span>
</h5>
<div class="ibox-tools" style="top:10px;">
<button type="button" class="btn btn-primary btn-sm" v-on:click="_openAddPurchaseApplyModal()">
<i class="fa fa-plus"></i><span><vc:i18n name="采购申请" namespace="purchaseApplyManage"></vc:i18n></span>
</button>
<button type="button" class="btn btn-primary btn-sm" v-if="vc.hasPrivilege('502021071043650029')" v-on:click="_openUrgentPurchaseApplyModal()">
<i class="fa fa-plus"></i><span><vc:i18n name="紧急采购" namespace="purchaseApplyManage"></vc:i18n></span>
</button>
<button type="button" class="btn btn-primary btn-sm" v-on:click="_exportExcel()">
<i class="fa fa-plus"></i><span><vc:i18n name="导出" namespace="purchaseApplyManage"></vc:i18n></span>
</button>
</div>
</div>
<div class="ibox-content">
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
<thead>
<tr>
<th class="text-center">
<span><vc:i18n name="申请单号" namespace="purchaseApplyManage"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="申请人" namespace="purchaseApplyManage"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="使用人" namespace="purchaseApplyManage"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="操作人" namespace="purchaseApplyManage"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="物品" namespace="purchaseApplyManage"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="申请时间" namespace="purchaseApplyManage"></vc:i18n></span>
</th>
<!-- <th class="text-center"><span><vc:i18n name="申请数量" namespace="purchaseApplyManage"></vc:i18n></span></th>
<th class="text-center"><span><vc:i18n name="物品单价" namespace="purchaseApplyManage"></vc:i18n></span></th> -->
<!-- <th class="text-center"><span><vc:i18n name="参考价格" namespace="purchaseApplyManage"></vc:i18n></span></th> -->
<th class="text-center">
<span><vc:i18n name="采购方式" namespace="purchaseApplyManage"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="审批状态" namespace="purchaseApplyManage"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="操作" namespace="purchaseApplyManage"></vc:i18n></span>
</th>
</tr>
</thead>
<tbody>
<tr v-for="purchaseApply in purchaseApplyManageInfo.purchaseApplys">
<td class="text-center">{{purchaseApply.applyOrderId}}</td>
<td class="text-center">{{purchaseApply.userName}}</td>
<td class="text-center">{{purchaseApply.endUserName}}</td>
<td class="text-center">{{purchaseApply.createUserName}}</td>
<td class="text-center">{{purchaseApply.resourceNames}}</td>
<td class="text-center">{{purchaseApply.createTime}}</td>
<!-- <td class="text-center">{{purchaseApply.purchaseApplyDetailVo[0].quantity}}</td>
<td class="text-center">{{purchaseApply.purchaseApplyDetailVo[0].price}}</td> -->
<!-- <td class="text-center">{{purchaseApply.totalPrice}}</td> -->
<td class="text-center">
{{purchaseApply.warehousingWay == 10000 ? '直接入库' : purchaseApply.warehousingWay == 20000 ? '采购入库' : '紧急采购'}}
</td>
<td class="text-center">{{purchaseApply.stateName}}</td>
<td class="text-center">
<div class="btn-group">
<button class="btn-white btn btn-xs" v-on:click="_openDetailPurchaseApplyModel(purchaseApply)"><span><vc:i18n name="查看" namespace="purchaseApplyManage"></vc:i18n></span>
</button>
</div>
<div class="btn-group" v-if="purchaseApply.warehousingWay != 10000 && purchaseApply.warehousingWay != 30000">
<button class="btn-white btn btn-xs" v-on:click="_openRunWorkflowImage(purchaseApply)"><span><vc:i18n name="流程图" namespace="purchaseApplyManage"></vc:i18n></span>
</button>
</div>
<div class="btn-group" v-if="purchaseApply.state == '1000' && purchaseApplyManageInfo.currentUserId == purchaseApply.createUserId">
<button class="btn-white btn btn-xs" v-on:click="_openDeletePurchaseApplyModel(purchaseApply)"><span><vc:i18n name="取消申请" namespace="purchaseApplyManage"></vc:i18n></span>
</button>
</div>
<div class="btn-group" v-else>
<button class="btn-white btn btn-xs" v-if="vc.hasPrivilege('502022032383620003')" v-on:click="_openDeletePurchaseApplyModel(purchaseApply)"><span><vc:i18n name="取消申请" namespace="purchaseApplyManage"></vc:i18n></span>
</button>
</div>
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="10">
<ul class="pagination float-right"></ul>
</td>
</tr>
</tfoot>
</table>
<!-- 分页 -->
<div class="row margin-top-xs">
<div class="col-sm-9">
<div> 注意:此功能使用前 请先到 系统管理>流程管理中设置采购流程</div>
</div>
<div class="col-sm-3 float-right">
<vc:create path="frame/pagination"></vc:create>
</div>
</div>
</div>
</div>
</div>
</div>
<vc:create path="common/viewImage"></vc:create>
<vc:create path="common/editPurchaseApply"></vc:create>
<vc:create path="common/deletePurchaseApply"></vc:create>
</div>