Przeglądaj źródła

三公费用 模板调整

leiy 1 rok temu
rodzic
commit
3cb050408f

+ 2 - 2
OASystem/OASystem.Api/Controllers/GroupsController.cs

@@ -4155,7 +4155,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 +4209,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"));