Commit f571f191 authored by Quxl's avatar Quxl

x

parent cc3c64f8
...@@ -94,8 +94,9 @@ public class ActivityServiceImpl implements ActivityService { ...@@ -94,8 +94,9 @@ public class ActivityServiceImpl implements ActivityService {
+ " ProjectDays = datediff(dd, a.dStartDate, a.dEndDate) + 1, BeginDate = CONVERT(varchar(100), a.dStartDate, 111) , EndDate = CONVERT(varchar(100), a.dEndDate, 111) , ReturnDate = a.dReturnDate, " + " ProjectDays = datediff(dd, a.dStartDate, a.dEndDate) + 1, BeginDate = CONVERT(varchar(100), a.dStartDate, 111) , EndDate = CONVERT(varchar(100), a.dEndDate, 111) , ReturnDate = a.dReturnDate, "
+ " DiffDay = datediff(d,GETDATE(), a.dEndDate) , LastUpdateTime = dLastUpdateTime, " + " DiffDay = datediff(d,GETDATE(), a.dEndDate) , LastUpdateTime = dLastUpdateTime, "
+ " PicUrl = (select top 1 sZHPicUrl from tZHPic where nProjectID = a.nProjectID and nZHPicTypeID = 1)," + " PicUrl = (select top 1 sZHPicUrl from tZHPic where nProjectID = a.nProjectID and nZHPicTypeID = 1),"
+ " SaleQty = a.nSaleQty ," + " PaperQty = ISNULL(a.nSalePaperQty, 0), "
+ " SaleAmount = a.nSaleAmount " + " SaleQty = ISNULL(a.nSaleQty, 0), "
+ " SaleAmount = ISNULL(a.nSaleAmount, 0) "
+ " FROM tZHCProject a " + " FROM tZHCProject a "
+ " WHERE a.nTag&2=2 AND a.nTag&1=0 and a.sOrgNO = '"+orgNo+"' AND getdate() BETWEEN a.dStartDate AND a.dEndDate "; + " WHERE a.nTag&2=2 AND a.nTag&1=0 and a.sOrgNO = '"+orgNo+"' AND getdate() BETWEEN a.dStartDate AND a.dEndDate ";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment