|
@@ -199,10 +199,10 @@ Order By i.id Desc ", sqlWhere);
|
|
|
{
|
|
|
var info = _DecreasePayments[i];
|
|
|
var priceExpNames = new List<string>();
|
|
|
- if (info.InviteCost > 0) priceExpNames.Add("邀请费");
|
|
|
- if (info.SendCost > 0) priceExpNames.Add("快递费");
|
|
|
- if (info.EventsCost > 0) priceExpNames.Add("公务活动费");
|
|
|
- if (info.TranslateCost > 0) priceExpNames.Add("公务翻译费");
|
|
|
+ if (info.InviteCost != 0.00M) priceExpNames.Add("邀请费");
|
|
|
+ if (info.SendCost != 0.00M) priceExpNames.Add("快递费");
|
|
|
+ if (info.EventsCost != 0.00M) priceExpNames.Add("公务活动费");
|
|
|
+ if (info.TranslateCost != 0.00M) priceExpNames.Add("公务翻译费");
|
|
|
|
|
|
if (priceExpNames != null && priceExpNames.Count > 0)
|
|
|
{
|