123456789101112131415161718192021222324252627282930 |
- Ext.define('erp.view.hr.emplmana.Job',{
- extend: 'Ext.Viewport',
- layout: 'fit',
- hideBorders: true,
- initComponent : function(){
- var me = this;
- Ext.apply(me, {
- items: [{
- layout: 'anchor',
- items: [{
- xtype: 'erpFormPanel',
- anchor: '100% 100%',
- saveUrl: 'hr/employee/saveJob.action',
- deleteUrl: 'hr/employee/deleteJob.action',
- updateUrl: 'hr/employee/updateJob.action',
- auditUrl: 'common/auditCommon.action?caller=' +caller,
- resAuditUrl: 'common/resAuditCommon.action?caller=' +caller,
- submitUrl: 'common/submitCommon.action?caller='+caller,
- resSubmitUrl: 'common/resSubmitCommon.action?caller='+caller,
- bannedUrl: 'hr/employee/bannedJob.action',
- resBannedUrl: 'hr/employee/resBannedJob.action',
- getIdUrl: 'common/getId.action?seq=JOB_SEQ',
- keyField: 'jo_id',
- codeField: 'jo_code'
- }]
- }]
- });
- me.callParent(arguments);
- }
- });
|