|
|
|
@ -5,6 +5,18 @@
|
|
|
|
|
<el-row :gutter="0" style="margin-top: 15px">
|
|
|
|
|
<el-col :span="24" align="right">
|
|
|
|
|
<el-button-group>
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
:disabled="!orderData.billNo"
|
|
|
|
|
@click.native="abandonOrder()"
|
|
|
|
|
>取消校验
|
|
|
|
|
</el-button>
|
|
|
|
|
<!--<el-button-->
|
|
|
|
|
<!-- type="primary"-->
|
|
|
|
|
<!-- :disabled="!orderData.billNo"-->
|
|
|
|
|
<!-- @click.native="cancelCheckOrder()"-->
|
|
|
|
|
<!-->取消校验-->
|
|
|
|
|
<!--</el-button>-->
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
:disabled="!orderData.billNo"
|
|
|
|
@ -169,7 +181,12 @@ import { getCodeEndList } from '@/api/collect/IoCollectCodeSelect'
|
|
|
|
|
import { orderFinish } from '@/api/collect/collectOrder'
|
|
|
|
|
import selectPrescribeDialog from '@/views/collect/selectCollectOrderDialog'
|
|
|
|
|
import CollectFinishOrderBackupDetail from "./CollectFinishOrderBackupDetail"
|
|
|
|
|
import { commitCheckCodeOrder, scanCheckCodeOrder, scanCheckCodeReplace } from '@/api/collect/splitCreateOrder'
|
|
|
|
|
import {
|
|
|
|
|
commitCheckCodeOrder,
|
|
|
|
|
deleteCodes,
|
|
|
|
|
scanCheckCodeOrder,
|
|
|
|
|
scanCheckCodeReplace
|
|
|
|
|
} from '@/api/collect/splitCreateOrder'
|
|
|
|
|
import { isBlank } from '@/utils/strUtil'
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
@ -580,6 +597,52 @@ export default {
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
// cancelCheckOrder(){
|
|
|
|
|
// this.codeQuery.selectType = 2
|
|
|
|
|
// this.$confirm('是否取消当前单据校验', '提示', {
|
|
|
|
|
// confirmButtonText: '确定',
|
|
|
|
|
// cancelButtonText: '取消',
|
|
|
|
|
// type: 'warning',
|
|
|
|
|
// center: true,
|
|
|
|
|
// closeOnPressEscape: false,//按下 ESC 键关闭弹窗
|
|
|
|
|
// closeOnClickModal: false,//点击遮罩关闭弹窗
|
|
|
|
|
// distinguishCancelAndClose: true//区分取消与关闭
|
|
|
|
|
// }).then(() => {
|
|
|
|
|
// this.getResultDetailList()
|
|
|
|
|
// this.initData()
|
|
|
|
|
// this.$message.success("取消成功")
|
|
|
|
|
// }).catch(() => {
|
|
|
|
|
//
|
|
|
|
|
// })
|
|
|
|
|
//
|
|
|
|
|
// },
|
|
|
|
|
abandonOrder(){
|
|
|
|
|
let query = {
|
|
|
|
|
billNo : this.orderData.billNo,
|
|
|
|
|
selectType : 2
|
|
|
|
|
}
|
|
|
|
|
this.$confirm('是否取消当前单据校验', '提示', {
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
type: 'warning',
|
|
|
|
|
center: true,
|
|
|
|
|
closeOnPressEscape: false,//按下 ESC 键关闭弹窗
|
|
|
|
|
closeOnClickModal: false,//点击遮罩关闭弹窗
|
|
|
|
|
distinguishCancelAndClose: true//区分取消与关闭
|
|
|
|
|
}).then(() => {
|
|
|
|
|
deleteCodes(query).then(res => {
|
|
|
|
|
if (res.code == 20000){
|
|
|
|
|
this.init()
|
|
|
|
|
this.$message.success("取消成功")
|
|
|
|
|
}else {
|
|
|
|
|
this.$message.success(res.message)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
initData(){
|
|
|
|
|
this.scanCode = ''
|
|
|
|
|
this.$refs.inputRef.focus()
|
|
|
|
|