wzp
2022-07-12 705909e14fe4e9f2fc261ee4eb40a8b41fa2f6d4
web/web/GwOrder.ashx
@@ -587,7 +587,7 @@
        //获取账号信息
        GwSp gwSp = _GwSpDao.Get(spId);
        int balance = 0;
        Int64 balance = 0;
        if (gwSp == null)
        {
            throw new ArgumentException("账号不存在!");
@@ -600,7 +600,7 @@
        //获取客户信息
        GwClient gwClient = _GwClientDao.Get(gwSp.ClientID);
        balance =  int.Parse(gwClient.Balance.ToString() );
        balance =  Int64.Parse(gwClient.Balance.ToString() );
        //为1-预付费
        //if (gwSp.ChargeType==1 && (balance + payAmount) < num * basicNum)