|
|
@@ -10923,7 +10923,7 @@ FROM
|
|
|
exp.AndIF(_dto.Label != -1, it => it.CTable == _dto.Label);
|
|
|
|
|
|
// 费用类型为机票时,排除 金额、币种为0 的数据
|
|
|
- exp.AndIF(_dto.Label == 85, it => it.PayMoney > 0.00M && it.PaymentCurrency > 0);
|
|
|
+ exp.AndIF(_dto.Label == 85, it => it.PayMoney != 0.00M && it.PaymentCurrency != 0);
|
|
|
|
|
|
|
|
|
if (auditStatus == approvedStatus) exp.And(it => approvedAuditIds.Contains(it.IsAuditGM));
|
|
|
@@ -16857,9 +16857,9 @@ FROM
|
|
|
[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
|
|
|
public async Task<IActionResult> GetEnterExitCostCorrelationTips(EnterExitCostInfobyDiIdDto dto)
|
|
|
{
|
|
|
- var groupInfo = await _sqlSugar.Queryable<Grp_DelegationInfo>().FirstAsync(it => it.Id == dto.DiId && it.IsDel == 0);
|
|
|
+ // var groupInfo = await _sqlSugar.Queryable<Grp_DelegationInfo>().FirstAsync(it => it.Id == dto.DiId && it.IsDel == 0);
|
|
|
|
|
|
- //默认币种显示
|
|
|
+ // 默认币种显示
|
|
|
var reteInfos = await GeneralMethod.EnterExitCostLiveRate();
|
|
|
var visaData = await _visaFeeInfoRep.EnterExitCostVisaTips(dto.DiId);
|
|
|
var airData = await GeneralMethod.EntryAndExitTips(dto.DiId);
|