123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346 |
- <template>
- <div class="app-container">
- <div v-show="!isShowDetail">
- <!-- 筛选条件 -->
- <div class="screen-container">
- <Collapse :screen-form="screenForm">
- <template #right_btn>
- <el-button size="mini" @click="resetScreenForm">清空</el-button>
- <el-button size="mini" type="primary" @click="submitScreenForm">搜索</el-button>
- </template>
- <template #search>
- <el-form ref="screenForm" :model="screenForm" label-width="70px" size="mini" label-position="left">
- <el-row :gutter="20">
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="入库单号" prop="orderNum">
- <el-input v-model="screenForm.orderNum" placeholder="请输入入库单号"></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="产品名称" prop="chName">
- <el-input v-model="screenForm.chName" placeholder="请输入产品名称"></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="产品编码" prop="chNum">
- <el-input v-model="screenForm.chNum" placeholder="请输入产品编码"></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="入库日期" prop="date">
- <el-date-picker
- v-model="screenForm.date"
- type="datetimerange"
- :default-time="['00:00:00','23:59:59']"
- range-separator="至"
- style="width: 100%"
- value-format="yyyy-MM-dd HH:mm:ss"
- start-placeholder="开始日期"
- end-placeholder="结束日期"
- >
- </el-date-picker>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="供货单位" prop="company">
- <el-input v-model="screenForm.company" placeholder="请输入供货单位"></el-input>
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- </template>
- </Collapse>
- </div>
- <div class="mymain-container">
- <div class="btn-group clearfix">
- <div class="fr">
- <ExportButton :exUrl="'admin/user/mch/export'" :exParams="exParams" />
- </div>
- </div>
- <div class="table">
- <el-table
- v-loading="listLoading"
- :data="dataList"
- element-loading-text="Loading"
- border
- fit
- highlight-current-row
- stripe
- show-summary
- :summary-method="$getSummaries"
- >
- <el-table-column align="left" label="入库单号" prop="billNo" min-width="130" show-overflow-tooltip>
- <template slot-scope="scope">
- <CopyButton :copyText="scope.row.billNo" />
- <span>{{ scope.row.billNo }}</span>
- </template>
- </el-table-column>
- <el-table-column align="left" label="入库日期" prop="fdate" min-width="120" show-overflow-tooltip>
- <template slot-scope="scope">
- {{ scope.row.fdate | dateToDayFilter }}
- </template>
- </el-table-column>
- <el-table-column
- align="left"
- label="仓库"
- prop="stockId"
- min-width="100"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="left"
- label="供货单位"
- prop="supplyName"
- min-width="200"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="left"
- label="审核日期"
- prop="approveDate"
- min-width="160"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column align="left" label="物料编码" prop="materialNumber" min-width="120" show-overflow-tooltip>
- <template slot-scope="scope">
- <CopyButton :copyText="scope.row.materialNumber" />
- <span>{{ scope.row.materialNumber }}</span>
- </template>
- </el-table-column>
- <el-table-column
- align="left"
- label="产品编码"
- prop="materialOldNumber"
- min-width="140"
- show-overflow-tooltip
- >
- <template slot-scope="scope">
- <CopyButton :copyText="scope.row.materialOldNumber" />
- <span>{{ scope.row.materialOldNumber }}</span>
- </template>
- </el-table-column>
- <el-table-column align="left" label="产品名称" prop="materialName" min-width="160" show-overflow-tooltip>
- <template slot-scope="scope">
- <CopyButton :copyText="scope.row.materialName" />
- <span>{{ scope.row.materialName }}</span>
- </template>
- </el-table-column>
- <el-table-column align="left" label="规格型号" prop="uom" min-width="350" show-overflow-tooltip>
- <template slot-scope="scope">
- <CopyButton :copyText="scope.row.uom" />
- <span>{{ scope.row.uom }}</span>
- </template>
- </el-table-column>
- <el-table-column
- align="left"
- label="单位"
- prop="unit"
- min-width="100"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="right"
- label="数量"
- prop="realQty"
- min-width="100"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column align="right" label="原币含税单价" prop="taxPrice" min-width="120" show-overflow-tooltip>
- <template slot-scope="scope">
- {{ scope.row.taxPrice | numToFixed }}
- </template>
- </el-table-column>
- <el-table-column align="right" label="原币金额" prop="amount" min-width="100" show-overflow-tooltip>
- <template slot-scope="scope">
- {{ scope.row.amount | numToFixed }}
- </template>
- </el-table-column>
- <el-table-column align="right" label="原币税额" prop="entryTaxAmount" min-width="100" show-overflow-tooltip>
- <template slot-scope="scope">
- {{ scope.row.entryTaxAmount | numToFixed }}
- </template>
- </el-table-column>
- <el-table-column align="right" label="原币价税合计" prop="allAmount" min-width="120" show-overflow-tooltip>
- <template slot-scope="scope">
- {{ scope.row.allAmount | numToFixed }}
- </template>
- </el-table-column>
- <el-table-column
- align="left"
- label="税率"
- prop="entryTaxRate"
- min-width="100"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="left"
- label="制单人"
- prop="createBy"
- min-width="100"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="left"
- label="审核人"
- prop="approverId"
- min-width="100"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="left"
- label="备注"
- prop="abcdRemarks"
- min-width="160"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column align="center" label="操作" width="100" fixed="right">
- <template slot-scope="scope">
- <el-button type="text" @click="toDetail(scope.row)">详情</el-button>
- </template>
- </el-table-column>
- </el-table>
- </div>
- </div>
- <div class="pagination clearfix">
- <div class="fr">
- <el-pagination
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- :current-page="currentPage"
- :page-sizes="[10, 20, 30, 50]"
- :page-size="10"
- layout="total, sizes, prev, pager, next, jumper"
- :total="listTotal"
- >
- </el-pagination>
- </div>
- </div>
- </div>
- <EnterDetail :listItem="queryItem" v-if="isShowDetail" @backListFormDetail="backList" />
- </div>
- </template>
- <script>
- import { getEnterList } from '@/api/supply/purchase'
- import EnterDetail from '@/views/supply/purchase/components/enter_detail'
- export default {
- components: {
- EnterDetail
- },
- data() {
- return {
- currentPage: 1, // 当前页码
- pageSize: 10, // 每页数量
- listTotal: 0, // 列表总数
- dataList: null, // 列表数据
- listLoading: false, // 列表加载loading
- screenForm: {
- // 筛选表单数据
- orderNum: '',
- chName: '',
- chNum: '',
- date: [],
- company: ''
- },
- isCollapse: true,
- queryItem: {}
- }
- },
- computed: {
- exParams() {
- return {
- billNo: this.screenForm.orderNum,
- materialName: this.screenForm.chName,
- materialCode: this.screenForm.chNum,
- startTime: this.screenForm.date ? this.screenForm.date[0] : '',
- endTime: this.screenForm.date ? this.screenForm.date[1] : '',
- supplyName: this.screenForm.company
- }
- },
- isShowDetail() {
- return this.queryItem.hasOwnProperty('id')
- }
- },
- created() {
- this.getList()
- },
- methods: {
- // 查询按钮权限
- checkBtnRole(value) {
- // let btnRole = this.$route.meta.roles;
- // if(!btnRole) {return true}
- // let index = btnRole.indexOf(value);
- // return index >= 0;
- return true
- },
- // 查询列表
- getList() {
- this.listLoading = true
- let params = {
- pageNum: this.currentPage,
- pageSize: this.pageSize,
- billNo: this.screenForm.orderNum,
- materialName: this.screenForm.chName,
- materialCode: this.screenForm.chNum,
- startTime: this.screenForm.date ? this.screenForm.date[0] : '',
- endTime: this.screenForm.date ? this.screenForm.date[1] : '',
- supplyName: this.screenForm.company
- }
- getEnterList(params).then(res => {
- res.data.records.forEach(item => {
- item.sums1 = ['auxUnitQty']
- item.sums2 = ['taxPrice', 'amount', 'entryTaxAmount', 'allAmount']
- })
- this.dataList = res.data.records
- this.listTotal = res.data.total
- this.listLoading = false
- })
- },
- // 提交筛选表单
- submitScreenForm() {
- this.currentPage = 1
- this.getList()
- },
- // 重置筛选表单
- resetScreenForm() {
- this.$refs.screenForm.resetFields()
- this.currentPage = 1
- this.getList()
- },
- // 更改每页数量
- handleSizeChange(val) {
- this.pageSize = val
- this.currentPage = 1
- this.getList()
- },
- // 更改当前页
- handleCurrentChange(val) {
- this.currentPage = val
- this.getList()
- },
- // 进入详情
- toDetail(item) {
- this.queryItem = item
- },
- backList() {
- this.queryItem = {}
- }
- }
- }
- </script>
- <style lang="scss" scoped></style>
|