You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DS7/DSWeb/Areas/MvcShipping/Viewsjs/MsOpBulk/MsOpBulkReceipt.js

44 lines
1.3 KiB
JavaScript

2 years ago
Ext.namespace('Shipping');
Shipping.MsOpBulkReceipt = function (config) {
Ext.applyIf(this, config);
this.initUIComponents();
window.Shipping.MsOpBulkReceipt.superclass.constructor.call(this);
};
Ext.extend(Shipping.MsOpBulkReceipt, Ext.Panel, {
ParentWin: null,
OpStatus: 'add',
StoreList: null,
EditRecord: null,
region: 'north',
initUIComponents: function () {
//枚举参照相关
//编辑form
// var condition = " BSNO='" + getUrlParam('id') + "'";
// this.BSNO = getUrlParam('id');
//按钮Toolbar
var mainform = window.parent._this;// Ext.getCmp('OpOtherEdit');
EditRecord = mainform.editRecord;
this.BSNO = EditRecord.get('BSNO');
this.panelReceipt = new Shipping.ReceiptEditGrid({
region: 'center',
layout: 'border'
});
this.panelReceipt.EditRecord = EditRecord;
this.panelReceipt.stroplb = 'op_bulk';
this.panelReceipt.strBSNO = EditRecord.get('BSNO');
this.panelReceipt.StoreDrOpRange.load({ params: { optype: "modOpReceiptManagement"} });
this.panelReceipt.storeDrOpReceipt.load({ params: { billno: this.BSNO, optype: "op_bulk"} });
Ext.apply(this, {
items: [this.panelReceipt]
});
}
});