Browse Source

调拨单审核后复制忽略审核人审核时间更新人更新时间等

rainco 7 years ago
parent
commit
7578ab7245
1 changed files with 10 additions and 5 deletions
  1. 10 5
      frontend/saas-web/app/view/stock/appropriationInOut/FormPanel.js

+ 10 - 5
frontend/saas-web/app/view/stock/appropriationInOut/FormPanel.js

@@ -282,27 +282,32 @@ Ext.define('saas.view.stock.appropriationInOut.FormPanel', {
         xtype : "hidden", 
         name : "updaterId", 
         fieldLabel : "更新人ID", 
-        readOnly:true
+        readOnly:true,
+        ignore:true
     },{
         xtype : "hidden", 
         name : "updaterName", 
         fieldLabel : "更新人", 
-        readOnly:true
+        readOnly:true,
+        ignore:true
     }, {
         xtype : "hidden", 
         name : "updateTime", 
         fieldLabel : "更新日期",
         readOnly:true, 
-        defaultValue: new Date()
+        defaultValue: new Date(),
+        ignore:true
     }, {
         xtype : "textfield", 
         name : "pi_auditman", 
         fieldLabel : "审核人", 
-        readOnly:true
+        readOnly:true,
+        ignore:true
     }, {
         xtype : "datefield", 
         name : "pi_auditdate", 
         fieldLabel : "审核日期",
-        readOnly:true
+        readOnly:true,
+        ignore:true
     }]
 });