Merge branch '20240912_adapter' of http://116.204.71.86:3000/UDI/udiwms-vue-frame into 20240912_adapter

20240912_adapter
qiuyt 3 months ago
commit 4e0273b3a5

@ -76,6 +76,14 @@
</el-radio-group> </el-radio-group>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="8" class="el-col">
<el-form-item label="寄售预验收扫码校验:" prop="autoFinishOrder" style="margin-bottom: 0">
<el-radio-group v-model="formData.isScanCodeCheck">
<el-radio :label="true"></el-radio>
<el-radio :label="false"></el-radio>
</el-radio-group>
</el-form-item>
</el-col>
</el-row> </el-row>
</el-collapse-item> </el-collapse-item>
<el-collapse-item name="3"> <el-collapse-item name="3">
@ -237,7 +245,8 @@ export default {
activeNames: ['0', '1', '2', '3'], activeNames: ['0', '1', '2', '3'],
formData: { formData: {
startDownloadTime: null, startDownloadTime: null,
lastCodeSplit: true lastCodeSplit: true,
isScanCodeCheck:true,
}, },
systemParam: null, systemParam: null,

@ -79,6 +79,13 @@
></el-input> ></el-input>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="包装比例" prop="packRatio" show-overflow-tooltip width="120">
<template slot-scope="scope">
<el-input size="small" v-model="scope.row.packRatio" style="width: 100%"
:disabled="scope.$index !== selectedIndex"
></el-input>
</template>
</el-table-column>
<el-table-column label="层级单位" prop="packUnit" show-overflow-tooltip width="120"> <el-table-column label="层级单位" prop="packUnit" show-overflow-tooltip width="120">
<template slot-scope="scope"> <template slot-scope="scope">
<el-input size="small" v-model="scope.row.packUnit" style="width: 100%" <el-input size="small" v-model="scope.row.packUnit" style="width: 100%"
@ -262,7 +269,7 @@
<el-option label="中药注射剂" :value="7"></el-option> <el-option label="中药注射剂" :value="7"></el-option>
<el-option label="疫苗" :value="8"></el-option> <el-option label="疫苗" :value="8"></el-option>
<el-option label="血液制品" :value="9"></el-option> <el-option label="血液制品" :value="9"></el-option>
<el-option label="国家基本药品目录入网药品" :value="10"></el-option> <el-option label="国家基本药品目录入网药品" :value="10" v-if="!isSpecial"></el-option>
<el-option label="非基本药物" :value="11"></el-option> <el-option label="非基本药物" :value="11"></el-option>
<el-option label="各省增补基本药物" :value="12"></el-option> <el-option label="各省增补基本药物" :value="12"></el-option>
<el-option label="特殊药品复方制剂" :value="13"></el-option> <el-option label="特殊药品复方制剂" :value="13"></el-option>
@ -830,6 +837,7 @@ export default {
productId: null, productId: null,
nameCode: '', nameCode: '',
packLevel: null, packLevel: null,
packRatio: null,
bhxjsl: null, bhxjsl: null,
isDisabled: false, isDisabled: false,
isUpDisabled: true, isUpDisabled: true,
@ -849,7 +857,8 @@ export default {
levelUnitList: [], levelUnitList: [],
maxLevel: 1, maxLevel: 1,
editRowSwitch: false // editRowSwitch: false, //
isSpecial:false
} }
}, },
@ -1061,7 +1070,8 @@ export default {
uuid: this.newProductData.uuid, uuid: this.newProductData.uuid,
productId: row.productId, productId: row.productId,
diType: row.diType, diType: row.diType,
xjdw: row.xjdw xjdw: row.xjdw,
packRatio: row.packRatio
} }
updateLevelDrug(editQuery).then(res => { updateLevelDrug(editQuery).then(res => {
this.saveLoading = false this.saveLoading = false
@ -1150,6 +1160,7 @@ export default {
.then((response) => { .then((response) => {
this.loading = false this.loading = false
this.detailList = response.data || [] this.detailList = response.data || []
this.checkIsSpecial()
}) })
.catch(() => { .catch(() => {
this.loading = false this.loading = false
@ -1157,7 +1168,15 @@ export default {
}) })
} }
}, },
checkIsSpecial(){
if (this.detailList.length > 0){
this.detailList.forEach(item => {
if (item.nameCode.startsWith('89')) {
this.isSpecial = true
}
})
}
},
distributeLevelDiChange(val) { distributeLevelDiChange(val) {
const matchingItem = this.detailList.find(item => item.nameCode == val) const matchingItem = this.detailList.find(item => item.nameCode == val)
if (matchingItem) { if (matchingItem) {

@ -353,13 +353,12 @@ export default {
3: '用户所属仓库', 3: '用户所属仓库',
}, },
consignees: { consignees: {
1: '原始单据的收货方', 1: '客户',
2: '原始单据的发货方', 2: '供应商',
3: '供应商', 3: '内部科室',
4: '客户', 4: '特殊往来',
5: '特殊往来', 5: '原始单据的收货方',
6: '内部科室', 6: '原始单据的发货方',
7: '填写',
}, },
userList: [], userList: [],
userLoading: false, userLoading: false,

@ -0,0 +1,146 @@
<template>
<div>
<el-form :model="formData" style="width: 100%;" ref="dataForm" :rules="formRules"
label-width="auto"
>
<el-row :gutter="24">
<el-col :span="12" class="el-col">
<el-form-item label="槽位编码:" prop="code" class="query-form-item">
<el-input
v-model="formData.code" style="width: 80%"
auto-complete="off"
disabled
></el-input>
</el-form-item>
</el-col>
<el-col :span="12" class="el-col">
<el-form-item label="槽位名称:" class="query-form-item">
<el-input
v-model="formData.name" style="width: 80%"
auto-complete="off"
placeholder="请输入槽位名称"
></el-input>
</el-form-item>
</el-col>
</el-row>
<!--<el-row :gutter="24">-->
<!-- <el-col :span="12" class="el-col">-->
<!-- <el-form-item label="所属工位:" class="query-form-item" prop="workPlaceIdFk">-->
<!-- <el-select-->
<!-- disabled-->
<!-- v-model="formData.workPlaceIdFk"-->
<!-- filterable-->
<!-- remote-->
<!-- style="width: 80%"-->
<!-- placeholder="请输入选择所属工位"-->
<!-- >-->
<!-- <el-option-->
<!-- v-for="item in workPlaces"-->
<!-- :key="item.code"-->
<!-- :label="item.label"-->
<!-- :value="item.code"-->
<!-- />-->
<!-- </el-select>-->
<!-- </el-form-item>-->
<!-- </el-col>-->
<!--</el-row>-->
</el-form>
<div slot="footer" class="dialog-footer" style="margin-top: 50px">
<el-button @click.native="hideForm">取消</el-button>
<el-button
type="primary"
@click.native="formSubmit()"
>提交
</el-button
>
</div>
</div>
</template>
<script>
import { filterWorkOptimize } from '@/api/basic/workPlace/sysWorkplaceManage'
import { updateQueue} from '@/api/basic/workPlace/SysWorkplaceQueue'
import { isBlank } from '@/utils/strUtil'
export default {
props: {
closeDialog: {
type: Function,
required: true
},
rowData: {
type: Object,
required: true
},
workplaceId: {
type: Object,
required: true
}
},
data() {
return {
formData: {
code: '',
name: '',
remark: '',
workPlaceIdFk: ''
},
freightData: null,
workPlaces: [],
formRules: {
// name: [
// { required: true, message: '', trigger: 'blur' }
// ],
workPlaceIdFk: [
{ required: true, message: '请选择所属工位', trigger: 'blur' }
]
},
}
},
methods: {
findWorkPlace(val) {
let query = {
// chargeUser: _this.$store.getters.userId,
userIdFlag: true,
key: val,
page: 1,
limit: 10,
workPlaceClass: 2
}
filterWorkOptimize(query)
.then((response) => {
this.workPlaces = response.data || []
})
.catch(() => {
this.options.getWorkPlaceList = []
})
},
formSubmit(){
updateQueue(this.formData).then(res => {
if (res.code == 20000){
this.$message.success("更新成功")
}else {
this.$message.error("更新失败")
}
this.closeDialog()
})
}
},
created() {
if (this.rowData != null){
this.formData = this.rowData
}
this.findWorkPlace('')
}
}
</script>
<style scoped>
.dialog-footer {
display: flex;
justify-content: center;
}
</style>

@ -8,6 +8,8 @@
<el-card style="width: 100%;height: 100%"> <el-card style="width: 100%;height: 100%">
<div slot="header" class="clearfix" style="margin-bottom: 10px;"> <div slot="header" class="clearfix" style="margin-bottom: 10px;">
<span style="font-weight: 700;">取货架列表 <span style="font-weight: 700;">取货架列表
</span>
<span>
<el-button-group style="float: right"> <el-button-group style="float: right">
<el-button style="margin-bottom: -5px " @click="printFreight(1,null)" type="primary">打印全部 <el-button style="margin-bottom: -5px " @click="printFreight(1,null)" type="primary">打印全部
</el-button> </el-button>
@ -27,23 +29,21 @@
<el-table-column type="index" label="序号"> <el-table-column type="index" label="序号">
</el-table-column> </el-table-column>
<el-table-column <el-table-column
width="100"
prop="code" prop="code"
label="取货架编码" label="取货架编码"
> >
</el-table-column> </el-table-column>
<el-table-column <el-table-column
width="140"
prop="remark" prop="remark"
label="取货架说明" label="取货架说明"
> >
</el-table-column> </el-table-column>
<el-table-column <!--<el-table-column-->
width="140" <!-- width="140"-->
prop="layerCount" <!-- prop="layerCount"-->
label="摆货层数量" <!-- label="摆货层数量"-->
> <!--&gt;-->
</el-table-column> <!--</el-table-column>-->
<!--<el-table-column--> <!--<el-table-column-->
<!-- width="140"--> <!-- width="140"-->
<!-- prop="name"--> <!-- prop="name"-->
@ -82,7 +82,7 @@
</el-card> </el-card>
</div> </div>
<div style="width: 322px;height: 340px;margin-bottom: 10px"> <div style="width: 280px;height: 340px;margin-bottom: 10px">
<el-card style="width: 100%;height: 100%"> <el-card style="width: 100%;height: 100%">
<div slot="header" class="clearfix" style="margin-bottom: 10px;"> <div slot="header" class="clearfix" style="margin-bottom: 10px;">
<span style="font-weight: 700;">摆货层列表</span> <span style="font-weight: 700;">摆货层列表</span>
@ -94,17 +94,16 @@
@row-click="handChangeLayer" @row-click="handChangeLayer"
> >
<el-table-column <el-table-column
width="100"
prop="code" prop="code"
label="摆货层编码" label="摆货层编码"
> >
</el-table-column> </el-table-column>
<el-table-column <!--<el-table-column-->
width="120" <!-- width="120"-->
prop="queueNum" <!-- prop="queueNum"-->
label="出货槽数量" <!-- label="出货槽数量"-->
> <!--&gt;-->
</el-table-column> <!--</el-table-column>-->
<el-table-column label="操作" width="60"> <el-table-column label="操作" width="60">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button <el-button
@ -138,7 +137,7 @@
<!--</pagination>--> <!--</pagination>-->
</el-card> </el-card>
</div> </div>
<div style="width: 260px;height: 340px;margin-bottom: 10px"> <div style="width: 400px;height: 340px;margin-bottom: 10px">
<el-card style="width: 100%;height: 100%"> <el-card style="width: 100%;height: 100%">
<div slot="header" class="clearfix" style="margin-bottom: 10px;"> <div slot="header" class="clearfix" style="margin-bottom: 10px;">
<span style="font-weight: 700;">出货槽列表</span> <span style="font-weight: 700;">出货槽列表</span>
@ -154,7 +153,12 @@
label="出货槽编号" label="出货槽编号"
> >
</el-table-column> </el-table-column>
<el-table-column label="操作" width="60"> <el-table-column
prop="name"
label="槽位名称"
>
</el-table-column>
<el-table-column label="操作" width="120">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button <el-button
type="text" type="text"
@ -162,6 +166,19 @@
@click.native.stop="printFreight(3,scope.row)" @click.native.stop="printFreight(3,scope.row)"
>打印 >打印
</el-button> </el-button>
<el-button
type="text"
size="small"
@click.native.stop="editQueue(scope.row)"
>编辑
</el-button>
<el-button
type="text"
size="small"
@click.native.stop="deleteQueue(scope.row)"
>删除
</el-button>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
@ -205,6 +222,24 @@
> >
</addWorkplaceFreightDialog> </addWorkplaceFreightDialog>
</el-dialog> </el-dialog>
<!--</el-card>-->
<el-dialog
title="槽位编辑"
:visible.sync="WorkplaceQueueDialogVisible"
width="60%"
v-if="WorkplaceQueueDialogVisible"
:close-on-press-escape="false"
:close-on-click-modal="false"
@close="QueuecloseDialog"
>
<editQueueDialog
:closeDialog="QueuecloseDialog"
:rowData="queueRowData"
:workplaceId="workplaceId"
>
</editQueueDialog>
</el-dialog>
</div> </div>
</template> </template>
@ -212,8 +247,9 @@
<script> <script>
import { deleteFreight, getWorkplaceFreightList, printAllFreight } from '@/api/basic/workPlace/SysWorkplaceFreight' import { deleteFreight, getWorkplaceFreightList, printAllFreight } from '@/api/basic/workPlace/SysWorkplaceFreight'
import addWorkplaceFreightDialog from './addWorkplaceFreightDialog' import addWorkplaceFreightDialog from './addWorkplaceFreightDialog'
import editQueueDialog from "./editQueueDialog"
import { getLayerList } from '@/api/basic/workPlace/SysWorkplaceLayer' import { getLayerList } from '@/api/basic/workPlace/SysWorkplaceLayer'
import { getQueueListPage } from '@/api/basic/workPlace/SysWorkplaceQueue' import { deleteQueue, getQueueListPage } from '@/api/basic/workPlace/SysWorkplaceQueue'
import { isBlank } from '@/utils/strUtil' import { isBlank } from '@/utils/strUtil'
export default { export default {
@ -223,7 +259,7 @@ export default {
required: true required: true
} }
}, },
components: { addWorkplaceFreightDialog }, components: { addWorkplaceFreightDialog,editQueueDialog },
data() { data() {
return { return {
query: { query: {
@ -251,11 +287,13 @@ export default {
layerCodes: [] layerCodes: []
}, },
rowData: null, rowData: null,
queueRowData:null,
freightList: [], freightList: [],
layerList: [], layerList: [],
queueList: [], queueList: [],
queueTotal: 0, queueTotal: 0,
WorkplaceFreightDialogVisible: false WorkplaceFreightDialogVisible: false,
WorkplaceQueueDialogVisible: false,
} }
}, },
methods: { methods: {
@ -392,14 +430,49 @@ export default {
this.getQueues() this.getQueues()
this.WorkplaceFreightDialogVisible = false this.WorkplaceFreightDialogVisible = false
}, },
QueuecloseDialog() {
this.getList()
this.getLayers()
this.getQueues()
this.WorkplaceQueueDialogVisible = false
},
getAllList(workPlaceIdFk) { getAllList(workPlaceIdFk) {
if (!isBlank(workPlaceIdFk)) { if (!isBlank(workPlaceIdFk)) {
this.query.workPlaceIdFk = workPlaceIdFk this.query.workPlaceIdFk = workPlaceIdFk
this.getList()
} }
// this.LayerQuery.freightCode = "" // this.LayerQuery.freightCode = ""
this.getList()
// this.getLayers() // this.getLayers()
// this.getQueues() // this.getQueues()
},
editQueue(row){
this.queueRowData = row
this.WorkplaceQueueDialogVisible = true
},
deleteQueue(row){
this.$confirm('此操作将永久删除该槽位, 是否继续?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
deleteQueue(row).then(res => {
if (res.code == 20000){
this.getList()
this.getLayers()
this.getQueues()
this.$message.success("删除成功")
}else {
this.$message.error("删除失败")
}
}).catch(() => {
})
// deleteQueueByCode(){
//
// }
})
} }
}, },
created() { created() {

@ -912,13 +912,12 @@ export default {
'true' : '是', 'true' : '是',
}, },
consignees: { consignees: {
1: '原始单据的收货方', 1: '客户',
2: '原始单据的发货方', 2: '供应商',
3: '供应商', 3: '内部科室',
4: '客户', 4: '特殊往来',
5: '特殊往来', 5: '原始单据的收货方',
6: '内部科室', 6: '原始单据的发货方',
7: '填写',
}, },
userList: [], userList: [],
userLoading: false, userLoading: false,

@ -274,15 +274,14 @@ export default {
///------------end ///------------end
preHandleCurrentChange(val) { preHandleCurrentChange(val) {
this.filterQuery.page = val.page; this.preQuery.page = val.page;
this.getPrescribeDetail(this, null); this.getPrescribeDetail(this);
}, },
getPrescribeDetail(_this) { getPrescribeDetail(_this) {
if (_this.prescribeData == null) if (_this.prescribeData == null)
return return
if (_this.prescribeData != null) { if (_this.prescribeData != null) {
_this.preQuery.page = 1 // _this.preQuery.page = 1
_this.preQuery.orderIdFk = this.prescribeData.billNo _this.preQuery.orderIdFk = this.prescribeData.billNo
} }
_this.preLoading = true; _this.preLoading = true;
@ -293,6 +292,7 @@ export default {
return return
} }
_this.preDetailList = res.data.list _this.preDetailList = res.data.list
_this.preTotal = res.data.total
_this.preLoading = false _this.preLoading = false
}).catch(() => { }).catch(() => {
_this.preLoading = false _this.preLoading = false

@ -444,6 +444,7 @@ export default {
tabIndex: 0, tabIndex: 0,
menuActive: 0, menuActive: 0,
autoTag: 0, autoTag: 0,
inAndOutType: 0,
workPlaceClass: 1, workPlaceClass: 1,
resetKeys: {} resetKeys: {}
} }
@ -642,9 +643,11 @@ export default {
let busType = this.busTypeList.find(item => item.documentTypeCode == this.formData.busType) let busType = this.busTypeList.find(item => item.documentTypeCode == this.formData.busType)
this.formData.busName = busType.busName; this.formData.busName = busType.busName;
this.autoTag = busType.autoTag; this.autoTag = busType.autoTag;
this.inAndOutType = busType.inAndOutType;
} else if (this.busTypeList.length == 1) { } else if (this.busTypeList.length == 1) {
this.formData.busType = this.busTypeList[0].documentTypeCode this.formData.busType = this.busTypeList[0].documentTypeCode
this.autoTag = this.busTypeList[0].autoTag; this.autoTag = this.busTypeList[0].autoTag;
this.inAndOutType = this.busTypeList[0].inAndOutType;
this.$router.push({query: {...this.$route.query, busType: this.formData.busType}, path: this.$route.path}) this.$router.push({query: {...this.$route.query, busType: this.formData.busType}, path: this.$route.path})
this.selectBusTypeDisabled = false this.selectBusTypeDisabled = false
this.formData.busName = this.busTypeList.find(item => item.documentTypeCode == this.formData.busType).busName; this.formData.busName = this.busTypeList.find(item => item.documentTypeCode == this.formData.busType).busName;
@ -653,6 +656,21 @@ export default {
this.formData.busType = null this.formData.busType = null
} }
if(this.inAndOutType == 1){
this.closeAllTabs()
this.editableTabsValue = 'IocCollectOrderCheckCode';
this.menuActive= 10,
this.editableTabs = [{
number: 10,
title: '单据审核',
name: 'IocCollectOrderCheckCode',
component: IocCollectOrderCheckCode,
//
componentProps: {}
}
];
}
} }
return return
}) })

@ -1549,7 +1549,7 @@ export default {
} }
// 2. "01" 18 // 2. "01" 18
if (str.startsWith("01") && str.length >= 18) { if (str.startsWith("01") && str.length >= 16) {
return true; return true;
} }

@ -871,7 +871,6 @@ export default {
this.printCodeResult(response.data, response.message) this.printCodeResult(response.data, response.message)
this.filterQuery.code = response.data.code; this.filterQuery.code = response.data.code;
this.originCode = response.data.code; this.originCode = response.data.code;
this.scanCode = ""
} else if (response.code == 501) { } else if (response.code == 501) {
this.checkSuccess = false; this.checkSuccess = false;
this.$message.error(response.message); this.$message.error(response.message);
@ -1597,7 +1596,7 @@ export default {
} }
// 2. "01" 18 // 2. "01" 18
if (str.startsWith("01") && str.length >= 18) { if (str.startsWith("01") && str.length >= 16) {
return true; return true;
} }

@ -1,7 +1,7 @@
<template> <template>
<div> <div>
<el-card> <el-card>
<el-button-group style="display: flex; justify-content: flex-end;"> <el-button-group style="display: flex; justify-content: flex-end;" v-if="type == 1">
<el-button <el-button
type="primary" type="primary"
@click.native="confirmCheckOrder()" @click.native="confirmCheckOrder()"
@ -11,7 +11,7 @@
<el-form :model="orderData" class="demo-form-inline" style="margin-top: 30px" @submit.native.prevent> <el-form :model="orderData" class="demo-form-inline" style="margin-top: 30px" @submit.native.prevent>
<!--<div style="border: 1px solid #ebeef5;border-radius: 2px;margin-top: 15px;padding: 15px">--> <!--<div style="border: 1px solid #ebeef5;border-radius: 2px;margin-top: 15px;padding: 15px">-->
<el-row :gutter="0" style="margin-top: 5px"> <el-row :gutter="0" style="margin-top: 5px" v-if="type == 1">
<el-col :span="20"> <el-col :span="20">
<el-form-item prop="code" label="扫码校验" label-width="80px"> <el-form-item prop="code" label="扫码校验" label-width="80px">
<el-input <el-input
@ -40,7 +40,7 @@
</el-col> </el-col>
</el-row> </el-row>
<el-alert <el-alert
v-if="successVisible" v-if="successVisible && type == 1"
:title="scanTitle" :title="scanTitle"
:type="scanResultType" :type="scanResultType"
:closable="false" :closable="false"
@ -57,7 +57,7 @@
<!-- :description="warnResult">--> <!-- :description="warnResult">-->
<!--</el-alert>--> <!--</el-alert>-->
<el-alert <el-alert
v-if="errVisible" v-if="errVisible && type == 1"
title="错误信息:" title="错误信息:"
type="error" type="error"
:closable="false" :closable="false"
@ -154,6 +154,11 @@ export default {
type: Function, type: Function,
required: true required: true
}, },
type: {
type: Object,
default: null,
required: true
},
}, },
data() { data() {
return { return {

@ -62,68 +62,6 @@
</el-button-group> </el-button-group>
</el-row> </el-row>
<el-row v-if="false">
<el-col :span="11">
<el-form-item prop="corpOrderId" class="query-form-item" label="单据号:">
<el-input
v-model="orderFormData.corpOrderId"
auto-complete="off"
style="width: 90%"
clearable
:disabled="true"
></el-input>
</el-form-item>
</el-col>
<el-col :span="11">
<el-form-item prop="createTime" class="query-form-item" label="单据时间:">
<el-date-picker
v-model="orderFormData.createTime"
type="datetime"
placeholder="日期"
clearable
value-format="yyyy-MM-dd HH:mm:ss"
:disabled="true"
style="width: 90%"
>
</el-date-picker>
</el-form-item>
</el-col>
<el-col :span="11">
<el-form-item prop="invCode" class="query-form-item" label="当前仓库:">
<el-select
v-model="orderFormData.invCode"
placeholder="当前仓库"
style="width: 90%"
:disabled="corpOrderIdDisabled || viewTypeKsck"
@change="changeInv"
filterable
>
<el-option
v-for="item in curInvOptions"
:key="item.name"
:label="item.name"
:value="item.code"
>
<span style="float: left">{{ item.name }}</span>
<span style="float: right; color: #8492a6; font-size: 13px">{{
item.warehouseName
}}</span>
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="11">
<el-form-item prop="remark" class="query-form-item" label="单据备注:">
<el-input
v-model="orderFormData.remark"
auto-complete="off"
clearable
style="width: 90%"
placeholder="请输入备注信息"
></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row> <el-row>
<el-col :span="6" v-if="!isLinkDisabled"> <el-col :span="6" v-if="!isLinkDisabled">
<el-form-item prop="workPlaceCode" class="query-form-item" label="当前工位:"> <el-form-item prop="workPlaceCode" class="query-form-item" label="当前工位:">
@ -354,8 +292,15 @@ import {
submitOrderWeb, submitOrderWeb,
saveOrderWeb, saveOrderWeb,
deleteByOrderId, deleteByOrderId,
enterCodeWeb, submitAllocateBiz, rollbackWaitcheck, submitCodeResult, submitCheckResult, delmitBiz, enterCodeWeb,
batchVailCode, batchAddCode, batchAddCodeByOrderFinish, upProcessing, getProcessingOrder submitAllocateBiz,
rollbackWaitcheck,
submitCodeResult,
submitCheckResult,
batchVailCode,
batchAddCode,
batchAddCodeByOrderFinish,
upProcessing
} from '@/api/inout/order' } from '@/api/inout/order'
import {filterSubAll, findByFrom, findInvByUser} from '@/api/system/invSubWarehouse' import {filterSubAll, findByFrom, findInvByUser} from '@/api/system/invSubWarehouse'
import {parseTime} from '@/utils/coTools' import {parseTime} from '@/utils/coTools'
@ -384,6 +329,33 @@ import {getWorkBindBusTypes} from '@/api/basic/workPlace/sysWorkplaceDocuments'
import {filterWorkOptimize} from '@/api/basic/workPlace/sysWorkplaceManage' import {filterWorkOptimize} from '@/api/basic/workPlace/sysWorkplaceManage'
import {getByCode} from "@/api/basic/workPlace/SysWorkplaceQueue"; import {getByCode} from "@/api/basic/workPlace/SysWorkplaceQueue";
//
const SCAN_TIMEOUT = 1000
const ACTION_TYPES = {
BIZ: 'biz',
CODES: 'codes'
}
//
const utils = {
isValidJson(str) {
try {
JSON.parse(str)
return true
} catch (e) {
return false
}
}
}
//
const errorHandler = {
handle(error) {
console.error(error)
this.$message.error(error.message)
}
}
export default { export default {
name: 'ioCreateOrder', name: 'ioCreateOrder',
props: { props: {
@ -417,11 +389,6 @@ export default {
type: Object, type: Object,
required: true required: true
}, },
splitBusType: {//
type: Object,
default: null,
required: true
},
dialogTitle: {// dialogTitle: {//
type: Object, type: Object,
@ -450,8 +417,9 @@ export default {
}, },
data() { data() {
return { return {
queueStatus: null, // 1: 0: queueStatus: null,
busTypeList: [], busTypeList: [],
splitBusType: null,
busQuery: { busQuery: {
busKey: '', busKey: '',
workplaceCode: null, workplaceCode: null,
@ -762,39 +730,11 @@ export default {
this.orderFormData.curSpaceCode = false this.orderFormData.curSpaceCode = false
this.orderFormData.checkPreInSpaceCode = false this.orderFormData.checkPreInSpaceCode = false
this.orderFormData.preCurSpaceCode = false this.orderFormData.preCurSpaceCode = false
this.getBusTypeByInv()
this.findCurSpaceList(row) this.findCurSpaceList(row)
this.orderFormData.workPlaceCode = null this.orderFormData.workPlaceCode = null
this.findCurWorkPlaces() this.findCurWorkPlaces()
}, },
//,
getBusTypeByInv() {
let query = {
code: this.orderFormData.invCode,
editType: 2 //
}
if (this.viewTypeKsck) {
query = {
code: this.orderFormData.invCode,
editType: 2, //
useDyCount: 2 //
}
}
findByInvUser(query)
.then((response) => {
this.busTypeOptions = response.data || []
if (this.splitBusType != null) {
this.orderFormData.action = this.splitBusType
} else if (this.busTypeOptions.length == 1) {
this.orderFormData.action = this.busTypeOptions[0].action
this.actionChange(this.orderFormData.action)
}
})
.catch(() => {
})
},
// //
closeDialogtwo() { closeDialogtwo() {
this.selectorder = false this.selectorder = false
@ -923,85 +863,6 @@ export default {
}) })
}, },
//
actionChange(item) {
this.orderFormData.checkPreInOption = null
if (!this.viewTypeKsck) {
this.orderFormData.checkPreInOrders = null
this.checkPreInArray = []
}
this.curAction = this.getActionItem(item)
if ((this.curAction.checkEnable && this.curAction.checkWebNew != 0) || this.viewType == 1) {
// 1
this.bizShow = true
} else {
this.bizShow = false
}
if (
this.curAction.corpType == 0 ||
this.curAction.corpType == 2 ||
this.curAction.corpType == 4 ||
(this.curAction.corpType == 1 && !this.curAction.genUnit)
) {
//1.
this.orderFormData.fromCorp = null
this.delorderData()
this.findMethod()
} else if (this.curAction.corpType == 3) {
//2.
this.orderFormData.fromInvCode = null
this.findFromInvList()
}
if (this.curAction.scanPreIn && this.curAction.backPreinType == 1 && this.curAction.preInBack) {
this.documentShow = true
} else if (this.curAction.scanPreIn && this.curAction.backPreinType == 2 && this.curAction.preInBack) {
this.preInSpaceShow = true
this.findPreInInvList()
} else {
this.documentShow = false
this.preInSpaceShow = false
}
if (this.curAction.vailPrescribe != null && this.curAction.vailPrescribe) {
this.viewSickVisible = true
} else {
this.viewSickVisible = false
}
if (this.curAction.scanPreIn && this.curAction.spaceOut == 1) {
this.preInSpaceShow = true
this.curSpaceShow = false
this.preSpaceShow = false
this.orderFormData.curSpaceCode = null
this.orderFormData.checkPreInSpaceCode = null
this.orderFormData.preCurSpaceCode = null
this.findPreInSpaceList()
} else if (this.curAction.advancePreIn && this.curAction.spaceOut == 1) {
this.preInSpaceShow = false
this.curSpaceShow = false
this.preSpaceShow = true
this.orderFormData.curSpaceCode = null
this.orderFormData.checkPreInSpaceCode = null
this.orderFormData.preCurSpaceCode = null
this.findPreSpaceList()
} else if (this.curAction.spaceOut == 1) {
this.curSpaceShow = true
this.preInSpaceShow = false
this.preSpaceShow = false
this.orderFormData.curSpaceCode = null
this.orderFormData.checkPreInSpaceCode = null
this.orderFormData.preCurSpaceCode = null
} else {
this.curSpaceShow = false
this.preInSpaceShow = false
this.preSpaceShow = false
this.orderFormData.curSpaceCode = null
this.orderFormData.checkPreInSpaceCode = null
this.orderFormData.preCurSpaceCode = null
}
},
// //
findFromInvList(val) { findFromInvList(val) {
@ -1165,6 +1026,8 @@ export default {
this.$message.warning('请选择单据类型!') this.$message.warning('请选择单据类型!')
return return
} }
console.log(this.curAction)
console.log(this.splitBusType)
if (this.splitBusType != null) { if (this.splitBusType != null) {
this.orderFormData.fromCorp = '72198012799726' this.orderFormData.fromCorp = '72198012799726'
} }
@ -1877,16 +1740,15 @@ export default {
this.codeFormData.code = response.data.code this.codeFormData.code = response.data.code
this.scanCode = '' this.scanCode = ''
this.addCode() this.addCode()
} else { } else {
if (response.code == 502) { if (response.code == 502) {
this.checkSuccess = false this.checkSuccess = false
this.isSuccess = false this.isSuccess = false
this.scanCode = '' // this.scanCode = ''
this.printCodeResult(response.data) this.printCodeResult(response.data)
this.codeFormData.code = response.data.code this.codeFormData.code = response.data.code
this.originCode = this.codeFormData.code this.originCode = this.codeFormData.code
this.originCode = "" // this.originCode = ""
} else if (response.code == 501) { } else if (response.code == 501) {
this.checkSuccess = false this.checkSuccess = false
this.scanCode = '' this.scanCode = ''
@ -2141,8 +2003,10 @@ export default {
if (this.splitType == 'search') { if (this.splitType == 'search') {
} else if (this.splitType == 'out') { } else if (this.splitType == 'out') {
this.orderFormData.action = 'SC72197936495755' this.orderFormData.action = 'SC72197936495755'
this.getBusType();
} else if (this.splitType == 'return') { } else if (this.splitType == 'return') {
this.orderFormData.action = 'SC72249388338364' this.orderFormData.action = 'SC72249388338364'
this.getBusType();
} }
this.orderFormData.fromCorp = '72198012799726' this.orderFormData.fromCorp = '72198012799726'
@ -2160,7 +2024,7 @@ export default {
this.curAction = {} this.curAction = {}
this.refreshCodesPanel() this.refreshCodesPanel()
this.findInvListByUser() this.findInvListByUser()
this.initBusType() // this.initBusType()
this.findFromInvList() this.findFromInvList()
// this.getWorkBindBusTypes(null); // this.getWorkBindBusTypes(null);
} else { } else {
@ -2303,6 +2167,23 @@ export default {
} }
}) })
}, },
getBusType() {
let query = {
action: this.orderFormData.action,
page: 1,
limit: 10
}
getBusTypeList(query)
.then((response) => {
this.busTypes = response.data.list || []
this.splitBusType = this.busTypes[0].busType
console.log('==busTypes==', this.busTypes)
})
.catch(() => {
})
},
handleScanComplete(fullScanData) { handleScanComplete(fullScanData) {
if (this.queueStatus == "1" && !this.orderFormData.workPlaceQueueCode) { if (this.queueStatus == "1" && !this.orderFormData.workPlaceQueueCode) {
if (fullScanData != null && fullScanData[0].includes("DMQ")) { if (fullScanData != null && fullScanData[0].includes("DMQ")) {

@ -45,7 +45,7 @@
</el-row> </el-row>
<div style="border: 1px solid #ebeef5;border-radius: 2px;margin-top: 15px;padding: 15px"> <div style="border: 1px solid #ebeef5;border-radius: 2px;margin-top: 15px;padding: 15px" v-loading="this.loading">
<el-row :gutter="0" style="margin-top: 5px"> <el-row :gutter="0" style="margin-top: 5px">
<el-col :span="20"> <el-col :span="20">
<el-form-item prop="code" :label="scanTip" label-width="80px"> <el-form-item prop="code" :label="scanTip" label-width="80px">
@ -139,6 +139,7 @@
<el-table-column label="药品编码" prop="nameCode"></el-table-column> <el-table-column label="药品编码" prop="nameCode"></el-table-column>
<el-table-column label="药品通用名称" prop="cpmctymc" width="110"></el-table-column> <el-table-column label="药品通用名称" prop="cpmctymc" width="110"></el-table-column>
<el-table-column label="包装规格" prop="ggxh" width="110"></el-table-column> <el-table-column label="包装规格" prop="ggxh" width="110"></el-table-column>
<el-table-column label="扫码数量" prop="scanCount" width="110"></el-table-column>
<el-table-column label="批次号" prop="batchNo"></el-table-column> <el-table-column label="批次号" prop="batchNo"></el-table-column>
<el-table-column label="生产日期" prop="productDate"></el-table-column> <el-table-column label="生产日期" prop="productDate"></el-table-column>
<el-table-column label="失效日期" prop="expireDate"></el-table-column> <el-table-column label="失效日期" prop="expireDate"></el-table-column>
@ -154,6 +155,31 @@
@pagination="getCodeList" @pagination="getCodeList"
></pagination> ></pagination>
</el-tab-pane> </el-tab-pane>
<el-tab-pane>
<span slot="label">单据 {{ orderData.billNo }}-业务详情</span>
<el-table :data="busDataList" style="width: 100%;" highlight-current-row="true" border ref="multipleTable"
>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column label="药品编码" prop="nameCode"></el-table-column>
<el-table-column label="产品通用名称" prop="cpmctymc" width="120"></el-table-column>
<el-table-column label="批准文号" prop="zczbhhzbapzbh"></el-table-column>
<el-table-column label="包装规格" prop="spec" width="80"></el-table-column>
<el-table-column label="单据数量" prop="count" width="80"></el-table-column>
<el-table-column label="批次号" prop="batchNo"></el-table-column>
<el-table-column label="生产日期" prop="productDate"></el-table-column>
<el-table-column label="失效日期" prop="expireDate"></el-table-column>
<el-table-column label="医保编码" prop="ybbm"></el-table-column>
<el-table-column label="生产厂家" prop="manufactory"></el-table-column>
<!--<el-table-column label="扫码数量" prop="scanActCount"></el-table-column>-->
</el-table>
<pagination
v-show="busDataTotal>0"
:total="busDataTotal"
:limit.sync="busQuery.limit"
:page.sync="busQuery.page"
@pagination="getBizDetailList"
></pagination>
</el-tab-pane>
</el-tabs> </el-tabs>
@ -164,7 +190,7 @@
<script> <script>
import { isBlank } from '@/utils/strUtil' import { isBlank } from '@/utils/strUtil'
import { getCodeEndList } from '@/api/collect/IoCollectCodeSelect' import { getCodeEndList } from '@/api/collect/IoCollectCodeSelect'
import { enterCodeBillNo } from '@/api/inout/order' import { enterCodeBillNo, enterCodeWeb } from '@/api/inout/order'
import { autoCodeResult, findByBill, manualCodeDetail, orderDetail } from '@/api/collect/collectOrder' import { autoCodeResult, findByBill, manualCodeDetail, orderDetail } from '@/api/collect/collectOrder'
import { checkCollectOrderManCode, finishCheckOrder } from '@/api/collect/splitCreateOrder' import { checkCollectOrderManCode, finishCheckOrder } from '@/api/collect/splitCreateOrder'
@ -186,6 +212,7 @@ export default {
scanResultType: 'success', scanResultType: 'success',
result: '\n', result: '\n',
errVisible: false, errVisible: false,
loading: false,
successVisible: true, successVisible: true,
errResult: '', errResult: '',
scanCode: '', scanCode: '',
@ -197,6 +224,13 @@ export default {
page: 1, page: 1,
limit: 10 limit: 10
}, },
busQuery: {
billNo: null,
orderIdFk: null,
code: null,
page: 1,
limit: 10
},
filterQuery: { filterQuery: {
code: '', code: '',
billNo: null, billNo: null,
@ -215,13 +249,20 @@ export default {
curRow: null, curRow: null,
codeList: [], codeList: [],
checkCodeList: [] checkCodeList: [],
busDataList:[],
busDataTotal:0,
//
codeCount: 0,
} }
}, },
methods: { methods: {
enterKey() { enterKey() {
// this.result = "\n"
this.errResult = '' this.errResult = ''
// this.errVisible = false
// this.successVisible = true
// //
if (this.orderData.billNo == null) { if (this.orderData.billNo == null) {
this.enterBillNoKey() this.enterBillNoKey()
@ -245,14 +286,82 @@ export default {
return return
} }
} }
// let tQuery = {
code: this.filterQuery.udiCode.trim(),
};
enterCodeWeb(tQuery).then((response) => {
if (response.code === 20000) {
this.$refs.inputRef.focus();
this.$refs.inputRef.select();
this.isSuccess = true;
this.printCodeResult(response.data, response.message)
this.filterQuery.udiCode = response.data.code;
this.scanCode = ""
this.originCode = ""
this.addCode();
} else {
if (response.code == 502) {
this.checkSuccess = false;
this.isSuccess = false;
this.printCodeResult(response.data, response.message)
this.filterQuery.udiCode = response.data.code;
this.originCode = response.data.code;
} else if (response.code == 501) {
this.checkSuccess = false;
this.$message.error(response.message);
this.scanCode = ""
} else if (response.code == 503) {
this.checkSuccess = false;
this.isSuccess = false;
this.printCodeResult(response.data, response.message)
this.filterQuery.udiCode = response.data.code;
this.scanCode = ""
this.$confirm(response.message, "提示", {
type: "warning",
})
.then(() => {
this.filterQuery.udiCode = response.data.code;
this.addCode();
})
.catch(() => {
this.filterQuery.udiCode = response.data.code;
});
} else {
this.scanCode = ""
this.$alert(response.message, "提示", {
confirmButtonText: "确定",
type: "warning",
closeOnClickModal: true,
callback: (action) => {
this.$refs.inputRef.focus();
this.$refs.inputRef.select();
},
});
}
}
this.loading = false;
});
// this.getInputFocus()
},
addCode(){
//
let isIncludes = this.checkCode(this.filterQuery.udiCode)
if (!isIncludes){
this.filterQuery.orderIdFk = this.orderData.billNo this.filterQuery.orderIdFk = this.orderData.billNo
this.verifyCode(this.filterQuery) this.verifyCode(this.filterQuery)
// this.getInputFocus() }else {
this.scanCode = ""
this.getInputFocus()
this.$message.error("该追溯码已审核")
}
},
checkCode(code){
return this.checkCodeList.includes(code)
}, },
enterBillNoKey(billNo) { enterBillNoKey(billNo) {
// this.checkSuccess = true; this.loading = true;
this.filterQuery.code = this.scanCode this.filterQuery.code = this.scanCode
let tQuery = { let tQuery = {
viewType: 'tagCode', viewType: 'tagCode',
@ -272,6 +381,7 @@ export default {
this.$refs.inputRef.select() this.$refs.inputRef.select()
this.scanCode = '' this.scanCode = ''
this.getCodeList() this.getCodeList()
this.getBizDetailList()
}else { }else {
this.$refs.inputRef.focus() this.$refs.inputRef.focus()
this.$refs.inputRef.select() this.$refs.inputRef.select()
@ -302,21 +412,19 @@ export default {
}) })
}, },
getBizDetailList() { getBizDetailList() {
let preQuery = {}
if (this.filterQuery == null) {
return
}
if (this.filterQuery != null) {
preQuery = {
orderIdFk: this.filterQuery.billNo if (this.orderData != null) {
} // this.codeQuery.page = 1
this.busQuery.orderIdFk = this.orderData.billNo
// this.codeQuery.bizIdFk = this.bizId
} }
orderDetail(preQuery).then(res => { orderDetail(this.busQuery).then(res => {
if (res.code != 20000) { if (res.code != 20000) {
this.$message.error(res.message) this.$message.error(res.message)
return return
} }
this.busDataList = res.data.list
this.busDataTotal = res.data.total
}).catch(() => { }).catch(() => {
this.$message.error('数据加载失败') this.$message.error('数据加载失败')
}) })
@ -332,11 +440,15 @@ export default {
this.checkCodeList.push(code); this.checkCodeList.push(code);
}); });
this.printCodeResultList(res.data) this.printCodeResultList(res.data)
this.codeCount = this.codeCount + query.udiCodeList.length
this.checkCodeEnd()
} else { } else {
// //
this.codeCount = this.codeCount + 1
this.checkCodeList.push(res.data.code) this.checkCodeList.push(res.data.code)
this.verifyFinish(1, res.data, res.message) this.verifyFinish(1, res.data, res.message)
// this.$message.success('') // this.$message.success('')
this.checkCodeEnd()
} }
} else { } else {
if (Array.isArray(res.data)) { if (Array.isArray(res.data)) {
@ -347,6 +459,17 @@ export default {
} }
}) })
}, },
checkCodeEnd(){
if (this.codeCount == this.detailList.length){
this.$confirm("单据追溯码已经全部审核完毕,是否立即完成单据审核?", '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
this.commitCheckOrder()
})
}
},
verifyFinish(val, data, message) { verifyFinish(val, data, message) {
if (val == 1) { if (val == 1) {
this.errVisible = false this.errVisible = false
@ -440,7 +563,7 @@ export default {
} }
// 2. "01" 18 // 2. "01" 18
if (str.startsWith('01') && str.length >= 18) { if (str.startsWith('01') && str.length >= 16) {
return true return true
} }
@ -486,30 +609,39 @@ export default {
this.resultTotal = res.data.total || 0 this.resultTotal = res.data.total || 0
this.$message.error('数据加载失败') this.$message.error('数据加载失败')
}) })
} else {
this.codeQuery.fifoSplit = this.fifoSplit
autoCodeResult(this.codeQuery).then(res => {
this.codeLoading = false
if (res.code != 20000) {
this.$message.error(res.message)
return
}
this.codeDetailList = res.data.list
this.codeTotal = res.data.total || 0
this.codeLoading = false
}).catch(() => {
this.codeLoading = false
this.$message.error('数据加载失败')
})
} }
}, },
batchVailCode(params) { batchVailCode(params) {
// batchVailCode(params).then((res) => { // batchVailCode(params).then((res) => {
// if (res.code === 20000) { // if (res.code === 20000) {
const vailCodeResultResponseList = []
const vailCodeResultResponse = {}
const codeList = []
params.udiCodeList.forEach(code => {
let isIncludes = this.checkCode(code)
if (isIncludes){
vailCodeResultResponse.status = 2;
vailCodeResultResponse.code = code;
vailCodeResultResponse.errMsg = "追溯码已被校验";
vailCodeResultResponseList.push(vailCodeResultResponse);
}else {
codeList.push(code)
}
});
if (vailCodeResultResponseList.length > 0){
this.printCodeResultList(vailCodeResultResponseList)
}
if (codeList.length > 0){
params.udiCodeList = codeList
this.verifyCode(params)
}
this.scanCode = ""
this.$refs.inputRef.focus() this.$refs.inputRef.focus()
this.$refs.inputRef.select() this.$refs.inputRef.select()
this.verifyCode(params)
// } else { // } else {
// this.$message.error(res.message) // this.$message.error(res.message)
// } // }
@ -517,6 +649,16 @@ export default {
}, },
confirmCheckOrder() { confirmCheckOrder() {
// //
if (this.codeCount != this.detailList.length){
this.$confirm('当前单据追溯码未全部审核是否完成此单据?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
this.commitCheckOrder()
}).catch(() => {
})
}else {
this.$confirm('是否确定完成此单据审核?', '提示', { this.$confirm('是否确定完成此单据审核?', '提示', {
confirmButtonText: '确定', confirmButtonText: '确定',
cancelButtonText: '取消', cancelButtonText: '取消',
@ -525,6 +667,8 @@ export default {
this.commitCheckOrder() this.commitCheckOrder()
}).catch(() => { }).catch(() => {
}) })
}
}, },
commitCheckOrder() { commitCheckOrder() {
this.finishOrder() this.finishOrder()
@ -571,10 +715,12 @@ export default {
this.scanResultType = 'success' this.scanResultType = 'success'
this.curRow = null this.curRow = null
this.orderData = {} this.orderData = {}
this.codeCount = 0
this.workplaceId = Number(this.$route.query.workplaceId) this.workplaceId = Number(this.$route.query.workplaceId)
this.codeList = [] this.codeList = []
this.detailList = [] this.detailList = []
this.checkCodeList = [] this.checkCodeList = []
this.busDataList = []
this.result = '\n' this.result = '\n'
this.scanTip = '扫码审核:' this.scanTip = '扫码审核:'
this.placeholder = '请输入单据号进行扫码审核' this.placeholder = '请输入单据号进行扫码审核'
@ -616,6 +762,8 @@ export default {
} }
// this.getResultDetailList() // this.getResultDetailList()
// this.init() // this.init()
this.checkCodeList = []
this.codeCount = 0
}, },
mounted() { mounted() {
this.getInputFocus() this.getInputFocus()

@ -273,7 +273,7 @@
</el-tabs> </el-tabs>
<el-dialog <el-dialog
title="扫码校验" :title="scanTitleMap[scanTitle]"
:visible.sync="codeCheckVisible" :visible.sync="codeCheckVisible"
:close-on-click-modal="false" :close-on-click-modal="false"
:close-on-press-escape="false" :close-on-press-escape="false"
@ -285,6 +285,7 @@
<DialogCheckCode <DialogCheckCode
:orderData="curRow" :orderData="curRow"
:closeCodeCheckDialog="closeCodeCheckDialog" :closeCodeCheckDialog="closeCodeCheckDialog"
:type="scanTitle"
> >
</DialogCheckCode> </DialogCheckCode>
@ -414,6 +415,11 @@ export default {
// //
scanTitle: 1,
scanTitleMap: {
1 : '扫码校验',
2 : '校验详情'
}
} }
}, },
@ -562,6 +568,13 @@ export default {
// //
codeCheckClick(_this,row){ codeCheckClick(_this,row){
_this.scanTitle = 1
_this.curRow = row
_this.codeCheckVisible = true
},
//
codeCheckDetail(_this,row){
_this.scanTitle = 2
_this.curRow = row _this.curRow = row
_this.codeCheckVisible = true _this.codeCheckVisible = true
}, },

@ -1764,7 +1764,6 @@ export default {
if (response.code == 502) { if (response.code == 502) {
this.checkSuccess = false; this.checkSuccess = false;
this.isSuccess = false; this.isSuccess = false;
this.scanCode = ""
this.printCodeResult(response.data) this.printCodeResult(response.data)
this.codeFormData.code = response.data.code; this.codeFormData.code = response.data.code;
this.originCode = this.codeFormData.code; this.originCode = this.codeFormData.code;

@ -1254,7 +1254,7 @@ export default {
}, },
// //
getOrderDetails() { getOrderDetails() {
this.codeQuery.page = 1; // this.codeQuery.page = 1;
//this.resultQuery.page = 1; //this.resultQuery.page = 1;
this.getCodeDetailList(); this.getCodeDetailList();

@ -155,100 +155,6 @@
</el-card> </el-card>
</el-form> </el-form>
<el-tabs type="border-card" style="margin: 15px">
<!--单据业务详情-->
<el-tab-pane>
<span slot="label">单据 {{ input.billNo }}-单据详情</span>
<el-table
v-loading="bizDetailLoading"
:data="codeDetailList"
style="width: 100%"
border
@current-change="BizDetailInv"
@selection-change="handleSelectionUdiChange"
row-key="id"
highlight-current-row
>
<el-table-column type="selection" width="55"></el-table-column>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column
label="发票代码"
prop="invoiceCodes"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="药品名称"
prop="coName"
width="150"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="包装规格"
width="150"
prop="spec"
></el-table-column>
<el-table-column
label="批次号"
width="100"
prop="batchNo"
></el-table-column>
<el-table-column
label="数量"
prop="count"
width="100"
></el-table-column>
<el-table-column
label="扫码数量"
prop="reCount"
width="100"
></el-table-column>
<el-table-column
label="价格"
prop="price"
width="100"
></el-table-column>
<el-table-column
label="金额"
prop="amount"
width="100"
></el-table-column>
<el-table-column
label="生产日期"
prop="productDate"
width="100"
></el-table-column>
<el-table-column
label="失效日期"
prop="expireDate"
width="100"
></el-table-column>
<el-table-column width="100" label="计量单位" prop="measname">
</el-table-column>
<el-table-column
label="生产企业"
prop="manufacturer"
width="160"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="批准文号"
width="160"
prop="certCode"
show-overflow-tooltip
></el-table-column>
</el-table>
<pagination
v-show="codeTotal > 0"
:total="codeTotal"
:page.sync="codeQuery.page"
:limit.sync="codeQuery.limit"
@pagination="getCodeDetailLists"
/>
</el-tab-pane>
</el-tabs>
<el-image-viewer <el-image-viewer
v-if="imgViewerVisible" v-if="imgViewerVisible"
@ -308,7 +214,7 @@ export default {
return { return {
check: false, check: false,
idList: [], idList: [],
invoiceRow: [], // invoiceRow: [],
statusCode: null, statusCode: null,
choiceFile: "选取文件", choiceFile: "选取文件",
fileList: [], fileList: [],
@ -485,10 +391,10 @@ export default {
components: {AcceptOrder, DialogInvoice, InvoiceRegister, ElImageViewer}, components: {AcceptOrder, DialogInvoice, InvoiceRegister, ElImageViewer},
methods: { methods: {
onSubmit() { onSubmit() {
if (this.invoiceRow == null || this.invoiceRow.length == 0) { // if (this.invoiceRow == null || this.invoiceRow.length == 0) {
this.$message.error("请选择要登记的物资! "); // this.$message.error("! ");
return false; // return false;
} // }
if (this.$isBlank(this.inputQuery.invoiceEncode)) { if (this.$isBlank(this.inputQuery.invoiceEncode)) {
this.$message.error("发票编码不能为空!"); this.$message.error("发票编码不能为空!");
return; return;

@ -437,11 +437,13 @@
:close-on-click-modal="false" :close-on-click-modal="false"
:close-on-press-escape="false" :close-on-press-escape="false"
v-if="checkInvoice" v-if="checkInvoice"
@close="closecheckInvoice"
> >
<checkInvoice <checkInvoice
:closeDialog="closecheckInvoice" :closeDialog="closecheckInvoice"
:input="inputInv" :input="inputInv"
:getOrderDetails="getOrderDetails" :getOrderDetails="getOrderDetails"
:invoiceRow="detaillist"
></checkInvoice> ></checkInvoice>
</el-dialog> </el-dialog>
@ -708,6 +710,7 @@ export default {
acceptQuery: null, acceptQuery: null,
acceptOrderVisible: false, acceptOrderVisible: false,
subRow: null, subRow: null,
detaillist:[],
}; };
}, },
components: {AcceptOrder, DialogInvoice, InvoiceRegister, ElImageViewer, InvoiceRegistrationDetermine, checkInvoice}, components: {AcceptOrder, DialogInvoice, InvoiceRegister, ElImageViewer, InvoiceRegistrationDetermine, checkInvoice},
@ -737,11 +740,13 @@ export default {
this.getList(); this.getList();
}, },
InvoiceRegister1(_this,row) { InvoiceRegister1(_this,row) {
_this.savebillno = row.billNo _this.savebillno = _this.currentRow.billNo
_this.inputInv = row; _this.inputInv = row;
_this.detaillist.push(row)
_this.checkInvoice = true; _this.checkInvoice = true;
}, },
closecheckInvoice() { closecheckInvoice() {
this.detaillist = []
this.checkInvoice = false; this.checkInvoice = false;
this.getList(); this.getList();
this.currentRow.billNo = this.savebillno; this.currentRow.billNo = this.savebillno;
@ -889,7 +894,7 @@ export default {
}, },
// //
getOrderDetails() { getOrderDetails() {
this.codeQuery.page = 1; // this.codeQuery.page = 1;
//this.resultQuery.page = 1; //this.resultQuery.page = 1;
this.getCodeDetailList(); this.getCodeDetailList();

Loading…
Cancel
Save