Merge remote-tracking branch 'origin/dev' into dev

dev
薛宇 2 years ago
commit 6540442dd6

@ -196,7 +196,7 @@
<el-form-item
prop="fromCorp"
label="往来信息:"
v-if="curAction.corpType == 1 && curAction.genUnit && orderQuery.billNo ==''"
v-if="curAction.corpType == 1 && curAction.genUnit "
>
<el-input
v-model="orderFormData.fromCorp"
@ -207,20 +207,20 @@
placeholder="请输入病人住院号"
></el-input>
</el-form-item>
<el-form-item
prop="fromCorp"
label="往来信息:"
v-if="curAction.corpType == 1 && curAction.genUnit && orderQuery.billNo != ''"
>
<el-input
v-model="orderFormData.fromCorpName"
auto-complete="off"
clearable
style="width: 90%"
:disabled="corpOrderIdDisabled"
placeholder="请输入病人住院号"
></el-input>
</el-form-item>
<!-- <el-form-item-->
<!-- prop="fromCorp"-->
<!-- label="往来信息:"-->
<!-- v-if="curAction.corpType == 1 && curAction.genUnit && orderQuery.billNo != ''"-->
<!-- >-->
<!-- <el-input-->
<!-- v-model="orderFormData.fromCorpName"-->
<!-- auto-complete="off"-->
<!-- clearable-->
<!-- style="width: 90%"-->
<!-- :disabled="corpOrderIdDisabled"-->
<!-- placeholder="请输入病人住院号"-->
<!-- ></el-input>-->
<!-- </el-form-item>-->
</el-col>
<el-col :span="11">
<el-form-item prop="remark" label="备注:">

@ -311,7 +311,8 @@ export default {
action: this.formData.action,
fromInvCode: this.formData.fromInvCode,
invCode: this.formData.invCode,
products: products
products: products,
remark: this.formData.remark
};
stockOrderChange(tQuery)
.then((response) => {

@ -531,6 +531,10 @@ export default {
this.$message.warning("请先选择盘点仓库");
return;
}
if (this.codeArray.length === 0) {
this.$message.warning("请先录入产品");
return;
}
//
let params = {
invCode: this.formData.invCode,

@ -62,34 +62,41 @@
</el-table-column>
<el-table-column label="操作">
<template slot-scope="scope">
<el-button
type="text"
size="small"
@click.native.stop="printOrder(scope.row)"
>打印
</el-button
>
<el-button
type="text"
size="small"
@click.native.stop="editOrder(scope.row)"
>编辑
</el-button
>
<el-button
type="text"
size="small"
@click.native.stop="submitAudit(scope.row)"
>提交审核
</el-button
>
<el-button
type="text"
size="small"
@click.native.stop="deleteDialog(scope.row.id)"
>删除
</el-button
>
<el-row>
<el-button
type="text"
size="small"
@click.native.stop="printOrder(scope.row)"
>打印
</el-button
>
</el-row>
<el-row>
<el-button
type="text"
size="small"
@click.native.stop="editOrder(scope.row)"
>编辑
</el-button
>
</el-row>
<el-row>
<el-button
type="text"
size="small"
@click.native.stop="submitAudit(scope.row)"
>提交审核
</el-button
>
</el-row>
<el-row>
<el-button
type="text"
size="small"
@click.native.stop="deleteDialog(scope.row.id)"
>删除
</el-button>
</el-row>
</template>
</el-table-column>
</el-table>

Loading…
Cancel
Save