|
|
@@ -11,6 +11,15 @@
|
|
|
>
|
|
|
<template slot="menuLeft">
|
|
|
<el-button
|
|
|
+ type="danger"
|
|
|
+ size="small"
|
|
|
+ icon="el-icon-delete"
|
|
|
+ plain
|
|
|
+ @click="handleDelete"
|
|
|
+ >
|
|
|
+ 清除考勤数据
|
|
|
+ </el-button>
|
|
|
+ <el-button
|
|
|
type="warning"
|
|
|
size="small"
|
|
|
plain
|
|
|
@@ -26,14 +35,17 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
- <!-- 使用工时 -->
|
|
|
+ <!-- <template slot="technicianId" slot-scope="{ row }">
|
|
|
+ <span>{{ row.name }}</span>
|
|
|
+ </template>
|
|
|
+
|
|
|
<template slot="gsTotalSearch">
|
|
|
<div style="display: flex; align-items: center;">
|
|
|
<avue-input-number v-model="params.gsTotalStart" :min="0"></avue-input-number>
|
|
|
<span style="width: 70px; text-align: center;">至</span>
|
|
|
<avue-input-number v-model="params.gsTotalEnd" :min="0"></avue-input-number>
|
|
|
</div>
|
|
|
- </template>
|
|
|
+ </template> -->
|
|
|
|
|
|
</avue-crud>
|
|
|
|
|
|
@@ -81,51 +93,92 @@ export default window.$crudCommon({
|
|
|
},
|
|
|
async created() {
|
|
|
this.defaultColumns = deepClone(this.option.column);
|
|
|
- console.log(this.option.column)
|
|
|
this.refreshTableCol(this.params.yearAndMonth);
|
|
|
},
|
|
|
beforeDestroy() {
|
|
|
this.option.column = deepClone(this.defaultColumns);
|
|
|
},
|
|
|
methods: {
|
|
|
+ // handleBeforeOpen(done, type) {
|
|
|
+ // this.option.column.forEach(item => {
|
|
|
+ // if (item.prop == "technicianId") {
|
|
|
+ // item.dicUrl = '/api/kd-scientific/technician/page';
|
|
|
+ // item.dicQuery.yearAndMonth = this.params.yearAndMonth;
|
|
|
+ // }
|
|
|
+ // });
|
|
|
+ // done();
|
|
|
+ // },
|
|
|
refreshTableCol(yearAndMonth) {
|
|
|
let yearMonth = moment(yearAndMonth).format("YYYY-MM").split("-");
|
|
|
const monthDays = getMonthDatesWithMarkers(Number(yearMonth[0]), Number(yearMonth[1]));
|
|
|
- console.log(monthDays)
|
|
|
|
|
|
let newColumns = deepClone(this.defaultColumns);
|
|
|
|
|
|
- monthDays.forEach(item => {
|
|
|
+ monthDays.forEach((item) => {
|
|
|
let col = {
|
|
|
- label: item.dayName.replace(/周/g, ''),
|
|
|
+ prop: moment(item.dateString).format('yyyyMMDD'),
|
|
|
+ label: item.dayName + "" + item.day.toString(),
|
|
|
+ type: 'number',
|
|
|
+ precision: 1,
|
|
|
+ min: 0,
|
|
|
+ width: 45,
|
|
|
align: 'center',
|
|
|
- children: [{
|
|
|
- prop: item.day.toString(),
|
|
|
- label: item.day,
|
|
|
- type: 'number',
|
|
|
- min: 0,
|
|
|
- width: 40,
|
|
|
- align: 'center',
|
|
|
- isWorkDay: ChineseHoliday.isWorkday(item.dateString)
|
|
|
- }],
|
|
|
-
|
|
|
- };
|
|
|
+ isWorkDay: ChineseHoliday.isWorkday(item.dateString),
|
|
|
+ showOverflowTooltip: true,
|
|
|
+ }
|
|
|
+
|
|
|
if (!ChineseHoliday.isWorkday(item.dateString)) {
|
|
|
col.labelClassName = 'red';
|
|
|
- col.children[0].labelClassName = 'red';
|
|
|
+ col.labelClassName = 'red';
|
|
|
}
|
|
|
newColumns.push(col);
|
|
|
});
|
|
|
+ newColumns.push({
|
|
|
+ prop: "monthlyHours",
|
|
|
+ label: "本月出勤/小时",
|
|
|
+ type: 'number',
|
|
|
+ precision: 1,
|
|
|
+ min: 0,
|
|
|
+ width: 70,
|
|
|
+ align: 'center',
|
|
|
+ showOverflowTooltip: true,
|
|
|
+ }, {
|
|
|
+ prop: "monthlyDays",
|
|
|
+ label: "本月出勤/天",
|
|
|
+ type: 'number',
|
|
|
+ precision: 1,
|
|
|
+ min: 0,
|
|
|
+ width: 70,
|
|
|
+ align: 'center',
|
|
|
+ showOverflowTooltip: true,
|
|
|
+ });
|
|
|
|
|
|
this.option.column = newColumns;
|
|
|
},
|
|
|
+ getFormData() {
|
|
|
+ const newFormData = { ...this.form, yearAndMonth: this.params.yearAndMonth };
|
|
|
+ let dailyAttendances = [];
|
|
|
+ Object.keys(this.form).forEach(key => {
|
|
|
+ if (key.indexOf(this.params.yearAndMonth) > -1) {
|
|
|
+ if (this.form[key]) {
|
|
|
+ dailyAttendances.push({
|
|
|
+ workDate: key,
|
|
|
+ workHours: this.form[key]
|
|
|
+ });
|
|
|
+ }
|
|
|
+ delete newFormData[key];
|
|
|
+ }
|
|
|
+ });
|
|
|
+ newFormData.dailyAttendances = dailyAttendances;
|
|
|
+ return newFormData;
|
|
|
+ },
|
|
|
/**
|
|
|
* 打印表格
|
|
|
* @param isLandscape 是否横向打印
|
|
|
*/
|
|
|
printTable(isLandscape) {
|
|
|
this.wideTableColumns = this.$refs.crud.columnOption;
|
|
|
- this.printTitle = `仪器设备工时记录表${this.params.yearAndMonth}`;
|
|
|
+ this.printTitle = `考勤信息${this.params.yearAndMonth}`;
|
|
|
this.$nextTick(() => {
|
|
|
this.$refs.printWideTable.printTable(isLandscape);
|
|
|
})
|
|
|
@@ -141,6 +194,15 @@ export default window.$crudCommon({
|
|
|
// 模块路径
|
|
|
name: 'yfCostManage/basicDataSetting/attenInfo',
|
|
|
res: ({ data }) => {
|
|
|
+ let newList = [];
|
|
|
+ data.records.forEach((item) => {
|
|
|
+ let objData = { ...item, id: item.technicianId };
|
|
|
+ item.dailyAttendances.forEach(hourItem => {
|
|
|
+ objData[hourItem.workDate] = (hourItem.workHours || 0).toFixed(1);
|
|
|
+ });
|
|
|
+ newList.push(objData);
|
|
|
+ });
|
|
|
+ data.records = newList;
|
|
|
return data;
|
|
|
},
|
|
|
});
|