当前位置: 首页 > article >正文

Elmentui实现订单拆单功能

Elmentui实现订单拆分开票功能

需求

订单在开票时候,允许按照订单明细行和数量拆分开票,一个订单需要一次性完成全部明细行拆分才能提交开票

思路

实现一个订单拆单的功能,支持按照行和数量拆分,使用elementui
首先有一个table显示全部订单行明细,table下面有tabs默认有一个tab,通过点击添加和删除按钮新增tab,tab中也有新增和删除按钮,用于选择第一个tab中的明细行,直到全部明细拆分完成

示例代码

<template>
  <div>
    <el-table :data="orderDetails" border style="width: 100%">
      <el-table-column prop="productName" label="产品名称" width="150"></el-table-column>
      <el-table-column prop="quantity" label="数量" width="100">
        <template slot-scope="scope">
          <el-input-number
            v-model="scope.row.quantity"
            :min="0"
            @change="handleQuantityChange(scope.row)"
          ></el-input-number>
        </template>
      </el-table-column>
      <el-table-column prop="price" label="单价" width="100"></el-table-column>
      <el-table-column prop="total" label="总价" width="100"></el-table-column>
    </el-table>

    <el-tabs v-model="activeTabIndex" type="card" @tab-remove="handleTabRemove">
      <el-tab-pane v-for="(tab, index) in splitTabs" :key="index" :label="'拆单' + (index + 1)">
        <el-table :data="tab.selectedDetails" border style="width: 100%">
          <el-table-column prop="productName" label="产品名称" width="150"></el-table-column>
          <el-table-column prop="quantity" label="数量" width="100">
            <template slot-scope="scope">
              <el-input-number
                v-model="scope.row.quantity"
                :min="0"
                @change="handleSelectedQuantityChange(tab, scope.row)"
              ></el-input-number>
            </template>
          </el-table-column>
          <el-table-column prop="price" label="单价" width="100"></el-table-column>
          <el-table-column prop="total" label="总价" width="100"></el-table-column>
          <el-table-column label="操作">
            <template slot-scope="scope">
              <el-button
                type="danger"
                size="mini"
                @click="handleRemoveSelectedRow(tab, scope.$index)"
              >删除</el-button>
            </template>
          </el-table-column>
        </el-table>
        <el-row>
          <el-col :span="12">
            <el-select v-model="selectedProduct" placeholder="选择产品">
              <el-option
                v-for="product in orderDetails"
                :key="product.productName"
                :label="product.productName"
                :value="product.productName"
              ></el-option>
            </el-select>
          </el-col>
          <el-col :span="12">
            <el-input-number v-model="selectedQuantity" :min="0" placeholder="输入数量"></el-input-number>
          </el-col>
          <el-button type="primary" @click="handleAddSelectedRow(splitTabs[activeTabIndex])">添加明细</el-button>
        </el-row>
      </el-tab-pane>
    </el-tabs>
    <el-button type="primary" @click="handleAddTab">添加拆单Tab</el-button>
  </div>
</template>

<script>
export default {
  data() {
    return {
      orderDetails: [
        {
          productName: '产品A',
          quantity: 10,
          price: 100,
          total: 1000
        },
        {
          productName: '产品B',
          quantity: 5,
          price: 200,
          total: 1000
        },
        {
          productName: '产品C',
          quantity: 8,
          price: 150,
          total: 1200
        }
      ],
      splitTabs: [
        {
          selectedDetails: []
        }
      ],
      activeTabIndex: 0,
      selectedProduct: '',
      selectedQuantity: 0
    }
  },
  methods: {
    handleAddTab() {
      this.splitTabs.push({
        selectedDetails: []
      });
    },
    handleTabRemove(targetName) {
      const index = this.splitTabs.findIndex(tab => tab.label === targetName);
      if (index!== -1) {
        this.splitTabs.splice(index, 1);
        if (this.activeTabIndex === index && this.splitTabs.length > 0) {
          this.activeTabIndex = Math.min(this.activeTabIndex, this.splitTabs.length - 1);
        }
      }
    },
    handleAddSelectedRow(tab) {
      const product = this.orderDetails.find(item => item.productName === this.selectedProduct);
      if (product) {
        tab.selectedDetails.push({
          ...product,
          quantity: this.selectedQuantity
        });
        this.selectedProduct = '';
        this.selectedQuantity = 0;
      }
    },
    handleRemoveSelectedRow(tab, rowIndex) {
      const removedRow = tab.selectedDetails[rowIndex];
      this.returnQuantityToOriginal(removedRow);
      tab.selectedDetails.splice(rowIndex, 1);
    },
    handleQuantityChange(row) {
      const currentQuantity = row.quantity;
      const index = this.orderDetails.findIndex(item => item.productName === row.productName);
      if (index!== -1) {
        this.orderDetails[index].quantity = currentQuantity;
      }
    },
    handleSelectedQuantityChange(tab, row) {
      const currentQuantity = row.quantity;
      const sourceIndex = this.orderDetails.findIndex(item => item.productName === row.productName);
      if (sourceIndex!== -1) {
        const quantityDiff = this.orderDetails[sourceIndex].quantity - currentQuantity;
        this.orderDetails[sourceIndex].quantity = currentQuantity;
        this.updateQuantityInTabs(tab, row.productName, quantityDiff);
      }
    },
    updateQuantityInTabs(tab, productName, quantityDiff) {
      tab.selectedDetails.forEach(item => {
        if (item.productName === productName) {
          item.quantity += quantityDiff;
        }
      });
    },
    returnQuantityToOriginal(removedRow) {
      const index = this.orderDetails.findIndex(item => item.productName === removedRow.productName);
      if (index!== -1) {
        this.orderDetails[index].quantity += removedRow.quantity;
      }
    }
  }
}
</script>

最终效果

在这里插入图片描述

点击添加拆单tab新增一个tab
添加明细,选择产品,输入数量,在当前tab新增一行

样式和交互暂时未做处理


http://www.kler.cn/a/410438.html

相关文章:

  • 信息收集(1)
  • 【ArcGISPro】根据yaml构建原始Pro的conda环境
  • kafka是如何做到高效读写
  • 大数据背景下信息通信网络安全管理管理策略研究
  • 【SQL】【数据库】语句翻译例题
  • 区块链讲解
  • Golang调用MongoDB的表自动增长的 ID 永久保存在 MongoDB 中,并且每次获取的 ID 是基于上次的结果
  • 5.5 W5500 TCP服务端与客户端
  • 排序算法(四)--快速排序
  • 移动语义和拷贝语义区别、智能指针
  • 深度学习3
  • 论文笔记 网络安全图谱以及溯源算法
  • JavaScript的基础数据类型
  • 241124_基于MindSpore学习Prompt Tuning
  • 【数据分析】基于GEE实现大津算法提取洞庭湖流域水体
  • 手机无法连接服务器1302什么意思?
  • 前端预览pdf文件流
  • 【cocos creator】下拉框
  • Windows系统电脑安装TightVNC服务端结合内网穿透实现异地远程桌面
  • kafka学习-01
  • Unity 2020、2021、2022、2023、6000下载安装
  • 【测试工具JMeter篇】JMeter性能测试入门级教程(一)出炉,测试君请各位收藏了!!!
  • 2024 APMCM亚太数学建模C题 - 宠物行业及相关产业的发展分析和策略 完整参考论文(1)
  • [算法] 前缀函数与KMP算法
  • 数据集-目标检测系列- 荷花 莲花 检测数据集 lotus>> DataBall
  • LeetCode 0632.最小区间:优先队列