Browse Source

界面标准化二次调整

rainco 7 years ago
parent
commit
702c26d2f8

+ 0 - 1
frontend/saas-web/app/view/money/fundtransfer/QueryPanel.js

@@ -10,7 +10,6 @@ Ext.define('saas.view.money.fundtransfer.QueryPanel', {
     queryFormItems: [{
         xtype: 'textfield',
         name:'ft_code',
-        fieldLabel: '单号',
         emptyText:'请输入单号'
     },{
         xtype : "condatefield",

+ 1 - 2
frontend/saas-web/app/view/money/othreceipts/QueryPanel.js

@@ -10,8 +10,7 @@ Ext.define('saas.view.money.othreceipts.QueryPanel', {
     queryFormItems: [ {
         xtype: 'textfield',
         name: 'or_code',
-        fieldLabel: '单号/客户/账号',
-        emptyText:'请输入单号/客户/账号',
+        emptyText:'请输入单号或客户或账号',
         labelWidth: 100,
         getCondition: function(value) {
            return  ' (or_code like\'%' + value + '%\'' 

+ 2 - 8
frontend/saas-web/app/view/money/othspendings/QueryPanel.js

@@ -19,9 +19,7 @@ Ext.define('saas.view.money.othspendings.QueryPanel', {
     },{
         xtype: 'textfield',
         name: 'os_code',
-        fieldLabel: '单号/客户/账号',
-        emptyText:'请输入单号/客户/账号',
-        labelWidth: 100,
+        emptyText:'请输入单号或客户或账号',
         getCondition: function(value) {
             if(value == 'ALL') {
                 return '1=1';
@@ -100,12 +98,8 @@ Ext.define('saas.view.money.othspendings.QueryPanel', {
             dataIndex: 'os_date',
             xtype: 'datecolumn',
             width: 110
-        },{
-            text: '审核状态',
-            dataIndex: 'os_status',
-            width: 90
         }, {
-            text: '供应商',
+            text: '供应商名称',
             dataIndex: 'os_vendname',
             width:250
         },{

+ 0 - 5
frontend/saas-web/app/view/money/payBalance/QueryPanel.js

@@ -18,7 +18,6 @@ Ext.define('saas.view.money.paybalance.QueryPanel', {
     }, {
         xtype: 'textfield',
         name: 'pb_code',
-        fieldLabel: '单号/供应商',
         emptyText :'请输入单号或供应商',
         getCondition: function(value) {
             if(value == 'ALL') {
@@ -111,10 +110,6 @@ Ext.define('saas.view.money.paybalance.QueryPanel', {
             text: '付款人',
             dataIndex: 'pb_manname',
             width: 110
-        }, {
-            text: '单据状态',
-            dataIndex: 'pb_status',
-            width: 90
         }, {
             text: '备注',
             dataIndex: 'pb_remark',

+ 3 - 4
frontend/saas-web/app/view/money/recBalance/QueryPanel.js

@@ -10,8 +10,7 @@ Ext.define('saas.view.money.recBalance.QueryPanel', {
     queryFormItems: [{
         xtype: 'textfield',
         name: 'rb_code',
-        fieldLabel: '单号/客户',
-        emptyText :'请输入单号或者客户',
+        emptyText :'请输入单号或客户',
         getCondition: function(value) {
             if(value == 'ALL') {
                 return '1=1';
@@ -71,7 +70,7 @@ Ext.define('saas.view.money.recBalance.QueryPanel', {
             xtype: 'numbercolumn',
             hidden: true
         }, {
-            text: '款单号',
+            text: '款单号',
             dataIndex: 'rb_code',
             width: 150
         }, {
@@ -84,7 +83,7 @@ Ext.define('saas.view.money.recBalance.QueryPanel', {
             dataIndex: 'rb_custname',
             width: 250,
         },{
-            text: '款金额',
+            text: '款金额',
             xtype: 'numbercolumn',
             dataIndex: 'rd_amount',
             width: 120,

+ 1 - 1
frontend/saas-web/app/view/money/verification/QueryPanel.js

@@ -18,7 +18,7 @@ Ext.define('saas.view.money.verification.QueryPanel', {
     }, {
         xtype: 'textfield',
         name: 'rb_code',
-        fieldLabel: '单据编号'
+        emptyText:'请输入单据编号'
     }, {
         xtype: 'condatefield',
         name: 'rb_date',

+ 0 - 1
frontend/saas-web/app/view/purchase/purchase/QueryPanel.js

@@ -18,7 +18,6 @@ Ext.define('saas.view.purchase.purchase.QueryPanel', {
     }, {
         xtype: 'textfield',
         name: 'pu_code',
-        fieldLabel: '单号/供应商',
         emptyText:'请输入单号或供应商',
         getCondition: function(value) {
             return  ' (pu_code like\'%' + value + '%\' or pu_vendcode like \'%'+value+'%\' or pu_vendname like \'%'+value+'%\') ';

+ 0 - 1
frontend/saas-web/app/view/purchase/purchaseIn/QueryPanel.js

@@ -15,7 +15,6 @@ Ext.define('saas.view.purchase.purchaseIn.QueryPanel', {
     },{
         xtype: 'textfield',
         name: 'pi_inoutno',
-        fieldLabel: '单号/供应商',
         emptyText:'请输入单号或供应商',
         getCondition: function(value) {
             return  ' (pi_inoutno like\'%' + value + '%\' or pi_vendcode like \'%'+value+'%\' or pi_vendname like \'%'+value+'%\') ';

+ 0 - 1
frontend/saas-web/app/view/purchase/purchaseOut/QueryPanel.js

@@ -18,7 +18,6 @@ Ext.define('saas.view.purchase.purchaseOut.QueryPanel', {
     },{
         xtype: 'textfield',
         name: 'pi_inoutno',
-        fieldLabel: '单号/供应商',
         emptyText:'请输入单号或供应商',
         getCondition: function(value) {
             return  ' (pi_inoutno like\'%' + value + '%\' or pi_vendcode like \'%'+value+'%\' or pi_vendname like \'%'+value+'%\') ';

+ 0 - 1
frontend/saas-web/app/view/sale/sale/QueryPanel.js

@@ -18,7 +18,6 @@ Ext.define('saas.view.sale.sale.QueryPanel', {
     },{
         xtype: 'textfield',
         name: 'sa_code',
-        fieldLabel: '单号/客户',
         emptyText:'请输入单号或客户',
         getCondition: function(value) {
            return  ' (sa_code like\'%' + value + '%\' or sa_custcode like \'%'+value+'%\' or sa_custname like \'%'+value+'%\') ';

+ 1 - 1
frontend/saas-web/app/view/sale/saleIn/QueryPanel.js

@@ -14,8 +14,8 @@ Ext.define('saas.view.sale.saleIn.QueryPanel', {
     },{
         xtype: 'textfield',
         name: 'pi_inoutno',
-        fieldLabel: '单号/客户',
         emptyText:'请输入单号或客户或关联单号',
+        labelWidth:100,
         getCondition: function(value) {
             return  ' (pi_inoutno like\'%' + value + '%\' or pi_custcode like \'%'+value+'%\' or pi_custname like \'%'+value+'%\' or pi_sacode like \'%'+value+'%\') ';
         }

+ 1 - 1
frontend/saas-web/app/view/sale/saleOut/QueryPanel.js

@@ -15,8 +15,8 @@ Ext.define('saas.view.sale.saleout.QueryPanel', {
     },{
         xtype: 'textfield',
         name: 'pi_inoutno',
-        fieldLabel: '单号/客户',
         emptyText:'请输入单号或客户或关联单号',
+        labelWidth:100,
         getCondition: function(value) {
             return  ' (pi_inoutno like\'%' + value + '%\' or pi_custcode like \'%'+value+'%\' or pi_custname like \'%'+value+'%\' or pi_iocode like \'%'+value+'%\') ';
         }

+ 1 - 1
frontend/saas-web/app/view/stock/appropriationInOut/QueryPanel.js

@@ -16,7 +16,7 @@ Ext.define('saas.view.stock.appropriationInOut.QueryPanel', {
     },{
         xtype: 'textfield',
         name: 'pi_inoutno',
-        fieldLabel: '单号/物料',
+        emptyText:'请输入单号或物料',
         showDetail: true,
         getCondition: function(value) {
             if(value == 'ALL') {

+ 0 - 1
frontend/saas-web/app/view/stock/make/QueryPanel.js

@@ -22,7 +22,6 @@ Ext.define('saas.view.stock.make.QueryPanel', {
     },{
         xtype: 'textfield',
         name: 'ma_prodcode',
-        fieldLabel: '产品',
         emptyText :'请输入产品名称或编号',
         getCondition: function(value) {
             if(value == 'ALL') {

+ 1 - 1
frontend/saas-web/app/view/stock/otherIn/QueryPanel.js

@@ -16,7 +16,7 @@ Ext.define('saas.view.stock.otherIn.QueryPanel', {
     },{
         xtype: 'textfield',
         name: 'pi_inoutno',
-        fieldLabel: '单号/供应商',
+        emptyText:'请输入单号或供应商',
         getCondition: function(value) {
             if(value == 'ALL') {
                 return '1=1';

+ 2 - 2
frontend/saas-web/app/view/stock/otherOut/QueryPanel.js

@@ -16,7 +16,7 @@ Ext.define('saas.view.stock.otherOut.QueryPanel', {
     }, {
         xtype: 'textfield',
         name: 'pi_inoutno',
-        fieldLabel: '单号/供应商',
+        emptyText:'请输入单号或客户',
         getCondition: function(value) {
             if(value == 'ALL') {
                 return '1=1';
@@ -81,7 +81,7 @@ Ext.define('saas.view.stock.otherOut.QueryPanel', {
             hidden:true,
             xtype: 'numbercolumn'
         }, {
-            text: '其它库单号',
+            text: '其它库单号',
             dataIndex: 'pi_inoutno',
             width: 150
         },{