|
@@ -55,6 +55,12 @@
|
|
|
<i class="el-icon-question" style="color:#606266"></i>
|
|
|
</el-tooltip>
|
|
|
</el-form-item>
|
|
|
+ <el-form-item v-if="timeType.fillOvertime && timeType.syncCorpwxTime">
|
|
|
+ <el-checkbox v-model="timeType.verifyCardOvertime" :label="$t('kaoqingjiabanjiaoyan')" />
|
|
|
+ <el-tooltip effect="dark" :content="$t('kaoqingjiabanjiaoyanTip')" placement="top-start">
|
|
|
+ <i class="el-icon-question" style="color:#606266"></i>
|
|
|
+ </el-tooltip>
|
|
|
+ </el-form-item>
|
|
|
<template v-if="timeType.fillOvertime">
|
|
|
<el-checkbox v-model="timeType.payOvertime" :label="$t('chargedtocost')" />
|
|
|
<!-- <el-checkbox v-model="timeType.doubleOvertime" label="加班双倍成本" :disabled="!timeType.payOvertime"/> -->
|
|
@@ -1635,6 +1641,7 @@
|
|
|
param.fillAhead = param.fillAhead ? 1 : 0
|
|
|
param.includeWeekends = param.includeWeekends ? 1 : 0
|
|
|
param.workOvertimeNeedCheck = param.workOvertimeNeedCheck ? 1 : 0
|
|
|
+ param.verifyCardOvertime = param.verifyCardOvertime ? 1 : 0
|
|
|
param.mainProjectState = param.mainProjectState ? 1 : 0
|
|
|
param.stopReport = param.stopReport? 1: 0;
|
|
|
param.notAllowedOnNonWorkday = param.notAllowedOnNonWorkday? 1: 0;
|
|
@@ -1734,6 +1741,7 @@
|
|
|
this.timeType.fillAhead = this.timeType.fillAhead ? true : false
|
|
|
this.timeType.includeWeekends = this.timeType.includeWeekends ? true : false
|
|
|
this.timeType.workOvertimeNeedCheck = this.timeType.workOvertimeNeedCheck ? true : false
|
|
|
+ this.timeType.verifyCardOvertime = this.timeType.verifyCardOvertime ? true : false
|
|
|
this.timeType.mainProjectState = this.timeType.mainProjectState ? true : false
|
|
|
this.timeType.customDataMaxStatus = this.timeType.customDataMaxStatus ? true : false
|
|
|
this.timeType.customDataMaxValue = this.timeType.customDataMaxValue ? this.timeType.customDataMaxValue : 100
|