Exemple #1
0
 // 修改缴费单-确认修改
 public static bool UpdatePayment(tk_Payment payment, decimal LowPrice, ref string a_strErr)
 {
     if (FlowMeterPro.UpdatePayment(payment, LowPrice, ref a_strErr) >= 1)
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }
Exemple #2
0
 // 新增缴费记录-确定新增缴费记录
 public static bool AddNewPay(tk_Payment payment, string Checks, decimal LowPrice, ref string a_strErr)
 {
     if (FlowMeterPro.AddNewPay(payment, Checks, LowPrice, ref a_strErr) >= 2)
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }