@ -387,8 +387,6 @@ namespace Win.Sfs.SettleAccount.Reports.ReportServices
BaseRequestDto request
)
{
List < CustomCondition > customConditionList = new List < CustomCondition > ( ) ;
customConditionList . Add ( new CustomCondition ( ) { Name = "Version" , Value = string . IsNullOrEmpty ( request . Version ) ? string . Empty : request . Version } ) ;
customConditionList . Add ( new CustomCondition ( ) { Name = "MaterialCode" , Value = string . IsNullOrEmpty ( request . MaterialCode ) ? string . Empty : request . MaterialCode } ) ;
@ -433,10 +431,6 @@ namespace Win.Sfs.SettleAccount.Reports.ReportServices
customConditionList . Add ( new CustomCondition ( ) { Name = "MaterialGroup" , Value = string . IsNullOrEmpty ( request . MaterialGroup ) ? string . Empty : request . MaterialGroup } ) ;
customConditionList . Add ( new CustomCondition ( ) { Name = "SapCode" , Value = string . IsNullOrEmpty ( request . SapCode ) ? string . Empty : request . SapCode } ) ;
var _ taskid = await _ service . ExportEnqueueAsync ( "准时化结算核对明细" , ExportExtentsion . Excel , request . Version , string . IsNullOrEmpty ( request . MaterialGroup ) ? string . Empty : request . MaterialGroup , CurrentUser , typeof ( InvoiceSettledDetailDiffExportService ) , customConditionList , ( rs ) = >
{
} ) ;
@ -491,14 +485,15 @@ namespace Win.Sfs.SettleAccount.Reports.ReportServices
)
{
List < CustomCondition > customConditionList = new List < CustomCondition > ( ) ;
customConditionList . Add ( new CustomCondition ( ) { Name = "Version" , Value = ! string . IsNullOrEmpty ( input . Version ) ? input . Version : string . Empty } ) ;
customConditionList . Add ( new CustomCondition ( ) { Name = "CustomerCode" , Value = string . Empty } ) ;
customConditionList . Add ( new CustomCondition ( ) { Name = "MaterialCode" , Value = ! string . IsNullOrEmpty ( input . MaterialCode ) ? input . MaterialCode : string . Empty } ) ;
customConditionList . Add ( new CustomCondition ( ) { Name = "MaterialGroup" , Value = ! string . IsNullOrEmpty ( input . MaterialGroup ) ? input . MaterialGroup : string . Empty } ) ;
customConditionList . Add ( new CustomCondition ( ) { Name = "SapMaterialCode" , Value = string . Empty } ) ;
customConditionList . Add ( new CustomCondition ( ) { Name = "Begin" , Value = ! string . IsNullOrEmpty ( input . Begin ) ? string . Empty : input . Begin } ) ;
customConditionList . Add ( new CustomCondition ( ) { Name = "End" , Value = ! string . IsNullOrEmpty ( input . End ) ? string . Empty : input . End } ) ;
customConditionList . Add ( new CustomCondition ( ) { Name = "Begin" , Value = string . IsNullOrEmpty ( input . Begin ) ? string . Empty : input . Begin } ) ;
customConditionList . Add ( new CustomCondition ( ) { Name = "End" , Value = string . IsNullOrEmpty ( input . End ) ? string . Empty : input . End } ) ;
customConditionList . Add ( new CustomCondition ( ) { Name = "KennCode" , Value = string . IsNullOrEmpty ( input . Kenncode ) ? string . Empty : input . Kenncode } ) ;
customConditionList . Add ( new CustomCondition ( ) { Name = "ChassisNumber" , Value = string . IsNullOrEmpty ( input . ChassisNumber ) ? string . Empty : input . ChassisNumber } ) ;
customConditionList . Add ( new CustomCondition ( ) { Name = "SapCode" , Value = string . IsNullOrEmpty ( input . SapCode ) ? string . Empty : input . SapCode } ) ;