|
|
@@ -149,6 +149,26 @@ Ext.define('saas.view.document.kind.KindModel', {
|
|
|
},
|
|
|
pageSize: null,
|
|
|
autoLoad: false
|
|
|
+ },
|
|
|
+ address: {
|
|
|
+ fields:[
|
|
|
+ {name: 'id', type: 'int'},
|
|
|
+ {name: 'ad_address', type: 'string'},
|
|
|
+ {name: 'ad_recorddate', type: 'date'}
|
|
|
+ ],
|
|
|
+ proxy: {
|
|
|
+ type: 'ajax',
|
|
|
+ url: '/api/document/address/list',
|
|
|
+ actionMethods: {
|
|
|
+ read: 'GET'
|
|
|
+ },
|
|
|
+ reader: {
|
|
|
+ type: 'json',
|
|
|
+ rootProperty: 'data.list'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ pageSize: null,
|
|
|
+ autoLoad: false
|
|
|
}
|
|
|
}
|
|
|
});
|