gaoluyang
2025-12-09 539231de1e68f45a6f11bc88df665cc1f161941f
src/views/procurementManagement/invoiceEntry/components/Modal.vue
@@ -255,25 +255,16 @@
    label: "含税单价(元)",
    prop: "taxInclusiveUnitPrice",
    width: 150,
    formatData: (val) => {
      return val ? parseFloat(val).toFixed(5) : 0;
    },
  },
  {
    label: "含税总价(元)",
    prop: "taxInclusiveTotalPrice",
    width: 150,
    formatData: (val) => {
      return parseFloat(val).toFixed(5) ?? 0;
    },
  },
  {
    label: "不含税总价(元)",
    prop: "taxExclusiveTotalPrice",
    width: 150,
    formatData: (val) => {
      return parseFloat(val).toFixed(5) ?? 0;
    },
  },
  {
    label: "本次来票数",