⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 exportbillsearchconpage.java

📁 用jsp,java写的在线购物系统
💻 JAVA
字号:
// Decompiled by Jad v1.5.7g. Copyright 2000 Pavel Kouznetsov.
// Jad home page: http://www.geocities.com/SiliconValley/Bridge/8617/jad.html
// Decompiler options: packimports(3) fieldsfirst ansi 
// Source File Name:   ExportBillSearchConPage.java

package mediastore.web.page;

import java.io.PrintStream;
import javax.servlet.http.HttpServletRequest;
import mediastore.dao.GoodsExportInfo;
import mediastore.rule.ExportBillSearchRule;
import mediastore.web.form.ExportBillSearchConFB;
import mediastore.web.global.Globals;
import mediastore.web.struts.ActionContext;
import mediastore.web.struts.DynamicForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;

public class ExportBillSearchConPage
{

    public ExportBillSearchConPage()
    {
    }

    public static ActionForward show(ActionContext actionContext)
        throws Exception
    {
        System.out.println("---Start: ExportBillSearchConPage::show(actionContext)---");
        DynamicForm dynaForm = (DynamicForm)actionContext.getForm();
        ExportBillSearchRule ebsr = (ExportBillSearchRule)dynaForm.get("exportBillSearchRule");
        System.out.println("location_1");
        GoodsExportInfo gei = new GoodsExportInfo();
        mediastore.web.form.ExportBillSearchResultInfo ebsri = null;
        if(ebsr == null)
            ebsri = null;
        else
            ebsri = gei.getBillListByRule(ebsr);
        ExportBillSearchConFB ebscfb = new ExportBillSearchConFB();
        java.util.List billIdList = gei.getBillIdList();
        java.util.List memberIdList = gei.getMemberIdList();
        java.util.List salesPersonsList = gei.getSalesPersonsList();
        int pageRecNum = Globals.REC_NUM_OF_PAGE;
        int startRecNum = 1;
        if(ebsr == null)
            startRecNum = 1;
        else
            startRecNum = ebsr.getStartRecNum();
        System.out.println("location_5");
        ebscfb.setBillIdList(billIdList);
        ebscfb.setMemberIdList(memberIdList);
        ebscfb.setSalesPersonsList(salesPersonsList);
        ebscfb.setEbsri(ebsri);
        ebscfb.setEbsr(ebsr);
        ebscfb.setStartRecNum(startRecNum);
        ebscfb.setPageRecNum(pageRecNum);
        actionContext.getRequest().setAttribute(Globals.REQUEST_EXPORTBILLSEARCHCON, ebscfb);
        System.out.println("---End: ExportBillSearchConPage::show(actionContext)---");
        return actionContext.getMapping().findForward("ExportBillSearchCon");
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -