From f8fb1c9aae437943769282428379dd2494bff9e3 Mon Sep 17 00:00:00 2001 From: qiankunpingtai Date: Mon, 10 Jun 2019 11:49:01 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=89=A9=E5=B1=95=E5=B1=9E?= =?UTF-8?q?=E6=80=A7=E5=8F=82=E6=95=B0=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- erp_web/js/pages/materials/allocation_out_list.js | 2 +- erp_web/js/pages/materials/assemble_list.js | 2 +- erp_web/js/pages/materials/disassemble_list.js | 2 +- erp_web/js/pages/materials/other_in_list.js | 2 +- erp_web/js/pages/materials/other_out_list.js | 2 +- erp_web/js/pages/materials/purchase_back_list.js | 2 +- erp_web/js/pages/materials/purchase_in_list.js | 2 +- erp_web/js/pages/materials/purchase_orders_list.js | 2 +- erp_web/js/pages/materials/retail_back_list.js | 2 +- erp_web/js/pages/materials/retail_out_list.js | 2 +- erp_web/js/pages/materials/sale_back_list.js | 2 +- erp_web/js/pages/materials/sale_orders_list.js | 2 +- erp_web/js/pages/materials/sale_out_list.js | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) diff --git a/erp_web/js/pages/materials/allocation_out_list.js b/erp_web/js/pages/materials/allocation_out_list.js index 59ce6b70..614960a9 100644 --- a/erp_web/js/pages/materials/allocation_out_list.js +++ b/erp_web/js/pages/materials/allocation_out_list.js @@ -234,7 +234,7 @@ function initMProperty(){ var thisRows = res.data.page.rows; for (var i = 0; i < thisRows.length; i++) { if (thisRows[i].enabled) { - mPropertyList += thisRows[i].nativeName + ","; + mPropertyList += thisRows[i].nativename + ","; } } if (mPropertyList) { diff --git a/erp_web/js/pages/materials/assemble_list.js b/erp_web/js/pages/materials/assemble_list.js index b0ee8d79..b4124e99 100644 --- a/erp_web/js/pages/materials/assemble_list.js +++ b/erp_web/js/pages/materials/assemble_list.js @@ -235,7 +235,7 @@ function initMProperty(){ var thisRows = res.data.page.rows; for (var i = 0; i < thisRows.length; i++) { if (thisRows[i].enabled) { - mPropertyList += thisRows[i].nativeName + ","; + mPropertyList += thisRows[i].nativename + ","; } } if (mPropertyList) { diff --git a/erp_web/js/pages/materials/disassemble_list.js b/erp_web/js/pages/materials/disassemble_list.js index a70e6dfd..c41c921f 100644 --- a/erp_web/js/pages/materials/disassemble_list.js +++ b/erp_web/js/pages/materials/disassemble_list.js @@ -234,7 +234,7 @@ function initMProperty(){ var thisRows = res.data.page.rows; for (var i = 0; i < thisRows.length; i++) { if (thisRows[i].enabled) { - mPropertyList += thisRows[i].nativeName + ","; + mPropertyList += thisRows[i].nativename + ","; } } if (mPropertyList) { diff --git a/erp_web/js/pages/materials/other_in_list.js b/erp_web/js/pages/materials/other_in_list.js index 6fdc038a..bad7c8bd 100644 --- a/erp_web/js/pages/materials/other_in_list.js +++ b/erp_web/js/pages/materials/other_in_list.js @@ -235,7 +235,7 @@ function initMProperty(){ var thisRows = res.data.page.rows; for (var i = 0; i < thisRows.length; i++) { if (thisRows[i].enabled) { - mPropertyList += thisRows[i].nativeName + ","; + mPropertyList += thisRows[i].nativename + ","; } } if (mPropertyList) { diff --git a/erp_web/js/pages/materials/other_out_list.js b/erp_web/js/pages/materials/other_out_list.js index abb4c78e..ebec038f 100644 --- a/erp_web/js/pages/materials/other_out_list.js +++ b/erp_web/js/pages/materials/other_out_list.js @@ -234,7 +234,7 @@ function initMProperty(){ var thisRows = res.data.page.rows; for (var i = 0; i < thisRows.length; i++) { if (thisRows[i].enabled) { - mPropertyList += thisRows[i].nativeName + ","; + mPropertyList += thisRows[i].nativename + ","; } } if (mPropertyList) { diff --git a/erp_web/js/pages/materials/purchase_back_list.js b/erp_web/js/pages/materials/purchase_back_list.js index 6ea49a65..a5b0d7c0 100644 --- a/erp_web/js/pages/materials/purchase_back_list.js +++ b/erp_web/js/pages/materials/purchase_back_list.js @@ -234,7 +234,7 @@ function initMProperty(){ var thisRows = res.data.page.rows; for (var i = 0; i < thisRows.length; i++) { if (thisRows[i].enabled) { - mPropertyList += thisRows[i].nativeName + ","; + mPropertyList += thisRows[i].nativename + ","; } } if (mPropertyList) { diff --git a/erp_web/js/pages/materials/purchase_in_list.js b/erp_web/js/pages/materials/purchase_in_list.js index edaa8d68..eea38d55 100644 --- a/erp_web/js/pages/materials/purchase_in_list.js +++ b/erp_web/js/pages/materials/purchase_in_list.js @@ -234,7 +234,7 @@ function initMProperty(){ var thisRows = res.data.page.rows; for (var i = 0; i < thisRows.length; i++) { if (thisRows[i].enabled) { - mPropertyList += thisRows[i].nativeName + ","; + mPropertyList += thisRows[i].nativename + ","; } } if (mPropertyList) { diff --git a/erp_web/js/pages/materials/purchase_orders_list.js b/erp_web/js/pages/materials/purchase_orders_list.js index 3a014b34..cd2a30c2 100644 --- a/erp_web/js/pages/materials/purchase_orders_list.js +++ b/erp_web/js/pages/materials/purchase_orders_list.js @@ -234,7 +234,7 @@ function initMProperty(){ var thisRows = res.data.page.rows; for (var i = 0; i < thisRows.length; i++) { if (thisRows[i].enabled) { - mPropertyList += thisRows[i].nativeName + ","; + mPropertyList += thisRows[i].nativename + ","; } } if (mPropertyList) { diff --git a/erp_web/js/pages/materials/retail_back_list.js b/erp_web/js/pages/materials/retail_back_list.js index 1cb329b8..f2f51115 100644 --- a/erp_web/js/pages/materials/retail_back_list.js +++ b/erp_web/js/pages/materials/retail_back_list.js @@ -234,7 +234,7 @@ function initMProperty(){ var thisRows = res.data.page.rows; for (var i = 0; i < thisRows.length; i++) { if (thisRows[i].enabled) { - mPropertyList += thisRows[i].nativeName + ","; + mPropertyList += thisRows[i].nativename + ","; } } if (mPropertyList) { diff --git a/erp_web/js/pages/materials/retail_out_list.js b/erp_web/js/pages/materials/retail_out_list.js index bf142668..c2a78287 100644 --- a/erp_web/js/pages/materials/retail_out_list.js +++ b/erp_web/js/pages/materials/retail_out_list.js @@ -227,7 +227,7 @@ function initMProperty(){ var thisRows = res.data.page.rows; for (var i = 0; i < thisRows.length; i++) { if (thisRows[i].enabled) { - mPropertyList += thisRows[i].nativeName + ","; + mPropertyList += thisRows[i].nativename + ","; } } if (mPropertyList) { diff --git a/erp_web/js/pages/materials/sale_back_list.js b/erp_web/js/pages/materials/sale_back_list.js index 55566a00..1459eb1e 100644 --- a/erp_web/js/pages/materials/sale_back_list.js +++ b/erp_web/js/pages/materials/sale_back_list.js @@ -235,7 +235,7 @@ function initMProperty(){ var thisRows = res.data.page.rows; for (var i = 0; i < thisRows.length; i++) { if (thisRows[i].enabled) { - mPropertyList += thisRows[i].nativeName + ","; + mPropertyList += thisRows[i].nativename + ","; } } if (mPropertyList) { diff --git a/erp_web/js/pages/materials/sale_orders_list.js b/erp_web/js/pages/materials/sale_orders_list.js index 5b6ead1d..f60a1035 100644 --- a/erp_web/js/pages/materials/sale_orders_list.js +++ b/erp_web/js/pages/materials/sale_orders_list.js @@ -234,7 +234,7 @@ function initMProperty(){ var thisRows = res.data.page.rows; for (var i = 0; i < thisRows.length; i++) { if (thisRows[i].enabled) { - mPropertyList += thisRows[i].nativeName + ","; + mPropertyList += thisRows[i].nativename + ","; } } if (mPropertyList) { diff --git a/erp_web/js/pages/materials/sale_out_list.js b/erp_web/js/pages/materials/sale_out_list.js index 7cd04788..9a8e46e8 100644 --- a/erp_web/js/pages/materials/sale_out_list.js +++ b/erp_web/js/pages/materials/sale_out_list.js @@ -234,7 +234,7 @@ function initMProperty(){ var thisRows = res.data.page.rows; for (var i = 0; i < thisRows.length; i++) { if (thisRows[i].enabled) { - mPropertyList += thisRows[i].nativeName + ","; + mPropertyList += thisRows[i].nativename + ","; } } if (mPropertyList) {