|
@@ -4155,7 +4155,7 @@ namespace OASystem.API.Controllers
|
|
builder.Write(rate.ToString("#0.0000"));//汇率
|
|
builder.Write(rate.ToString("#0.0000"));//汇率
|
|
builder.MoveToCell(0, accommodationStartIndex, 8, 0);
|
|
builder.MoveToCell(0, accommodationStartIndex, 8, 0);
|
|
|
|
|
|
- decimal rbmPrice = rate * dac.SubTotal;
|
|
|
|
|
|
+ decimal rbmPrice = dac.SubTotal;
|
|
builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
|
|
builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
|
|
accommodationStartIndex++;
|
|
accommodationStartIndex++;
|
|
dac1totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
|
|
dac1totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
|
|
@@ -4209,7 +4209,7 @@ namespace OASystem.API.Controllers
|
|
builder.Write(rate.ToString("#0.0000"));//汇率
|
|
builder.Write(rate.ToString("#0.0000"));//汇率
|
|
|
|
|
|
builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
|
|
builder.MoveToCell(0, foodandotherStartIndex, 8, 0);
|
|
- decimal rbmPrice = rate * dac.SubTotal;
|
|
|
|
|
|
+ decimal rbmPrice = dac.SubTotal;
|
|
builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
|
|
builder.Write(rbmPrice.ToString("#0.00"));//折合人民币
|
|
foodandotherStartIndex++;
|
|
foodandotherStartIndex++;
|
|
dac2totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
|
|
dac2totalPrice += Convert.ToDecimal(rbmPrice.ToString("#0.00"));
|