Commit 83dfe960 by LJM

取消发货

parent 6f937fdc
...@@ -124,7 +124,6 @@ ...@@ -124,7 +124,6 @@
source_type: this.formInline.source_type, source_type: this.formInline.source_type,
}).then(res => { }).then(res => {
if (res.code === 0) { if (res.code === 0) {
this.tableData = res.data.list || []; this.tableData = res.data.list || [];
this.total = Number(res.data.total) || 0; this.total = Number(res.data.total) || 0;
} else { } else {
......
...@@ -43,37 +43,21 @@ ...@@ -43,37 +43,21 @@
<el-table-column prop="create_name" label="创建人" min-width="100"></el-table-column> <el-table-column prop="create_name" label="创建人" min-width="100"></el-table-column>
<el-table-column prop="purchase_name" label="订单人员" min-width="100"></el-table-column> <el-table-column prop="purchase_name" label="订单人员" min-width="100"></el-table-column>
</el-table> </el-table>
<el-pagination layout="total, sizes, prev, pager, next, jumper" :page-sizes="[10, 20, 50, 100, 200]" <el-pagination layout="total, sizes, prev, pager, next, jumper" :page-sizes="[10, 20, 50, 100, 200]" :total="total" @size-change="handleSizeChange" @current-change="handleCurrentChange" :current-page="page"></el-pagination>
:total="total" @size-change="handleSizeChange" @current-change="handleCurrentChange" :current-page="page">
</el-pagination>
</div> </div>
</div> </div>
<Menu /> <Menu/>
</section> </section>
</template> </template>
<script> <script>
import Vue from 'vue'; import Vue from 'vue';
import Menu from "@/components/menu.vue"; import Menu from "@/components/menu.vue";
import { import {Autocomplete, Button, Dialog, Form, FormItem, Input, Message, Option, Pagination, Select, Table, TableColumn} from 'element-ui'
Form,
FormItem,
Select,
Option,
Input,
Button,
Table,
TableColumn,
Message,
Dialog,
Pagination,
Autocomplete
} from 'element-ui'
Vue.prototype.$message = Message; Vue.prototype.$message = Message;
Vue.use(Button).use(Form).use(Select).use(Option).use(Input).use(FormItem).use(Dialog).use(Pagination); Vue.use(Button).use(Form).use(Select).use(Option).use(Input).use(FormItem).use(Dialog).use(Pagination);
Vue.use(TableColumn).use(Table).use(Autocomplete); Vue.use(TableColumn).use(Table).use(Autocomplete);
export default { export default {
name: "orderTrackInvoice", name: "orderTrackInvoice",
data() { data() {
return { return {
...@@ -103,10 +87,8 @@ ...@@ -103,10 +87,8 @@
brand_name: this.formInline.brand_name, brand_name: this.formInline.brand_name,
goods_name: this.formInline.goods_name, goods_name: this.formInline.goods_name,
status: this.formInline.status, status: this.formInline.status,
}).then(res => { }).then(res => {
if (res.code === 0) { if (res.code === 0) {
this.tableData = res.data.list || []; this.tableData = res.data.list || [];
this.total = Number(res.data.total) || 0; this.total = Number(res.data.total) || 0;
} else { } else {
...@@ -134,41 +116,60 @@ ...@@ -134,41 +116,60 @@
}, },
//取消发货 //取消发货
cancelSend() { cancelSend() {
if (this.multipleSelection.length == 0) { if (this.multipleSelection.length <= 0) {
this.$message({
message: "请选择一条数据进行操作",
type: 'warning'
});
return
}
if (this.multipleSelection.length != 1) {
this.$message({ this.$message({
message: "只能单条操作", message: "请勾选数据进行操作",
type: 'warning' type: 'warning'
}); });
return return
} }
var obj_ = {
"supplier_id": this.multipleSelection[0].supplier_id, //供应商id let stock_in_ids = [];
"cancelStockInList": [{ stock_in_ids = this.multipleSelection.map(obj => {
"stock_in_id": this.multipleSelection[0].stock_in_id, //发货单id return obj.stock_in_id;
"purchase_uid": this.multipleSelection[0].purchase_uid //采购员id })
}]
} let source_arr = [];
this.$http('post', "/open/yunXin/cancelSupDelivery", obj_).then(res => { let status_arr = [];
source_arr = this.multipleSelection.map(obj => {
return obj.source;
})
status_arr = this.multipleSelection.map(obj => {
return obj.status;
})
let source = source_arr.every(ele => ele === 2)
if (source) {
let status = status_arr.every(ele => ele === 2)
if (status) {
this.$http('POST', "/api/purchase/cancelSupDelivery", {stock_in_ids: stock_in_ids.join(',')}).then(res => {
if (res.code == 0) { if (res.code == 0) {
this.$message({ this.$message({
message: "操作成功", message: "操作成功",
type: 'success' type: 'success',
}); duration: 2000,
onClose() {
this.getData(); this.getData();
}
});
} else { } else {
this.$message({ this.$message({
message: res.msg, message: '请选择作废待入库状态',
type: 'error' type: 'error'
}); });
} }
}) })
} else {
this.$message({
message: '请选择云芯系统的发货单',
type: 'warning'
});
}
} else {
this.$message({
message: '请选择云芯系统的发货单',
type: 'warning'
});
}
}, },
//型号 //型号
querySearchAsync(queryString, cb) { querySearchAsync(queryString, cb) {
...@@ -216,8 +217,8 @@ ...@@ -216,8 +217,8 @@
components: { components: {
Menu Menu
} }
}; };
</script> </script>
<style scoped> <style scoped>
@import "../../assets/css/goods/goods.min.css"; @import "../../assets/css/goods/goods.min.css";
</style> </style>
\ No newline at end of file
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
</div> </div>
</el-form> </el-form>
<div class="data-box th-all"> <div class="data-box th-all">
<el-table :data="purOrderDetail.purchase_item_list" border max-height="600" :row-class-name="tableRowClassName" @selection-change="handleSelectionChange" @select="onRowClick"> <el-table :data="purOrderDetail.purchase_item_list" border max-height="600" @selection-change="handleSelectionChange">
<el-table-column fixed type="selection" width="37"></el-table-column> <el-table-column fixed type="selection" width="37"></el-table-column>
<el-table-column prop="goods_name" label="型号" min-width="15%"></el-table-column> <el-table-column prop="goods_name" label="型号" min-width="15%"></el-table-column>
<el-table-column prop="brand_name" label="品牌" min-width="15%"></el-table-column> <el-table-column prop="brand_name" label="品牌" min-width="15%"></el-table-column>
...@@ -78,7 +78,6 @@ export default { ...@@ -78,7 +78,6 @@ export default {
purOrderDetail: {},//基本信息,发货信息 purOrderDetail: {},//基本信息,发货信息
purchase_uid: '', purchase_uid: '',
multipleSelection: [],//选中的数据 multipleSelection: [],//选中的数据
currentRowIndex: [],//选中数据的索引
rules: { rules: {
shipping_id: [{ shipping_id: [{
required: true, required: true,
...@@ -141,15 +140,6 @@ export default { ...@@ -141,15 +140,6 @@ export default {
handleSelectionChange(val) { handleSelectionChange(val) {
this.multipleSelection = val; this.multipleSelection = val;
}, },
tableRowClassName({row, rowIndex}) {
row.row_index = rowIndex
},
onRowClick(row) {
this.currentRowIndex = []
for (var i = 0; i < row.length; i++) {
this.currentRowIndex.push(row[i].row_index)
}
},
submit(formName) { submit(formName) {
this.$refs[formName].validate((valid) => { this.$refs[formName].validate((valid) => {
if (valid) { if (valid) {
...@@ -161,10 +151,18 @@ export default { ...@@ -161,10 +151,18 @@ export default {
return false; return false;
} }
this.formParam.itemlist = JSON.stringify(this.itemlist); let filterArr = [];
for (let i = 0; i < this.multipleSelection.length; i++) {
if (this.multipleSelection[i].purchase_item_id == this.itemlist[i].purchase_item_id) {
filterArr.push(this.itemlist[i])
}
}
this.formParam.itemlist = filterArr;
this.$http('POST', "/api/purchase/addSupDelivery", this.formParam).then(res => { this.$http('POST', "/api/purchase/addSupDelivery", this.formParam).then(res => {
if (res.code === 0) { if (res.code === 0) {
this.$router.push({
path: "/orderTrackGoods",
})
} else { } else {
this.$message({ this.$message({
message: res.msg, message: res.msg,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment