瀏覽代碼

解决部分bug:盈亏计算bug

yu.jie 3 年之前
父節點
當前提交
c6a7a4db36
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      RMA/app/src/main/java/cn/muchinfo/rma/global/data/AccountData.kt

+ 2 - 2
RMA/app/src/main/java/cn/muchinfo/rma/global/data/AccountData.kt

@@ -243,9 +243,9 @@ open class AccountData(
                             if (it.buyorsell == "1") { //卖方向
                                 Profit = NumberUtils.roundNum(
                                     (quoteDayData.getPrice()).times(it.curpositionqty?.toDouble() ?: 0.0)
-                                        .times(goodsInfo2.agreeunit).minus((it.curholderamount?.toDouble() ?: 0.0).times(-1)).toString(),
+                                        .times(goodsInfo2.agreeunit).minus(it.curholderamount?.toDouble() ?: 0.0).toString(),
                                     2
-                                ).toDouble()
+                                ).toDouble().times(-1)
                             } else {
                                 Profit = NumberUtils.roundNum(
                                     (quoteDayData.getPrice()).times(it.curpositionqty?.toDouble() ?: 0.0)