1234567891011121314151617181920212223242526272829303132333435 |
- Ext.define('make.view.make.bom.BomCompare', {
- extend: 'Ext.container.Container',
- xtype: 'make-bom-bomcompare',
- cls: 'core-base-basepanel',
- layout: 'vbox',
- caller: 'BomCompare',
- viewModel: {
- data: {
- form : {
- code1:null,
- code2:null,
- code3:null,
- code4:null,
- code5:null
- },
- single:false,
- differ:false,
- noCompareLocation:false
- },
-
- },
- initComponent: function () {
- var me = this;
- Ext.apply(me, {
- items: [{
- xtype: 'make-bom-bomcompareform'
- }, {
- xtype: "make-bom-bomcomparegrid",
- flex: 1
- }]
- })
- this.callParent(arguments);
- },
- });
|