change:整机发运明细表

This commit is contained in:
zzs01@yunemao.com 2024-09-06 15:34:25 +08:00
parent 50f0645265
commit 51d8af6a7d

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;
} }