guoyuji
2024-07-07 4526f9997acdf11695b24a5e0946b3ba6c6d60bd
提交其他金额显示问题
2个文件已修改
6 ■■■■ 已修改文件
north-glass-erp/northglass-erp/src/components/sd/order/OrderOtherMoney.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
north-glass-erp/northglass-erp/src/views/sd/order/CreateOrder.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
north-glass-erp/northglass-erp/src/components/sd/order/OrderOtherMoney.vue
@@ -144,10 +144,10 @@
  otherMoney:{}
})
onMounted(()=>{
  xGrid.value.reloadData(prop.otherMoney.filter(item => item.column.indexOf('M')>-1))
  xGrid.value.reloadData(prop.otherMoney)
})
watch(prop,(newVal)=>{
  xGrid.value.reloadData(prop.otherMoney.filter(item => item.column.indexOf('M')>-1))
  xGrid.value.reloadData(prop.otherMoney)
})
const countAmount = (row) => {
north-glass-erp/northglass-erp/src/views/sd/order/CreateOrder.vue
@@ -704,7 +704,7 @@
      orderDetails.forEach(item => {
        item.otherColumns = JSON.parse(item.otherColumns)
      })
      otherMoney.value =res.data.orderOtherMoneyList.filter(item => item.column.indexOf('M')>-1)
      otherMoney.value =res.data.orderOtherMoneyList
          //加载副表数据
      xGrid.value.reloadData(orderDetails)
      gridOptions.loading = false