guoyuji
2024-07-08 837b8ca50613eb454c6c09173e434066fb17dfee
Merge branch 'master' of http://bore.pub:10439/r/ERP_override
2个文件已修改
10 ■■■■ 已修改文件
north-glass-erp/northglass-erp/src/components/sd/delivery/PrintSheet1.vue 6 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
north-glass-erp/northglass-erp/src/components/sd/order/OrderOtherMoney.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
north-glass-erp/northglass-erp/src/components/sd/delivery/PrintSheet1.vue
@@ -264,5 +264,11 @@
  color: black;
}
@page {
  size: auto;  /* auto is the initial value */
  margin: 8mm 16mm 16mm 16mm  /* this affects the margin in the printer settings */
}
</style>
north-glass-erp/northglass-erp/src/components/sd/order/OrderOtherMoney.vue
@@ -144,13 +144,13 @@
  otherMoney:{}
})
onMounted(()=>{
  if(Object.keys(prop.otherMoney).length === 0  || prop.otherMoney===null){
  if(Object.keys(prop.otherMoney).length === 0){
    return
  }
  xGrid.value.reloadData(prop.otherMoney.filter(item => item.column.indexOf('M')>-1))
})
watch(prop,(newVal)=>{
  if(Object.keys(prop.otherMoney).length === 0 || prop.otherMoney===null){
  if(Object.keys(prop.otherMoney).length === 0){
    return
  }
  xGrid.value.reloadData(prop.otherMoney.filter(item => item.column.indexOf('M')>-1))