Ext.define('erp.view.sys.sale.SaleHelpDetail', {
extend: 'Ext.panel.Panel',
alias: 'widget.salehelpdetail',
tplMarkup: [
'{first_name} {last_name} ',
'Title: {title}
',
'Last Review ',
'Attendance: {attendance} ',
'Attitude: {attitude} ',
'Communication: {communication} ',
'Excellence: {excellence} ',
'Skills: {skills} ',
'Teamwork: {teamwork}'
],
height:90,
bodyPadding: 7,
initComponent: function() {
this.tpl = new Ext.Template(this.tplMarkup);
erp.view.sys.sale.SaleHelpDetail.superclass.initComponent.call(this);
}
});