<template>
|
<TableLayout v-permissions="['ext:workorderrecordext:query']">
|
<!-- 搜索表单 -->
|
<el-form ref="searchForm" slot="search-form" :model="searchForm" label-width="100px" label-suffix=":" inline>
|
<el-form-item label="生产人员" prop="userId">
|
<el-select v-model="searchForm.userId" clearable filterable placeholder="请选择">
|
<el-option
|
v-for="item in proUsers"
|
:key="item.id"
|
:label="item.name"
|
:value="item.userId">
|
</el-option>
|
</el-select>
|
</el-form-item>
|
<!-- <el-form-item label="物料编码" prop="mmodelCode">
|
<el-input v-model="searchForm.mmodelCode" placeholder="请输入物料编码" @keypress.enter.native="search"></el-input>
|
</el-form-item>
|
<el-form-item label="工序" prop="procedureId">
|
<el-select v-model="searchForm.procedureId" filterable clearable placeholder="请选择">
|
<el-option
|
v-for="(item, index) in procedures"
|
:key="index"
|
:label="item.name"
|
:value="item.id">
|
</el-option>
|
</el-select>
|
</el-form-item> -->
|
<el-form-item label="报工时间">
|
<el-date-picker
|
v-model="planDate"
|
type="daterange"
|
value-format="yyyy-MM-dd"
|
range-separator="~"
|
start-placeholder="开始日期"
|
end-placeholder="结束日期"
|
@change="dateChange"
|
></el-date-picker>
|
</el-form-item>
|
<section>
|
<el-button type="primary" @click="search">搜索</el-button>
|
<el-button @click="reset">重置</el-button>
|
</section>
|
</el-form>
|
<!-- 表格和分页 -->
|
<template v-slot:table-wrap>
|
<ul class="toolbar">
|
<!-- v-permissions="['ext:workorderrecordext:exportExcel']" -->
|
<li ><el-button type="primary" :loading="isWorking.export" @click="exportExcel">导出</el-button></li>
|
</ul>
|
<el-table
|
v-loading="isWorking.search"
|
:data="tableData.list"
|
stripe
|
border
|
>
|
<el-table-column type="index" :index="customIndex" label="序号" fixed="left" min-width="80px">
|
|
</el-table-column>
|
<el-table-column prop="userInfo.userName" label="生产人员" min-width="100px"></el-table-column>
|
<el-table-column prop="userInfo.departName" label="部门" min-width="100px"> </el-table-column>
|
<el-table-column prop="jijianSalary" label="计件工资" min-width="100px">
|
<template slot-scope="{row}">
|
{{ accDiv(Math.round(row.jijianSalary), 100) }}
|
</template>
|
</el-table-column>
|
<el-table-column prop="jishiSalary" label="计时工资" min-width="100px">
|
<template slot-scope="{row}">
|
{{ accDiv(Math.round(row.jishiSalary), 100) }}
|
</template>
|
</el-table-column>
|
<el-table-column prop="num" label="报工单总数" min-width="100px"></el-table-column>
|
<el-table-column prop="totalSalary" label="小计工资(元)" min-width="100px">
|
<template slot-scope="{row}">
|
{{ accDiv(Math.round(row.totalSalary), 100) }}
|
</template>
|
</el-table-column>
|
|
</el-table>
|
<pagination
|
@size-change="handleSizeChange"
|
@current-change="handlePageChange"
|
:pagination="tableData.pagination"
|
></pagination>
|
</template>
|
</TableLayout>
|
</template>
|
|
<script>
|
import BaseTable from '@/components/base/BaseTable'
|
import TableLayout from '@/layouts/TableLayout'
|
import Pagination from '@/components/common/Pagination'
|
import { productesGroup } from '@/api/ext/proceduresExt'
|
import { companyUserExtAllUser } from '@/api/ext/companyUserExt'
|
export default {
|
name: 'WorkorderRecordExt',
|
extends: BaseTable,
|
components: { TableLayout, Pagination },
|
data () {
|
return {
|
// 搜索
|
searchForm: {
|
procedureId: '',
|
userId: '',
|
startDate: '',
|
endDate: '',
|
materialId: '',
|
},
|
procedures: [
|
],
|
proUsers: [
|
],
|
|
orderStatus:[
|
// 0已创建、1已领料、2已完工检、3已检验、4已返工、5已入库、6已暂停、7已取消、8已关闭
|
// 0已创建、1已备料、2已完工检、3已检验、4已报工、5已入库、6已取消
|
{ name: '已创建', id: 0 },
|
{ name: '已备料', id: 1 },
|
{ name: '已完工检', id: 2 },
|
{ name: '已检验', id: 3 },
|
{ name: '已报工', id: 4 },
|
{ name: '已取消', id: 6 }
|
],
|
planDate: []
|
}
|
},
|
created () {
|
this.config({
|
module: '报工记录',
|
api: '/ext/salaryStatistic',
|
'field.id': 'id',
|
'field.main': 'name',
|
sorts: [{ direction: 'DESC', property: 'CREATE_TIME' }]
|
})
|
let tempDate = new Date()
|
let year = tempDate.getFullYear()
|
let month = tempDate.getMonth() + 1
|
let day = tempDate.getDate()
|
this.searchForm.startDate = `${year}-${month}-01`
|
this.searchForm.endDate = `${year}-${month}-${day}`
|
this.planDate = [this.searchForm.startDate, this.searchForm.endDate]
|
this.search()
|
},
|
activated() {
|
productesGroup({})
|
.then(res => {
|
this.procedures = res
|
})
|
.catch(err => {
|
console.log(err)
|
})
|
companyUserExtAllUser({ companyId: this.$store.state.userInfo.company.id })
|
.then(res => {
|
this.proUsers = res
|
})
|
.catch(err => {
|
console.log(err)
|
})
|
},
|
methods: {
|
dateChange (v) {
|
// console.log('日期选择了')
|
this.searchForm.startDate = v[0]
|
this.searchForm.endDate = v[1]
|
},
|
reset () {
|
// console.log('rest', this.searchDate)
|
this.planDate = []
|
this.searchForm.startDate = ''
|
this.searchForm.endDate = ''
|
this.$refs.searchForm.resetFields()
|
this.search()
|
},
|
statusToStr (row) {
|
for (const item of this.orderStatus) {
|
if (item.id === row.omodel.status) {
|
return item.name
|
}
|
}
|
return '-'
|
},
|
customIndex(index) {
|
console.log();
|
return (this.tableData.pagination.pageIndex-1) * this.tableData.pagination.pageSize + index + 1
|
}
|
}
|
}
|
|
</script>
|