|
|
@ -154,27 +154,31 @@
|
|
|
|
></stockOrderNewSelectProduct>
|
|
|
|
></stockOrderNewSelectProduct>
|
|
|
|
</el-dialog>
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <el-dialog-->
|
|
|
|
|
|
|
|
<!-- title="库存产品录入"-->
|
|
|
|
<el-dialog
|
|
|
|
<!-- :visible.sync="selectInvProductVisible"-->
|
|
|
|
title="库存产品录入"
|
|
|
|
<!-- :close-on-click-modal="false"-->
|
|
|
|
:visible.sync="selectInvProductVisible"
|
|
|
|
<!-- :close-on-press-escape="false"-->
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
<!-- width="85%"-->
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
<!-- v-if="selectInvProductVisible"-->
|
|
|
|
width="85%"
|
|
|
|
<!-- :append-to-body='true'-->
|
|
|
|
v-if="selectInvProductVisible"
|
|
|
|
<!-- >-->
|
|
|
|
:append-to-body='true'
|
|
|
|
<!-- <dialogInvProduct-->
|
|
|
|
>
|
|
|
|
<!-- :closeDialog="closeDialogC2"-->
|
|
|
|
<dialogInvProduct
|
|
|
|
<!-- :data="thisData"-->
|
|
|
|
:closeDialog="closeDialogC2"
|
|
|
|
<!-- :invQueryData="invQueryData"-->
|
|
|
|
:invQueryData="invQueryData"
|
|
|
|
<!-- ></dialogInvProduct>-->
|
|
|
|
:orderQuery="thisData"
|
|
|
|
<!-- </el-dialog>-->
|
|
|
|
:type="2"
|
|
|
|
|
|
|
|
></dialogInvProduct>
|
|
|
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
<script>
|
|
|
|
import stockOrderNewSelectProduct from "./DialogSelectProduct";
|
|
|
|
import stockOrderNewSelectProduct from "./DialogSelectProduct";
|
|
|
|
// import dialogInvProduct from "../inventory/DialogInvProduct"
|
|
|
|
import dialogInvProduct from "./DialogSelectInvProduct";
|
|
|
|
import {addBizProduct, getDetailBizs, updateBizProduct, delBizProduct} from "@/api/inout/orderDetailCode";
|
|
|
|
import {addBizProduct, getDetailBizs, updateBizProduct, delBizProduct} from "@/api/inout/orderDetailCode";
|
|
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
export default {
|
|
|
@ -196,6 +200,10 @@ export default {
|
|
|
|
type: Object,
|
|
|
|
type: Object,
|
|
|
|
required: true,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
curBustype: {
|
|
|
|
|
|
|
|
type: Object,
|
|
|
|
|
|
|
|
required: true,
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
data() {
|
|
|
@ -212,13 +220,17 @@ export default {
|
|
|
|
total: 0,
|
|
|
|
total: 0,
|
|
|
|
iCount: 0,
|
|
|
|
iCount: 0,
|
|
|
|
selectProductVisible: false,
|
|
|
|
selectProductVisible: false,
|
|
|
|
|
|
|
|
selectInvProductVisible: false,
|
|
|
|
thisData: {},
|
|
|
|
thisData: {},
|
|
|
|
selectedIndex: null,
|
|
|
|
selectedIndex: null,
|
|
|
|
|
|
|
|
invQueryData: {
|
|
|
|
|
|
|
|
invCode: null,
|
|
|
|
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
},
|
|
|
|
},
|
|
|
|
components: {
|
|
|
|
components: {
|
|
|
|
stockOrderNewSelectProduct,
|
|
|
|
stockOrderNewSelectProduct,
|
|
|
|
// dialogInvProduct,
|
|
|
|
dialogInvProduct,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
methods: {
|
|
|
|
getOrderDetails() {
|
|
|
|
getOrderDetails() {
|
|
|
@ -250,6 +262,12 @@ export default {
|
|
|
|
this.getOrderDetails();
|
|
|
|
this.getOrderDetails();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
closeDialogC2(rData) {
|
|
|
|
|
|
|
|
this.idQuery = rData;
|
|
|
|
|
|
|
|
this.selectInvProductVisible = false;
|
|
|
|
|
|
|
|
this.getOrderDetails();
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
rowStyle({row, rowIndex}) {
|
|
|
|
rowStyle({row, rowIndex}) {
|
|
|
|
if (this.viewType == 1)
|
|
|
|
if (this.viewType == 1)
|
|
|
|
return null;
|
|
|
|
return null;
|
|
|
@ -265,8 +283,28 @@ export default {
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
selectProductFunction() {
|
|
|
|
selectProductFunction() {
|
|
|
|
this.selectProductVisible = true;
|
|
|
|
|
|
|
|
this.thisData = this.idQuery;
|
|
|
|
this.thisData = this.idQuery;
|
|
|
|
|
|
|
|
if (this.$isBlank(this.idQuery.action)) {
|
|
|
|
|
|
|
|
this.$message.error("单据类型不能为空!")
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.$isBlank(this.idQuery.invCode)) {
|
|
|
|
|
|
|
|
this.$message.error("当前仓库不能为空!");
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (this.$isBlank(this.idQuery.fromCorp) && this.$isBlank(this.idQuery.fromInvCode)) {
|
|
|
|
|
|
|
|
this.$message.error("往来信息不能为空!");
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.curBustype.corpType == 3) {//内部科室
|
|
|
|
|
|
|
|
this.invQueryData.invCode = this.idQuery.invCode;
|
|
|
|
|
|
|
|
this.selectInvProductVisible = true;
|
|
|
|
|
|
|
|
} else if (this.curBustype.corpType == 2)//供应商信息
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
this.selectProductVisible = true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
saveChange(row) {
|
|
|
|
saveChange(row) {
|
|
|
|