123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365 |
- <template>
- <div class="outOrderTable">
- <el-table
- ref="addrForm"
- :data="tableData"
- border
- :size="'mini'"
- style="width: 100%"
- row-key="key"
- >
- <el-table-column
- show-overflow-tooltip
- prop="orderCode"
- label="出库订单号"
- width="150"
- />
- <el-table-column
- show-overflow-tooltip
- prop="outCode"
- label="出库单号"
- width="150"
- />
- <el-table-column
- show-overflow-tooltip
- prop="apply_name"
- label="申请人名称"
- width="85"
- />
- <el-table-column
- show-overflow-tooltip
- prop="post_name"
- label="物流公司"
- width="110"
- />
- <el-table-column
- show-overflow-tooltip
- prop="post_code"
- label="物流单号"
- width="160"
- />
- <el-table-column
- show-overflow-tooltip
- prop="post_fee"
- label="预计物流费"
- width="100"
- />
- <el-table-column
- show-overflow-tooltip
- prop="status"
- label="状态"
- width="80"
- >
- <template slot-scope="scope">
- <el-tag
- :size="tablebtnSize"
- :type="scope.row.status == '0' ? 'warning' : ''"
- v-text="
- (statusOptions.find((item) => item.id == scope.row.status) || {})
- .label || '--'
- "
- ></el-tag>
- </template>
- </el-table-column>
- <el-table-column
- show-overflow-tooltip
- prop="sendtime"
- label="发货时间"
- min-width="170"
- />
- <el-table-column
- show-overflow-tooltip
- prop="send_num"
- label=" 发货数量"
- width="80"
- />
- <el-table-column
- show-overflow-tooltip
- prop="check_num"
- label="验收数量"
- width="80"
- />
- <el-table-column
- show-overflow-tooltip
- prop="addr_info"
- label="省市区"
- min-width="170"
- />
- <el-table-column
- show-overflow-tooltip
- prop="addr"
- label="收货地址"
- min-width="170"
- />
- <el-table-column
- show-overflow-tooltip
- prop="contact"
- label="联系人"
- width="80"
- />
- <el-table-column
- show-overflow-tooltip
- prop="mobile"
- label="联系电话"
- width="110"
- />
- <el-table-column
- show-overflow-tooltip
- prop="wsm_supplier"
- label="供应商"
- min-width="220"
- />
- <el-table-column
- show-overflow-tooltip
- prop="wsm_supplierNo"
- label="仓库供应商"
- min-width="170"
- />
- <!-- v-if="status === '0' && powers.some((item) => item == '005')" -->
- <el-table-column fixed="right" width="80">
- <template slot="header" slot-scope="scope">
- <span>操作</span>
- <el-tooltip
- class="fr"
- style="margin: 3px 0 0 0"
- effect="dark"
- content="添加"
- placement="top"
- >
- <i
- class="el-icon-circle-plus-outline tb-icon"
- style="color: #63cbe7"
- @click="openHouseModal()"
- ></i>
- <!-- @click="openModal('add', '028')" -->
- <!-- -->
- </el-tooltip>
- </template>
- <template slot-scope="scope">
- <el-tooltip
- effect="dark"
- content="查看"
- v-if="!scope.row.edit"
- placement="top"
- >
- <i
- class="el-icon-view tb-icon"
- @click="openHouseModal(scope.$index)"
- ></i>
- </el-tooltip>
- <el-tooltip
- v-if="sitem.status == '5'"
- class="fr"
- effect="dark"
- content="新建售后申请"
- placement="top"
- >
- <i
- class="el-icon-warning tb-icon"
- @click="openModal('add', scope.row)"
- ></i>
- </el-tooltip>
- </template>
- </el-table-column>
- </el-table>
- <out-order-add-model
- :showModel="modelShowModel"
- :id="modelId"
- :sitem="modelItem"
- />
- <add-edit
- :id="modelId"
- :sitem="s_sitem"
- :show-model="showModel"
- :is-detail="isDetail"
- @refresh="searchList"
- @cancel="showModel = false"
- />
- </div>
- </template>
- <script>
- import mixinPage from "@/mixins/elPaginationHandle";
- import resToken from "@/mixins/resToken";
- import asyncRequest from "@/apis/service/sellOut/salesOrder/detail";
- import outOrderAddModel from "./out-order-add-model";
- import addEdit from "@/views/sellOut/goodsService/components/addEdit.vue";
- import { mapGetters } from "vuex";
- export default {
- name: "salesOrderDetail",
- mixins: [mixinPage, resToken],
- props: ["newTime", "id", "sitem"],
- components: { addEdit, outOrderAddModel },
- watch: {
- newTime: function (val) {
- if (val) {
- this.initForm();
- }
- },
- },
- computed: {
- ...mapGetters(["tablebtnSize", "searchSize", "size"]),
- powers() {
- let tran =
- this.$store.getters.btnList.find(
- (item) => item.menu_route == "salesOrderDetail"
- ) || {};
- if (tran && tran.action && tran.action.length > 0) {
- return tran.action;
- } else {
- return [];
- }
- },
- },
- data() {
- return {
- // 状态
- statusOptions: [
- { id: "1", label: "已出库" },
- { id: "2", label: "验收中" },
- { id: "3", label: "验收完成" },
- ],
- showGoodsModel: false,
- stock_code: "",
- tableData: [],
- loading: false,
- queryId: "",
- status: "",
- showModel: null,
- modelId: "",
- modelItem: null,
- s_sitem: null,
- };
- },
- mounted() {
- this.initForm();
- },
- methods: {
- async initForm() {
- console.log("12");
- this.status = "";
- this.queryId = this.$route.query.id;
- // this.rulesThis = this.rules;
- this.resetForm();
- },
- getNewTime() {
- this.newTime = new Date().valueOf();
- },
- async resetForm() {
- // 重置
- await this.$nextTick(() => {
- // console.log(this.$refs.addrForm);
- // if (this.$refs.addrForm) {
- // this.$refs.addrForm.resetFields();
- // this.$refs.addrForm.clearValidate();
- const { bum } = this.sitem;
- this.tableData = bum;
- // }
- });
- },
- editRow(index) {
- let findex = this.stockForm.good_stock.findIndex((v) => v.edit === true);
- if (findex !== -1) {
- this.$message.warning("当前已有发货仓库信息在编辑,请保存后再试!");
- return;
- } else {
- this.stockForm.good_stock[index].edit = true;
- }
- },
- checkStockRow(index) {
- let total = parseInt(this.stockForm.good_stock[index].usable_stock),
- num = parseInt(this.stockForm.good_stock[index].num);
- if (total === 0) {
- this.$message.warning("该仓库已无该商品库存!不能销售!");
- return;
- } else {
- if (num > total) {
- this.$message.warning("销售数量不能大于可用库存!");
- return;
- } else {
- this.stockForm.good_stock[index].edit = false;
- }
- }
- },
- openHouseModal() {
- this.modelId = "add";
- this.modelItem = this.sitem;
- this.modelShowModel = true;
- },
- //省市区保存某一行
- checkRow(rowIndex) {
- this.$refs.addrForm.validate((valid) => {
- if (valid) {
- this.tableData[rowIndex].edit = false;
- } else {
- console.log("error submit!!");
- return false;
- }
- });
- },
- // 省市区删除行操作
- deleteRow(index, rows) {
- rows.splice(index, 1);
- },
- async submitForm() {
- await this.$refs.ruleForm.validate(async (valid) => {
- if (valid) {
- this.loading = true;
- const { order_addr } = JSON.parse(JSON.stringify(this.addrForm));
- let model = {
- id: this.queryId,
- order_addr: [],
- };
- order_addr.forEach((v2) => {
- let model2 = {
- post_fee: v2.post_fee,
- id: v2.id,
- };
- model.order_addr.push(model2);
- });
- let res = await asyncRequest.salefee(model);
- this.loading = false;
- if (res && res.code === 0) {
- this.$notify.success({
- title: "反馈物流费用成功!",
- message: "",
- });
- this.showModelThis = false;
- // 刷新
- this.$emit("refresh");
- } else if (res && res.code >= 100 && res.code <= 104) {
- await this.logout();
- } else {
- this.$message.warning(res.message);
- }
- } else {
- console.log("error submit!!");
- return false;
- }
- });
- },
- openModal(code, btn_code) {
- console.log(code, btn_code);
- this.s_sitem = btn_code;
- this.btn_code = btn_code;
- this.modelId = code;
- this.showModel = true;
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- </style>
-
|