using System;
|
using System.Collections.Generic;
|
using System.Text;
|
using SQLHelper;
|
using DBUtility;
|
|
namespace DAL
|
{
|
public class Cls_S_Xs_CustomsBill : Cls_S_Xt_BaseBill
|
{
|
|
public Cls_S_Xs_CustomsBill()
|
{
|
base.ViewName = "h_v_Xs_CustomsBillList";
|
base.mvarReportTitle = "报关单";
|
base.mvarItemKey = "1477";
|
base.sCondtion = " and isnull(审核人,'')<>'' and isnull(关闭人,'')='' and isnull(作废人,'')='' and 关联数量<数量 ";
|
base.sOrderSql = " order by 单据号 desc,hsubid ";
|
base.sKeyCol = "客户";
|
|
|
base.ViewName2 = "h_v_Xs_CustomsBillList";
|
base.mvarReportTitle2 = "报关单";
|
base.mvarItemKey2 = "1477";
|
base.sCondtion2 = " and isnull(审核人,'')<>'' and isnull(作废人,'')='' and 关联数量>0 ";
|
base.sOrderSql2 = " order by 单据号 desc,hsubid ";
|
base.sKeyCol2 = "客户";
|
|
}
|
//
|
|
|
}
|
}
|