|
@@ -206,12 +206,12 @@ func (this *ActivitySpecialTripCoAntroller) AddUser() {
|
|
|
return
|
|
|
}
|
|
|
if userType == 2 {
|
|
|
- tripRemaining = tripRemaining-itemBill.BillDetailed-i
|
|
|
+ tripRemaining = tripRemaining+itemBill.BillDetailed-i
|
|
|
itemBill.Total = strconv.Itoa(tripRemaining) + "次"
|
|
|
} else {
|
|
|
for k, num := range mapChartName {
|
|
|
if activityInfo.ChartPermissionName == k {
|
|
|
- num = num- itemBill.BillDetailed - i
|
|
|
+ num = num + itemBill.BillDetailed - i
|
|
|
}
|
|
|
itemBill.Total += k + strconv.Itoa(num) + "次+"
|
|
|
}
|