yzh
2022-06-30 a6a84e6f677447342e8c5984fdc0b52241b92ce3
web/web/GwOrder.ashx
@@ -25,7 +25,7 @@
    //private List<GwProduct> _ProductClassList;  //产品分类
    
    private int _userId = -1;
    private int _userType = -1;
    private string _userType = "";
    private string _account = "";
    public override JsonPageResult ProcessRequestInternal(PageContext<SysUser> context)
@@ -817,23 +817,24 @@
            }
            GwOrder gwOrder = new GwOrder();
            GwClient gwClient = new GwClient();
            using (GwClientDao gwClientDao = new GwClientDao())
            {
                gwClient = gwClientDao.Get(gwSp.ClientID);
                gwOrder.Company = gwClient.Company;
                gwOrder.Balance = long.Parse(gwClient.Balance.ToString() );    //余额
            }
            GwOrder gwOrder = new GwOrder();
                gwOrder.SpId = gwSp.SpID;
                gwOrder.ClientId = gwSp.ClientID;
                gwOrder.ProductId = gwSp.ProductId;
                gwOrder.ProductName = gwSp.ProductName;
                gwOrder.Price = gwSp.Price;
                gwOrder.BasicNum = gwSp.BasicNum;  //基本条数
                gwOrder.GivingNum = gwSp.GivingNum;
                gwOrder.Balance = long.Parse(gwClient.Balance.ToString() );    //余额
                gwOrder.GivingNum = gwSp.GivingNum;
                
            return new JsonPageResult(true, gwOrder);
        }