mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-25 06:09:11 +08:00
90 lines
4.6 KiB
HTML
90 lines
4.6 KiB
HTML
<div class="">
|
|
<div class="row ">
|
|
<div class="col-lg-12 text-right">
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div class="margin-top">
|
|
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
|
|
<thead>
|
|
<tr>
|
|
<th class="text-center">
|
|
<vc:i18n name="调拨单号" namespace="resourceDetailAllocation"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="物品类型" namespace="resourceDetailAllocation"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="物品名称" namespace="resourceDetailAllocation"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="物品规格" namespace="resourceDetailAllocation"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="固定物品" namespace="resourceDetailAllocation"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="被调仓库原库存" namespace="resourceDetailAllocation"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="调拨数量" namespace="resourceDetailAllocation"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="被调仓库" namespace="resourceDetailAllocation"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="目标仓库" namespace="resourceDetailAllocation"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="申请人" namespace="resourceDetailAllocation"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="调拨备注" namespace="resourceDetailAllocation"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="调拨类型" namespace="resourceDetailAllocation"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="状态" namespace="resourceDetailAllocation"></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name="时间" namespace="resourceDetailAllocation"></vc:i18n>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="resourceStore in resourceDetailAllocationInfo.resourceStores">
|
|
<td class="text-center">{{resourceStore.applyId}}</td>
|
|
<td class="text-center">{{resourceStore.parentRstName}} > {{resourceStore.rstName}}</td>
|
|
<td class="text-center">{{resourceStore.resName}}</td>
|
|
<td class="text-center">{{resourceStore.specName ? resourceStore.specName : '-'}}</td>
|
|
<td class="text-center">{{resourceStore.isFixedName}}</td>
|
|
<td class="text-center">{{resourceStore.originalStock}}{{resourceStore.unitCodeName}}</td>
|
|
<td class="text-center">{{resourceStore.stock}}{{resourceStore.applyType==20000 ?
|
|
resourceStore.miniUnitCodeName : resourceStore.unitCodeName}}
|
|
</td>
|
|
<td class="text-center" v-if="resourceStore.applyType == '20000'">
|
|
{{resourceStore.startUserName}}
|
|
</td>
|
|
<td class="text-center" v-else>{{resourceStore.shaName}}</td>
|
|
<td class="text-center">{{resourceStore.shzName}}</td>
|
|
<td class="text-center">{{resourceStore.startUserName}}</td>
|
|
<td class="text-center">{{resourceStore.remark}}</td>
|
|
<td class="text-center">{{resourceStore.applyTypeName}}</td>
|
|
<td class="text-center">{{resourceStore.stateName}}</td>
|
|
<td class="text-center">{{resourceStore.createTime}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<!-- 分页 -->
|
|
<div class="row">
|
|
<div class="col-sm-4">
|
|
|
|
</div>
|
|
<div class="col-sm-8">
|
|
<vc:create namespace="resourceDetailAllocation" path="frame/paginationPlus"></vc:create>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |