毛坯扣除修改,添加一次合格,抛光的记录检查功能

This commit is contained in:
2025-03-25 16:34:47 +08:00
parent 8664e48c5a
commit 6e652aa9f3
4 changed files with 92 additions and 1 deletions

View File

@@ -47,6 +47,9 @@
<el-col :span="1.5">
<el-button type="primary" icon="el-icon-refresh" size="mini" @click="handleRecordSync(1)">自动记录同步</el-button>
</el-col>
<el-col :span="1.5">
<el-button type="danger" icon="el-icon-warning" size="mini" @click="errorDialogShow = true">异常检测</el-button>
</el-col>
<right-toolbar :columns="columns" :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<!-- 仓库零件数 -->
@@ -233,6 +236,7 @@
<el-button @click="upload.open = false"> </el-button>
</div>
</el-dialog>
<TheErrorCheckDialog :visible.sync="errorDialogShow"></TheErrorCheckDialog>
</div>
</template>
<script>
@@ -251,11 +255,13 @@ import {
generateWmOneTimeRecord,
} from '@/api/wmsManagement/wmOneTimeInventory.js'
import ThePartNumberSelect from './ThePartNumberSelect.vue'
import TheErrorCheckDialog from '../components/TheErrorCheckDialog/index.vue'
import { getToken } from '@/utils/auth'
export default {
name: 'wmOneTimeinventory',
components: {
ThePartNumberSelect,
TheErrorCheckDialog,
},
data() {
return {
@@ -379,6 +385,7 @@ export default {
QuantitySum: 0,
RealQuantitySum: 0,
MinStocktakingTime: '',
errorDialogShow: false,
}
},
computed: {