Browse Source

Bug #1467 计提期限,提示错误

MaiXinRong 8 years ago
parent
commit
740feeeb69
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Forms/DealPayPlanFrm.pas

+ 2 - 2
Forms/DealPayPlanFrm.pas

@@ -250,8 +250,8 @@ procedure TDealPayPlanForm.AssignResult;
   begin
     case PlanType of
       0: Result := '无';
-      1: Result := Format('当 计量期数 > %d 时,', [PhaseDeadline]);
-      2: Result := Format('当 %s > %f 时', [PlanSubTypeName, PriceDeadline]);
+      1: Result := Format('当 计量期数 >= %d 时,', [PhaseDeadline]);
+      2: Result := Format('当 %s >= %f 时', [PlanSubTypeName, PriceDeadline]);
     end;
   end;