廖井涛
2024-10-18 6e5c288a14974a6e3633c1121a20e8001b617358
语言更新
4个文件已修改
13 ■■■■■ 已修改文件
north-glass-erp/northglass-erp/src/lang/en.js 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
north-glass-erp/northglass-erp/src/lang/ru.js 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
north-glass-erp/northglass-erp/src/lang/zh.js 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
north-glass-erp/northglass-erp/src/views/mm/productStock/CreateProductStock.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
north-glass-erp/northglass-erp/src/lang/en.js
@@ -664,7 +664,8 @@
        boxNumber:'箱号',
        msg1:'发货单已出库请刷新界面',
        msg2:'发货单库存数不存在'
        msg2:'发货单库存数不存在',
        msg3:'入库数量不能超过订单总数'
    },
    customer:{
        page:{
north-glass-erp/northglass-erp/src/lang/ru.js
@@ -664,7 +664,8 @@
        boxNumber:'箱号',
        msg1:'发货单已出库请刷新界面',
        msg2:'发货单库存数不存在'
        msg2:'发货单库存数不存在',
        msg3:'入库数量不能超过订单总数'
    },
    customer:{
        page:{
north-glass-erp/northglass-erp/src/lang/zh.js
@@ -664,7 +664,8 @@
        boxNumber:'箱号',
        msg1:'发货单已出库请刷新界面',
        msg2:'发货单库存数不存在'
        msg2:'发货单库存数不存在',
        msg3:'入库数量不能超过订单总数'
    },
    customer:{
        page:{
north-glass-erp/northglass-erp/src/views/mm/productStock/CreateProductStock.vue
@@ -315,11 +315,11 @@
  "inventoryQuantity": [{
    validator (e) {
      if ((parseInt(e.row.inventoryQuantity) + e.row.receivedQuantity) > e.row.orderDetail.quantity) {
        return new Error('入库数量不能超过订单总数')
        return new Error(t('productStock.msg3'))
      }
      const regex = /^[1-9]\d*$/g
      if ( !regex.test(e.row.inventoryQuantity) ) {
        return new Error('输入不为0的数')
        return new Error(t('basicData.msg.greater0'))
      }
    }