Ext.namespace('Shipping');

Shipping.SeaeReceipt = function (config) {
    Ext.applyIf(this, config);
    this.initUIComponents();
    window.Shipping.SeaeReceipt.superclass.constructor.call(this);
};

Ext.extend(Shipping.SeaeReceipt, 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.panelEdit; // Ext.getCmp('OpSeaiEdit');
        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_Seae';
        this.panelReceipt.strBSNO = EditRecord.get('BSNO');
        this.panelReceipt.StoreDrOpRange.load({ params: { optype: "modOpReceiptManagement"} });
        this.panelReceipt.storeDrOpReceipt.load({ params: { billno: this.BSNO, optype: "op_Seae"} });
        this.panelReceipt.storeDocList.load({ params: { condition: " BSNO='" + this.BSNO + "'"} });



        Ext.apply(this, {
            items: [this.panelReceipt]
        });
    }
});