|
@@ -4047,14 +4047,6 @@ namespace OASystem.API.Controllers
|
|
|
|
|
|
string strFileName = _DelegationInfo.TeamName + "出入境费用.docx";
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
doc.Save(AppSettingsHelper.Get("WordBasePath") + "EnterExitCost/File/" + strFileName);
|
|
|
string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/EnterExitCost/File/" + strFileName;
|
|
|
return Ok(JsonView(true, "成功", new { Url = url }));
|
|
@@ -4155,7 +4147,7 @@ namespace OASystem.API.Controllers
|
|
|
builder.Write(rate.ToString("#0.0000"));
|
|
|
builder.MoveToCell(0, accommodationStartIndex, 8, 0);
|
|
|
|
|
|
- decimal rbmPrice = rate * dac.SubTotal;
|
|
|
+ decimal rbmPrice = dac.SubTotal;
|
|
|
builder.Write(rbmPrice.ToString("#0.00"));
|
|
|
accommodationStartIndex++;
|
|
|
dac1totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
|
|
@@ -4209,7 +4201,7 @@ namespace OASystem.API.Controllers
|
|
|
builder.Write(rate.ToString("#0.0000"));
|
|
|
|
|
|
builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
|
|
|
- decimal rbmPrice = rate * dac.SubTotal;
|
|
|
+ decimal rbmPrice = dac.SubTotal;
|
|
|
builder.Write(rbmPrice.ToString("#0.00"));
|
|
|
foodandotherStartIndex++;
|
|
|
dac2totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
|
|
@@ -4239,7 +4231,7 @@ namespace OASystem.API.Controllers
|
|
|
}
|
|
|
|
|
|
|
|
|
- decimal allPrice = dac1totalPrice + dac2totalPrice + _EnterExitCosts.CityTranffic + _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket;
|
|
|
+ decimal allPrice = dac1totalPrice + dac2totalPrice + _EnterExitCosts.Visa + _EnterExitCosts.Safe + _EnterExitCosts.Ticket;
|
|
|
|
|
|
|
|
|
|