feat: 术士套包、定数包功能开发

dev_ksck2.0
chenhc 12 months ago
parent 9cbb373439
commit 70e98093c5

@ -75,5 +75,12 @@ export function updateCodeProduct(query) {
}
//业务明细添加术士套包
export function addWarlockBagProduct(query) {
return axios({
url: "/udiwms/inout/order/addWarlockBagProduct",
method: "post",
data: query
});
}

@ -104,7 +104,7 @@
title="选入定数包"
:visible.sync="orderMutiVisible"
:before-close="close"
width="60%"
width="90%"
append-to-body
v-if="orderMutiVisible"
@close='closedeStinyDialog'

@ -3,17 +3,17 @@
<el-card>
<el-form :model="filterQuery" label-width="100px" size="mini">
<el-row>
<el-col :span="4">
<el-col :span="8">
<el-form-item label="模板名称:" class="query-form-item">
<el-input v-model="filterQuery.name" placeholder="请输入模板名称"></el-input>
</el-form-item>
</el-col>
<el-col :span="4">
<el-col :span="8">
<el-form-item label="模板编码:" class="query-form-item">
<el-input v-model="filterQuery.code" placeholder="请输入模板编码"></el-input>
</el-form-item>
</el-col>
<el-col :span="8">
<el-col :span="8" >
<el-form-item>
<el-button-group>
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
@ -25,10 +25,10 @@
</el-row>
</el-form>
<el-table :data="list" border highlight-current-row style="width: 100%" >
<el-table :data="list" border highlight-current-row @current-change="handleChange" style="width: 100%" >
<el-table-column width="50">
<template slot-scope="scope">
<el-radio v-model="radio" :label="scope.row.id" @change.native.stop="showRow(scope.row.id)"><span></span></el-radio>
<el-radio v-model="radio" :label="scope.row.id" ><span></span></el-radio>
</template>
</el-table-column>
<el-table-column label="序号" type="index"></el-table-column>
@ -40,7 +40,7 @@
{{ scope.row.price == "null" ? "0.00":scope.row.price }}
</template>
</el-table-column>
<el-table-column label="备注" prop="remark" ></el-table-column>
<!-- <el-table-column label="备注" prop="remark" ></el-table-column>-->
<el-table-column label="创建人" prop="createByName" ></el-table-column>
<el-table-column label="创建时间" prop="createTime" ></el-table-column>
</el-table>
@ -88,6 +88,7 @@ export default {
total: 0,
destinyId:null,
radio:null,
currentRow:null,
list: [],
};
},
@ -135,11 +136,16 @@ export default {
this.destinyId= row
},
combine(){
if(isBlank(this.destinyId)){
return this.$message.error("请先选择定数包!");
if (this.currentRow == null) {
this.$message.error('未选择定数包');
return;
}
this.closeDialog(this.destinyId);
}
this.closeDialog(this.currentRow.id);
},
handleChange(val) {
this.radio = val.id;
this.currentRow = val;
},
}
,
mounted() {

@ -0,0 +1,291 @@
<template>
<div>
<el-card>
<el-form :model="filterQuery" label-width="100px" size="mini">
<el-row>
<el-col :span="8">
<el-form-item label="套包名称:" class="query-form-item">
<el-input v-model="filterQuery.name" placeholder="请输入套包名称"></el-input>
</el-form-item>
</el-col>
<el-col :span="8">
<el-form-item label="套包编码:" class="query-form-item">
<el-input v-model="filterQuery.code" placeholder="请输入套包编码"></el-input>
</el-form-item>
</el-col>
<el-col :span="8" >
<el-form-item>
<el-button-group>
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary" icon="search" @click="onSubmit"></el-button>
<el-button type="primary" icon="search" @click="combine"></el-button>
</el-button-group>
</el-form-item>
</el-col>
</el-row>
</el-form>
<el-table :data="list" border highlight-current-row @current-change="handleChange" style="width: 100%" >
<el-table-column width="50">
<template slot-scope="scope">
<el-radio v-model="radio" :label="scope.row.id"><span></span></el-radio>
</template>
</el-table-column>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column label="套包名称" prop="name" ></el-table-column>
<el-table-column label="套包编码" prop="code" ></el-table-column>
<el-table-column label="规格" prop="ggxh" ></el-table-column>
<el-table-column label="价格" prop="price" >
<template slot-scope="scope">
{{ scope.row.price == "null" ? "0.00":scope.row.price }}
</template>
</el-table-column>
<!-- <el-table-column label="备注" prop="remark" ></el-table-column>-->
<el-table-column label="创建人" prop="createByName" ></el-table-column>
<el-table-column label="创建时间" prop="createTime" ></el-table-column>
<el-table-column label="操作" width="160">
<template slot-scope="scope">
<el-button
type="text"
size="small"
@click.native.stop="handleDetailClick(scope.row)"
>详情
</el-button
>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:limit.sync="filterQuery.limit"
:page.sync="filterQuery.page"
@pagination="handleCurrentChange"
></pagination>
</el-card>
<el-dialog
:title= " '组套名称:' + this.currentRow.name + ' 组套编码:' + this.currentRow.code"
:visible.sync="warlockBagDetailVisible"
:before-close="close"
width="90%"
append-to-body
v-if="warlockBagDetailVisible"
@close='closedeStinyDialog'
:close-on-click-modal="false"
:close-on-press-escape="false"
>
<el-card>
<el-table v-loading="loading" :data="delectList" border highlight-current-row style="width: 100%">
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column label="产品DI" prop="nameCode" width="200"></el-table-column>
<el-table-column label="产品编码" prop="thirdId" width="200"></el-table-column>
<el-table-column label="产品名称" prop="cpmctymc" width="200"></el-table-column>
<el-table-column label="规格型号" prop="ggxh"></el-table-column>
<el-table-column label="计量单位" prop="measname"></el-table-column>
<el-table-column label="数量" prop="count">
<template slot-scope="scope">
<el-input size="small" v-model="scope.row.count"
placeholder="请输入数量" style="width: 100%"
type='number'
:disabled="scope.row.index !== selectedIndex"
oninput="value=value.replace(/[^\d]/g,'')"></el-input>
</template>
</el-table-column>
<el-table-column label="价格" prop="price"></el-table-column>
<el-table-column label="生产企业" prop="ylqxzcrbarmc"></el-table-column>
<el-table-column label="注册/备案号" prop="zczbhhzbapzbh"></el-table-column>
<!-- <el-table-column label="操作" width="220" >-->
<!-- <template slot-scope="scope">-->
<!-- <el-button type="text" size="small" :disabled="scope.row.index === selectedIndex"-->
<!-- @click.native.stop="rowChange(scope.row)">编辑-->
<!-- </el-button>-->
<!-- <el-button type="text" size="small" :disabled="scope.row.index !== selectedIndex" @click.stop="true"-->
<!-- @click.native="tableCountChange(scope.row)">保存-->
<!-- </el-button>-->
<!-- <el-button type="text" size="small" @click.native.stop="delectModifyClick(scope.row)">移除</el-button>-->
<!-- </template>-->
<!-- </el-table-column>-->
</el-table>
<pagination
v-show="delectTotal>0"
:total="delectTotal"
:limit.sync="delectQuery.limit"
:page.sync="delectQuery.page"
@pagination="handleCurrentDelectChange"
></pagination>
</el-card>
</el-dialog>
</div>
</template>
<script>
import {
addModeldestiny,
delectModeldestiny,
filterDestinyDelect,
getBasicDestinyfilter
} from "@/api/basic/basicDestinyRel";
import destinyModelEdit from "@/views/basic/destiny/destinyModelEdit";
import destinyModelSelectProduct from "@/views/basic/destiny/destinyModelSelectProduct";
import {isBlank} from "@/utils/strUtil";
import {
addWarlockBagProduct
} from "@/api/inout/orderDetailCode";
export default {
props: {
data: {
type: Object,
required: true,
},
closeDialog: {
type: Function,
required: true,
},
// filterType: {
// type: Function,
// required: true,
// },
},
data() {
return {
filterQuery: {
name: "",
code: "",
type: 2,
status: 3,
page: 1,
limit: 20
},
delectQuery: {
id: null,
status: null,
page: 1,
limit: 20
},
delectList: [],
delectTotal: 0,
total: 0,
destinyId:null,
radio:null,
currentRow:null,
warlockBagDetailVisible: false,
list: [],
};
},
methods: {
handleCurrentDelectChange(val) {
this.delectQuery.page = val.page;
this.filterDestinyDelect()
},
handleDetailClick(row) {
this.currentRow = row;
this.delectQuery.id = row.id
this.delectQuery.status = row.status
this.filterDestinyDelect()
this.warlockBagDetailVisible = true;
},
filterDestinyDelect() {
filterDestinyDelect(this.delectQuery)
.then((response) => {
this.loading = false;
if (response.code === 20000) {
this.delectList = response.data.list || [];
this.delectTotal = response.data.total || 0;
} else {
this.$message.error(response.message);
this.delectList = [];
this.delectTotal = 0;
}
})
.catch(() => {
this.loading = false;
this.delectList = [];
this.delectTotal = 0;
});
},
onReset() {
this.$router.push({
path: ""
});
this.filterQuery = {
name: "",
code: "",
type: 2,
status: 3,
page: 1,
limit: 20
};
this.getList();
this.destinyId=null
},
onSubmit() {
this.$router.push({
path: "",
});
this.filterQuery.page = 1;
this.getList();
},
getList() {
this.loading = true;
getBasicDestinyfilter(this.filterQuery).then(response => {
this.loading = false;
this.list = response.data.list || [];
this.total = response.data.total || 0;
}).catch(() => {
this.loading = false;
this.list = [];
this.total = 0;
this.roles = [];
});
},
handleCurrentChange(val) {
this.filterQuery.page = val.page;
this.getList();
},
showRow (row) {
this.destinyId= row
},
combine(){
if (this.currentRow == null) {
this.$message.error('未选择术士套包');
return;
}
let CQuery = {
id: this.currentRow.id,
orderEntity: this.data
}
console.log(CQuery)
addWarlockBagProduct(CQuery).then((response) => {
this.loading = false;
if (response.code === 20000) {
this.closeDialog(response.data);
} else {
this.$message.error(response.message);
}
}).catch(() => {
this.loading = false;
this.dataList = [];
this.pageTotal = 0;
});
},
handleChange(val) {
this.radio = val.id;
this.currentRow = val;
},
}
,
mounted() {
}
,
created() {
this.getList();
}
}
;
</script>

@ -3,14 +3,20 @@
<el-row>
<div style="margin: 0px 60px 10px auto; height: 35px; float: right;">
<el-button-group>
<el-button
type="primary"
ref="mainTable"
@click.native.stop="selectWarlockBagFunction()"
:loading="loading"
>术士套包录入
</el-button>
<el-button
type="primary"
ref="mainTable"
@click.native.stop="selectProductFunction()"
:loading="loading"
>物资录入
</el-button
>
</el-button>
</el-button-group>
</div>
@ -115,6 +121,21 @@
</el-table-column>
</el-table>
<el-dialog
title="业务详情-术士套包录入"
:visible.sync="selectWarlockBagVisible"
:close-on-click-modal="false"
:close-on-press-escape="false"
width="85%"
v-if="selectWarlockBagVisible"
:append-to-body='true'
>
<selectWarlockBag
:closeDialog="closeDialog"
:data="thisData"
></selectWarlockBag>
</el-dialog>
<el-dialog
title="业务详情-物资录入"
:visible.sync="selectProductVisible"
@ -195,6 +216,7 @@ import {addBizProduct, getDetailBizs, updateBizProduct, delBizProduct} from "@/a
import {updateBizBind} from "@/api/inout/order";
import selectRlDialog from "@/views/inout/DialogSelectRl";
import DialogSelectUnit from "@/views/inout/DialogSelectUnit";
import selectWarlockBag from "@/views/basic/destiny/warlockBagModel";
export default {
name: "IoCreateOrderBizDetail",
@ -235,6 +257,7 @@ export default {
iCount: 0,
selectProductVisible: false,
selectInvProductVisible: false,
selectWarlockBagVisible: false,
thisData: {},
selectedIndex: null,
invQueryData: {
@ -248,7 +271,7 @@ export default {
components: {
selectRlDialog, DialogSelectUnit,
stockOrderNewSelectProduct,
dialogInvProduct,
dialogInvProduct,selectWarlockBag
},
methods: {
getOrderDetails() {
@ -337,6 +360,35 @@ export default {
},
selectWarlockBagFunction(){
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.selectWarlockBagVisible = true;
} else if (this.curBustype.corpType == 2) { //
this.selectWarlockBagVisible = true;
} else if (this.curBustype.corpType === 1) {//
this.invQueryData.invCode = this.idQuery.invCode;
this.selectWarlockBagVisible = true;
} else if (this.curBustype.corpType = 4) {
this.selectWarlockBagVisible = true;
}
},
saveChange(row) {
if (row.batchNo == '') {
row.batchNo = null;

Loading…
Cancel
Save