buhuazhen
5 天以前 5b47afcd030b5a2d40f1fab2bba82a98a58f5def
fix(采购退货单): 修正表格列标签中的错误术语

将“不退货总价”更正为“不含税总价”,以准确反映其税务含义
已修改1个文件
12 ■■■■ 文件已修改
src/views/procurementManagement/purchaseReturnOrder/index.vue 12 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/procurementManagement/purchaseReturnOrder/index.vue
@@ -88,10 +88,10 @@
          <el-table-column label="含税单价(元)" prop="taxInclusiveUnitPrice" width="130">
            <template #default="scope">{{ formatAmount(scope.row.taxInclusiveUnitPrice) }}</template>
          </el-table-column>
          <el-table-column label="含税总价(元)" prop="taxInclusiveTotalPrice" width="130">
          <el-table-column label="退货总价(元)" prop="taxInclusiveTotalPrice" width="130">
            <template #default="scope">{{ formatAmount(scope.row.taxInclusiveTotalPrice) }}</template>
          </el-table-column>
          <el-table-column label="不含税总价(元)" prop="taxExclusiveTotalPrice" width="140">
          <el-table-column label="不退货总价(元)" prop="taxExclusiveTotalPrice" width="140">
            <template #default="scope">{{ formatAmount(scope.row.taxExclusiveTotalPrice) }}</template>
          </el-table-column>
          <el-table-column label="是否质检" prop="isChecked" width="100" align="center">
@@ -182,7 +182,7 @@
    prop: 'returnUserName',
    width: 110,
  },
  {
    label: '整单折扣额',
    prop: 'totalDiscountAmount',
@@ -236,7 +236,7 @@
      },
  ],
  },
])
const data = reactive({
  searchForm: {
@@ -281,8 +281,8 @@
    const payload = res?.data || {}
    detailData.value = payload
    // 拼接连个对象成一个对象,方便展示 item 和 item.salesLedgerProduct 里的字段
    detailProducts.value =
      payload.purchaseReturnOrderProductsDetailVoList.map(item => ({ ...item, ...item.salesLedgerProduct })) ||
      []