Merge branch 'fix-report-zzs'

This commit is contained in:
zzs01@yunemao.com 2024-09-06 15:34:43 +08:00
commit 7f3dcb4e65

View File

@ -81,6 +81,9 @@ public class CompleteShipDetailReportPlugin extends AbstractReportListDataPlugin
dataSet = dataSet.where(sb.toString()); dataSet = dataSet.where(sb.toString());
dataSet = dataSet.select(String.join(",", RptUtil.getDataSetFiledAlias(dataSet)) + "," +
"CASE WHEN yem_dnbillno IS NOT NULL AND yem_dnbillno != '' THEN '是' ELSE '否' END yem_isshiped");
return dataSet; return dataSet;
} }