| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- Ext.define('saas.view.sale.saleout.QueryPanelController', {
- extend: 'saas.view.core.query.QueryPanelController',
- alias: 'controller.sale-saleout-queryformcontroller',
- init: function (form) {
- var me = this;
- this.control({
- //放大镜赋值关系 以及 tpl模板
- 'dbfindtrigger[name=sa_custname]':{
- beforerender:function(f){}
- },
- //放大镜赋值关系 以及 tpl模板
- 'dbfindtrigger[name=pd_prodcode]':{
- beforerender:function(f){
- Ext.apply(f,{
- conditionCode:'pr_code',
- dataUrl:'http://192.168.253.41:9480/api/document/product/getProductsByCondition',
- dbfinds:[{
- from:'pr_code',to:'pd_prodcode',
- from:'pr_unit',to:'pd_unit'
- }],
- dbtpls:[{
- field:'pr_code',width:100
- },{
- field:'pr_detail',width:100
- }],
- dbColumns:[{
- "text": "物料ID",
- "flex": 0,
- "dataIndex": "pr_id",
- "width": 0,
- "xtype": "",
- "items": null
- },{
- "text": "物料编号",
- "flex": 1,
- "dataIndex": "pr_code",
- "width": 100,
- "xtype": "",
- "items": null
- }, {
- "text": "物料名称",
- "flex": 1,
- "dataIndex": "pr_detail",
- "xtype": "",
- "items": null
- }, {
- "text": "物料规格",
- "flex": 0,
- "dataIndex": "pr_spec",
- "width": 200,
- "xtype": "",
- "items": null
- }, {
- "text": "物料单位",
- "flex": 0,
- "dataIndex": "pr_unit",
- "width": 200,
- "xtype": "",
- "items": null
- }]
- }) ;
- }
- }
- });
- }
- });
|