计件工资统计
parent
431cc25140
commit
d88c1116ed
@ -0,0 +1,9 @@
|
|||||||
|
import request from '@/utils/request'
|
||||||
|
|
||||||
|
export function listReportWorks(query) {
|
||||||
|
return request({
|
||||||
|
url: '/mes/reportWorks/lists',
|
||||||
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
});
|
||||||
|
}
|
@ -0,0 +1,24 @@
|
|||||||
|
import request from '@/utils/request'
|
||||||
|
|
||||||
|
// 查询unitPrice列表
|
||||||
|
export function listUnitPriceReport(query) {
|
||||||
|
return request({
|
||||||
|
url: '/mes/unitPriceReport/list',
|
||||||
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
});
|
||||||
|
}
|
||||||
|
export function getReport(id) {
|
||||||
|
return request({
|
||||||
|
url: '/mes/unitPriceReport/' + id,
|
||||||
|
method: 'get'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
// 修改计件工资统计
|
||||||
|
export function updateUnitPriceReport(data) {
|
||||||
|
return request({
|
||||||
|
url: '/mes/unitPriceReport',
|
||||||
|
method: 'put',
|
||||||
|
data: data
|
||||||
|
});
|
||||||
|
}
|
@ -0,0 +1,395 @@
|
|||||||
|
<template>
|
||||||
|
<div class="app-container">
|
||||||
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" >
|
||||||
|
<el-form-item label="工单编码/SAP订单号/产品编码" prop="keywords">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.keywords"
|
||||||
|
placeholder="工单编码/SAP订单号/产品编码"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
<el-form-item label="生产时间" prop="feedbackTimeArray">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="queryParams.feedbackTimeArray"
|
||||||
|
format="yyyy-MM-dd"
|
||||||
|
type="datetimerange"
|
||||||
|
range-separator="至"
|
||||||
|
start-placeholder="开始日期"
|
||||||
|
end-placeholder="结束日期">
|
||||||
|
</el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="SAP报工结果" prop="uploadStatus">
|
||||||
|
<el-select v-model="queryParams.uploadStatus" placeholder="请选择结果" clearable>
|
||||||
|
<!-- <el-option-->
|
||||||
|
<!-- v-for="item in uploadStatusList"-->
|
||||||
|
<!-- :key="item.dictValue"-->
|
||||||
|
<!-- :label="item.dictLabel"-->
|
||||||
|
<!-- :value="item.dictValue">-->
|
||||||
|
<!-- </el-option>-->
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item>
|
||||||
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
||||||
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
|
||||||
|
<el-row :gutter="10" class="mb8">
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button
|
||||||
|
type="primary"
|
||||||
|
plain
|
||||||
|
icon="el-icon-plus"
|
||||||
|
size="mini"
|
||||||
|
@click="handleAdd"
|
||||||
|
v-hasPermi="['mes:reportWork:add']"
|
||||||
|
>新增</el-button>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
|
||||||
|
<el-col :span="1.5">
|
||||||
|
|
||||||
|
</el-col>
|
||||||
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||||||
|
</el-row>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<el-table
|
||||||
|
v-loading="loading" :data="reportWorkList" @selection-change="handleSelectionChange"
|
||||||
|
row-key="id"
|
||||||
|
lazy
|
||||||
|
:load="load"
|
||||||
|
:tree-props="{children: 'children', hasChildren: 'hasChildren'}">
|
||||||
|
<el-table-column type="selection" align="center" />
|
||||||
|
<el-table-column label="SAP订单编码" align="center" prop="workorderCodeSap" width="130">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="产品编码" align="center" prop="productCode" width="130"
|
||||||
|
:formatter="productCodeFormate"
|
||||||
|
/>
|
||||||
|
<el-table-column label="线体编码" align="center" prop="machineCode" />
|
||||||
|
<el-table-column label="线体名称" align="center" prop="machineName" />
|
||||||
|
<el-table-column label="产品名称" align="center" prop="productName" width="220" :show-overflow-tooltip="true" />
|
||||||
|
<el-table-column label="排产数量" align="center" prop="quantity" width="100"/>
|
||||||
|
<el-table-column label="单位" align="center" prop="unit" />
|
||||||
|
<el-table-column label="累计报工数量" align="center" prop="quantityFeedback" width="100"/>
|
||||||
|
<el-table-column label="累计用人数" align="center" prop="useMan" width="100"/>
|
||||||
|
<el-table-column label="累计工时" align="center" prop="workTime" />
|
||||||
|
<el-table-column label="生产时间" align="center" prop="productDate" width="100"/>
|
||||||
|
<el-table-column label="SAP报工状态" align="center" prop="uploadStatus" width="150"/>
|
||||||
|
<el-table-column label="SAP报工时间" align="center" prop="uploadTime" width="150"/>
|
||||||
|
<el-table-column label="SAP报工信息" align="center" prop="uploadMsg" width="150" :show-overflow-tooltip="true"/>
|
||||||
|
</el-table>
|
||||||
|
|
||||||
|
<pagination
|
||||||
|
v-show="total>0"
|
||||||
|
:total="total"
|
||||||
|
:page.sync="queryParams.pageNum"
|
||||||
|
:limit.sync="queryParams.pageSize"
|
||||||
|
@pagination="getList"
|
||||||
|
/>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { listReportWorks} from "@/api/mes/reportWorks";
|
||||||
|
import moment from 'moment';
|
||||||
|
export default {
|
||||||
|
name: "ReportWork",
|
||||||
|
dicts: ['report_type'],
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
optType: undefined,
|
||||||
|
// 遮罩层
|
||||||
|
loading: true,
|
||||||
|
// 选中数组
|
||||||
|
ids: [],
|
||||||
|
selectRow:{},
|
||||||
|
// 非单个禁用
|
||||||
|
single: true,
|
||||||
|
// 非多个禁用
|
||||||
|
multiple: true,
|
||||||
|
// 显示搜索条件
|
||||||
|
showSearch: true,
|
||||||
|
// 总条数
|
||||||
|
total: 0,
|
||||||
|
consumeTotal:0,
|
||||||
|
// SAPCD:"",
|
||||||
|
// 弹出层标题
|
||||||
|
title: "",
|
||||||
|
titleConsume:"",
|
||||||
|
titleReport:"",
|
||||||
|
// 是否显示弹出层
|
||||||
|
open: false,
|
||||||
|
openReport: false,
|
||||||
|
openReportSAP: false,
|
||||||
|
openConsume: false,
|
||||||
|
consumeQueryParams:{
|
||||||
|
consumePageNum:1,
|
||||||
|
consumePageSize:10,
|
||||||
|
reportCode:null,
|
||||||
|
},
|
||||||
|
// 查询参数
|
||||||
|
queryParams: {
|
||||||
|
createTimeArray: [],
|
||||||
|
feedbackTimeArray: [],
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
reportType: null,
|
||||||
|
reportCode: null,
|
||||||
|
workorderCode: null,
|
||||||
|
productCode: null,
|
||||||
|
productName: null,
|
||||||
|
spec: null,
|
||||||
|
unit: null,
|
||||||
|
quantity: null,
|
||||||
|
quantityFeedback: null,
|
||||||
|
quantityQualified: null,
|
||||||
|
quantityUnqualified: null,
|
||||||
|
userName: null,
|
||||||
|
nickName: null,
|
||||||
|
feedbackChannel: null,
|
||||||
|
feedbackTime: null,
|
||||||
|
recordUser: null,
|
||||||
|
status: null,
|
||||||
|
workTime: null,
|
||||||
|
machineCode: null,
|
||||||
|
machineName: null,
|
||||||
|
teamCode: null,
|
||||||
|
shiftId: null,
|
||||||
|
attr1: null,
|
||||||
|
attr2: null,
|
||||||
|
attr3: null,
|
||||||
|
attr4: null,
|
||||||
|
workorderCodeSap: null,
|
||||||
|
parentOrder:null,
|
||||||
|
uploadStatus:"0"
|
||||||
|
},
|
||||||
|
// 表单参数
|
||||||
|
form: {
|
||||||
|
endReport:'0',
|
||||||
|
consumesInfos:[]
|
||||||
|
},
|
||||||
|
formSAdd: {
|
||||||
|
endReport:'0'
|
||||||
|
},
|
||||||
|
|
||||||
|
teamList:[],
|
||||||
|
batchList:[],
|
||||||
|
// 表单校验
|
||||||
|
};
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
//this.getDate();
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
|
||||||
|
//产品编码格式化
|
||||||
|
productCodeFormate(row, column, cellValue){
|
||||||
|
return cellValue.slice(7,18); //返回值
|
||||||
|
},
|
||||||
|
|
||||||
|
/**获取默认查询时间段**/
|
||||||
|
getDate() {
|
||||||
|
// let start = this.Fungetdate (0)
|
||||||
|
// let end = this.Fungetdate (1)
|
||||||
|
//this.queryParams.createTimeArray.push(start,end)
|
||||||
|
//this.queryParams.feedbackTimeArray.push(start,end)
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
Fungetdate (num) {``
|
||||||
|
var dd = new Date();
|
||||||
|
dd.setDate(dd.getDate() + num);
|
||||||
|
var y = dd.getFullYear();
|
||||||
|
var m = dd.getMonth() + 1;//获取当前月份的日期
|
||||||
|
var d = dd.getDate();
|
||||||
|
return y + "-" + m + "-" + d;
|
||||||
|
|
||||||
|
},
|
||||||
|
/** 查询报工报表列表 */
|
||||||
|
getList() {
|
||||||
|
/**
|
||||||
|
if(this.queryParams.createTimeArray !=null && this.queryParams.createTimeArray.length>0){
|
||||||
|
this.queryParams.createTimeStart = moment(this.queryParams.createTimeArray[0]).format('YYYY-MM-DD HH:mm:ss');
|
||||||
|
this.queryParams.createTimeEnd = moment(this.queryParams.createTimeArray[1]).format('YYYY-MM-DD HH:mm:ss');
|
||||||
|
}**/
|
||||||
|
|
||||||
|
// if(this.queryParams.feedbackTimeArray !=null && this.queryParams.feedbackTimeArray.length>0){
|
||||||
|
// this.queryParams.feedbackTimeStart = moment(this.queryParams.feedbackTimeArray[0]).format('YYYY-MM-DD');
|
||||||
|
// this.queryParams.feedbackTimeEnd = moment(this.queryParams.feedbackTimeArray[1]).format('YYYY-MM-DD');
|
||||||
|
// }
|
||||||
|
this.loading = true;
|
||||||
|
listReportWorks(this.queryParams).then(response => {
|
||||||
|
this.reportWorkList = response.rows;
|
||||||
|
this.total = response.total;
|
||||||
|
this.loading = false;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
// 取消按钮
|
||||||
|
cancel() {
|
||||||
|
this.open = false;
|
||||||
|
this.openReport = false;
|
||||||
|
this.openReportSAP=false;
|
||||||
|
this.openConsume = false;
|
||||||
|
this.reset();
|
||||||
|
},
|
||||||
|
|
||||||
|
// 表单重置
|
||||||
|
reset() {
|
||||||
|
this.form = {
|
||||||
|
id: null,
|
||||||
|
reportType: 'UNI',
|
||||||
|
reportCode: null,
|
||||||
|
workorderCode: null,
|
||||||
|
productCode: null,
|
||||||
|
productName: null,
|
||||||
|
spec: null,
|
||||||
|
unit: null,
|
||||||
|
quantity: null,
|
||||||
|
quantityFeedback: null,
|
||||||
|
quantityQualified: null,
|
||||||
|
quantityUnqualified: null,
|
||||||
|
userName: null,
|
||||||
|
nickName: null,
|
||||||
|
feedbackChannel: 'PC',
|
||||||
|
feedbackTime: null,
|
||||||
|
recordUser: null,
|
||||||
|
status: null,
|
||||||
|
remark: null,
|
||||||
|
workTime: null,
|
||||||
|
machineCode: null,
|
||||||
|
machineName: null,
|
||||||
|
teamCode: null,
|
||||||
|
shiftId: null,
|
||||||
|
attr1: null,
|
||||||
|
attr2: null,
|
||||||
|
attr3: null,
|
||||||
|
attr4: null,
|
||||||
|
createBy: null,
|
||||||
|
createTime: null,
|
||||||
|
updateTime: null,
|
||||||
|
updateBy: null,
|
||||||
|
endReport:'0'
|
||||||
|
};
|
||||||
|
this.resetForm("form");
|
||||||
|
this.pOrderTableList = [];
|
||||||
|
this.sOrderTableList = [];
|
||||||
|
this.pReportRows = [];
|
||||||
|
this.sReportRows = [];
|
||||||
|
this.reportRows = [];
|
||||||
|
this.pConsumeTableList = [];
|
||||||
|
this.sConsumeTableList = [];
|
||||||
|
this.pConsumeRows = [];
|
||||||
|
this.sConsumeRows = [];
|
||||||
|
this.consumeRows = [];
|
||||||
|
},
|
||||||
|
/** 搜索按钮操作 */
|
||||||
|
handleQuery() {
|
||||||
|
this.queryParams.pageNum = 1;
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
/** 重置按钮操作 */
|
||||||
|
resetQuery() {
|
||||||
|
this.resetForm("queryForm");
|
||||||
|
this.handleQuery();
|
||||||
|
},
|
||||||
|
// 多选框选中数据
|
||||||
|
handleSelectionChange(selection) {
|
||||||
|
this.ids = selection.map(item => item.id)
|
||||||
|
this.selectRow = selection
|
||||||
|
this.single = selection.length!==1
|
||||||
|
this.multiple = !selection.length
|
||||||
|
},
|
||||||
|
/** 新增按钮操作 */
|
||||||
|
handleAdd() {
|
||||||
|
this.reset();
|
||||||
|
this.open = true;
|
||||||
|
this.title = "添加报工记录";
|
||||||
|
this.optType = "add";
|
||||||
|
},
|
||||||
|
|
||||||
|
/** 修改按钮操作 */
|
||||||
|
handleUpdate(row) {
|
||||||
|
this.reset();
|
||||||
|
this.optType = "edit";
|
||||||
|
let sr = this.selectRow[0];
|
||||||
|
if(sr.uploadStatus =='sap报工成功'){
|
||||||
|
this.$modal.msgError(`上传sap成功,不允许修改`);
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
const id = row.id || this.ids
|
||||||
|
getReportWork(id).then(response => {
|
||||||
|
this.form = response.data;
|
||||||
|
this.open = true;
|
||||||
|
this.title = "修改报工报表";
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/** 提交按钮 */
|
||||||
|
submitForm() {
|
||||||
|
this.$refs["form"].validate(valid => {
|
||||||
|
if (valid) {
|
||||||
|
if (this.form.id != null) {
|
||||||
|
updateReportWork(this.form).then(response => {
|
||||||
|
this.$modal.msgSuccess("修改成功");
|
||||||
|
this.open = false;
|
||||||
|
this.getList();
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
addReportWork(this.form).then(response => {
|
||||||
|
this.$modal.msgSuccess("新增成功");
|
||||||
|
this.open = false;
|
||||||
|
this.getList();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/** 删除按钮操作 */
|
||||||
|
handleDelete(row) {
|
||||||
|
|
||||||
|
let sr = this.selectRow[0];
|
||||||
|
if(sr.uploadStatus =='sap报工成功'){
|
||||||
|
this.$modal.msgError(`上传sap成功,不允许删除`);
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
const ids = row.id || this.ids;
|
||||||
|
this.$modal.confirm('是否确认删除报工报表编号为"' + ids + '"的数据项?').then(function() {
|
||||||
|
return delReportWork(ids);
|
||||||
|
}).then(() => {
|
||||||
|
this.getList();
|
||||||
|
this.$modal.msgSuccess("删除成功");
|
||||||
|
}).catch(() => {});
|
||||||
|
},
|
||||||
|
/** 报工按钮操作 */
|
||||||
|
|
||||||
|
|
||||||
|
handleEdit(index, row) {
|
||||||
|
console.log('row:',index, row);
|
||||||
|
},
|
||||||
|
// 多选框选中数据
|
||||||
|
pReportSelection(selection) {
|
||||||
|
this.pReportRows = selection
|
||||||
|
},
|
||||||
|
sReportSelection(selection) {
|
||||||
|
this.sReportRows = selection
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
/** 导出按钮操作 */
|
||||||
|
handleExport() {
|
||||||
|
this.download('mes/reportWork/export', {
|
||||||
|
...this.queryParams
|
||||||
|
}, `reportWork_${new Date().getTime()}.xlsx`)
|
||||||
|
},
|
||||||
|
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
@ -0,0 +1,314 @@
|
|||||||
|
<template>
|
||||||
|
<div class="app-container">
|
||||||
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
||||||
|
|
||||||
|
<el-form-item label="订单号" prop="workorderCodeSap">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.workorderCodeSap"
|
||||||
|
placeholder="请输入订单号"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="物料码" prop="productCode">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.productCode"
|
||||||
|
placeholder="请输入物料码"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="物料描述" prop="productName">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.productName"
|
||||||
|
placeholder="请输入物料描述"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="产线编码" prop="lineCode">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.lineCode"
|
||||||
|
placeholder="请输入产线编码"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="产线名称" prop="lineName">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.lineName"
|
||||||
|
placeholder="请输入产线名称"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
<el-form-item>
|
||||||
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
||||||
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
|
||||||
|
|
||||||
|
<el-table v-loading="loading" :data="unitPriceList" @selection-change="handleSelectionChange">
|
||||||
|
<!-- <el-table-column type="selection" width="55" align="center" />-->
|
||||||
|
<el-table-column fixed="left" label="工单号" align="center" width="180" prop="workorderCode" />
|
||||||
|
<el-table-column fixed="left" label="SAP订单号" align="center" width="120" prop="workorderCodeSap" />
|
||||||
|
<el-table-column label="物料码" align="center" width="110">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
{{ scope.row.productCode.slice(-11) }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="物料描述" align="center" width="250" prop="productName" />
|
||||||
|
<el-table-column label="产线编码" align="center" prop="lineCode" />
|
||||||
|
<el-table-column label="产线名称" align="center" prop="equipmentName" />
|
||||||
|
<el-table-column label="操作者" width="110" align="center" prop="nickName" />
|
||||||
|
<el-table-column label="子工序名称" width="110" align="center" prop="childprocessName" />
|
||||||
|
<el-table-column label="工序单价" align="center" prop="attr1" />
|
||||||
|
<el-table-column label="件数" align="center" prop="totalQuantity" />
|
||||||
|
<el-table-column label="薪酬(元)" width="110" align="center" prop="result" />
|
||||||
|
<el-table-column label="人数" align="center" prop="headCount" />
|
||||||
|
<el-table-column label="平均工资(元)" width="110" align="center" prop="avgResult" />
|
||||||
|
<el-table-column label="实际工资(元)" width="110" align="center" prop="realWages" />
|
||||||
|
<!-- <el-table-column label="实际工资" align="center" prop="realWages">-->
|
||||||
|
<!-- <template slot-scope="scope">-->
|
||||||
|
<!-- <el-input type="text" size="small" v-model="scope.row.realWages" @change="handleEdit(scope.$index,scope.row)"></el-input>-->
|
||||||
|
<!-- </template>-->
|
||||||
|
<!-- </el-table-column>-->
|
||||||
|
<!-- <el-table-column label="实际工资" align="center" prop="realWages" />-->
|
||||||
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-button
|
||||||
|
size="mini"
|
||||||
|
type="text"
|
||||||
|
icon="el-icon-edit"
|
||||||
|
@click="handleUpdate(scope.row)"
|
||||||
|
v-hasPermi="['system:unitPrice:edit']"
|
||||||
|
>工资修改</el-button>
|
||||||
|
<!-- <el-button-->
|
||||||
|
<!-- size="mini"-->
|
||||||
|
<!-- type="text"-->
|
||||||
|
<!-- icon="el-icon-delete"-->
|
||||||
|
<!-- @click="handleDelete(scope.row)"-->
|
||||||
|
<!-- v-hasPermi="['system:unitPrice:remove']"-->
|
||||||
|
<!-- >删除</el-button>-->
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<pagination
|
||||||
|
v-show="total>0"
|
||||||
|
:total="total"
|
||||||
|
:page.sync="queryParams.pageNum"
|
||||||
|
:limit.sync="queryParams.pageSize"
|
||||||
|
@pagination="getList"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<!-- 添加或修改unitPrice对话框 -->
|
||||||
|
<el-dialog :title="title" :visible.sync="open" width="680px" append-to-body>
|
||||||
|
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="实际工资" prop="attr1" >
|
||||||
|
<el-input v-model="form.attr1" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item label="备注">
|
||||||
|
<el-input v-model="form.remark" type="textarea" placeholder="请输入内容"></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
<div slot="footer" class="dialog-footer">
|
||||||
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
||||||
|
<el-button @click="cancel">取 消</el-button>
|
||||||
|
</div>
|
||||||
|
</el-dialog>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
// import { ElEditable } from 'element-plus';
|
||||||
|
import { getToken } from "@/utils/auth";
|
||||||
|
import { listUnitPriceReport,getReport,updateUnitPriceReport } from "@/api/mes/unitPriceReport";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "UnitPrice",
|
||||||
|
// components: {
|
||||||
|
// 'el-editable': ElEditable,
|
||||||
|
// // 其他组件
|
||||||
|
// },
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
// 遮罩层
|
||||||
|
loading: true,
|
||||||
|
// 选中数组
|
||||||
|
ids: [],
|
||||||
|
// 非单个禁用
|
||||||
|
single: true,
|
||||||
|
// 非多个禁用
|
||||||
|
multiple: true,
|
||||||
|
// 显示搜索条件
|
||||||
|
showSearch: true,
|
||||||
|
// 总条数
|
||||||
|
total: 0,
|
||||||
|
// unitPrice表格数据
|
||||||
|
unitPriceList: [],
|
||||||
|
// 弹出层标题
|
||||||
|
title: "",
|
||||||
|
// 是否显示弹出层
|
||||||
|
open: false,
|
||||||
|
value: '',
|
||||||
|
// 查询参数
|
||||||
|
queryParams: {
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
factoryId: null,
|
||||||
|
workorderCodeSap: null,
|
||||||
|
productCode: null,
|
||||||
|
productName: null,
|
||||||
|
lineCode: null,
|
||||||
|
lineName: null,
|
||||||
|
childprocessId: null,
|
||||||
|
childprocessCode: null,
|
||||||
|
childprocessName: null,
|
||||||
|
attr1: null,
|
||||||
|
attr2: null,
|
||||||
|
attr3: null,
|
||||||
|
attr4: null,
|
||||||
|
},
|
||||||
|
productQueryParams:{
|
||||||
|
productCode: null,
|
||||||
|
productName: null,
|
||||||
|
},
|
||||||
|
// 表单参数
|
||||||
|
form: {},
|
||||||
|
// 表单校验
|
||||||
|
productCodeList: [],
|
||||||
|
state: '',
|
||||||
|
timeout: null,
|
||||||
|
productCode:'',
|
||||||
|
tableData: [],
|
||||||
|
};
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
this.getList();
|
||||||
|
// this.fetchProcessOptions();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
handleEdit(index, row) {
|
||||||
|
console.log('row:',index, row);
|
||||||
|
},
|
||||||
|
|
||||||
|
/** 查询unitPrice列表 */
|
||||||
|
getList() {
|
||||||
|
this.loading = true;
|
||||||
|
listUnitPriceReport(this.queryParams).then(response => {
|
||||||
|
this.unitPriceList = response.rows;
|
||||||
|
this.total = response.total;
|
||||||
|
this.loading = false;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
// 取消按钮
|
||||||
|
cancel() {
|
||||||
|
this.open = false;
|
||||||
|
this.reset();
|
||||||
|
},
|
||||||
|
// 表单重置
|
||||||
|
reset() {
|
||||||
|
this.form = {
|
||||||
|
picId: null,
|
||||||
|
factoryId: null,
|
||||||
|
productCode: null,
|
||||||
|
productName: null,
|
||||||
|
lineCode: null,
|
||||||
|
lineName: null,
|
||||||
|
childprocessId: null,
|
||||||
|
childprocessCode: null,
|
||||||
|
childprocessName: null,
|
||||||
|
attr1: null,
|
||||||
|
attr2: null,
|
||||||
|
attr3: null,
|
||||||
|
attr4: null,
|
||||||
|
createBy: null,
|
||||||
|
createTime: null,
|
||||||
|
updateBy: null,
|
||||||
|
updateTime: null
|
||||||
|
};
|
||||||
|
this.resetForm("form");
|
||||||
|
this.tableData = [];
|
||||||
|
this.nextID=1;
|
||||||
|
},
|
||||||
|
/** 搜索按钮操作 */
|
||||||
|
handleQuery() {
|
||||||
|
this.queryParams.pageNum = 1;
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
/** 重置按钮操作 */
|
||||||
|
resetQuery() {
|
||||||
|
this.resetForm("queryForm");
|
||||||
|
this.handleQuery();
|
||||||
|
},
|
||||||
|
// 多选框选中数据
|
||||||
|
handleSelectionChange(selection) {
|
||||||
|
this.ids = selection.map(item => item.picId)
|
||||||
|
this.single = selection.length !== 1
|
||||||
|
this.multiple = !selection.length
|
||||||
|
},
|
||||||
|
/** 新增按钮操作 */
|
||||||
|
handleAdd() {
|
||||||
|
this.reset();
|
||||||
|
this.open = true;
|
||||||
|
this.title = "添加计件薪酬信息";
|
||||||
|
},
|
||||||
|
/** 修改按钮操作 */
|
||||||
|
handleUpdate(row) {
|
||||||
|
console.log(row)
|
||||||
|
this.reset();
|
||||||
|
const picId = row.id || this.ids
|
||||||
|
getReport(picId).then(response => {
|
||||||
|
this.form = response.data;
|
||||||
|
this.open = true;
|
||||||
|
if (response.data.attr1 === null || response.data.attr1 === undefined) {
|
||||||
|
this.form.attr1 = row.avgResult;
|
||||||
|
} else {
|
||||||
|
this.form.attr1 = response.data.attr1;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/** 提交按钮 */
|
||||||
|
submitForm() {
|
||||||
|
this.$refs["form"].validate(valid => {
|
||||||
|
if (valid) {
|
||||||
|
console.log(this.form,this.tableData)
|
||||||
|
if (this.form.id != null) {
|
||||||
|
updateUnitPriceReport(this.form).then(response => {
|
||||||
|
this.$modal.msgSuccess("修改成功");
|
||||||
|
this.open = false;
|
||||||
|
this.getList();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
// else {
|
||||||
|
// addUnitPrice(this.form).then(response => {
|
||||||
|
// this.$modal.msgSuccess("新增成功");
|
||||||
|
// this.open = false;
|
||||||
|
// this.getList();
|
||||||
|
// });
|
||||||
|
// }
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/** 导出按钮操作 */
|
||||||
|
handleExport() {
|
||||||
|
this.download('mes/unitPrice/export', {
|
||||||
|
...this.queryParams
|
||||||
|
}, `unitPrice_${new Date().getTime()}.xlsx`)
|
||||||
|
},
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
Loading…
Reference in New Issue