﻿/**---------------------------- 放货品入购物车处理 ----------------------------**/
//提交处理
function PutGoodsInCartProcess()
{
   var vGoodsID=$("_hidGoodsID").value;
   var vGoodsPhotoCategoryID=$("selGoodsPhotoCategory").value;//商品图片分类id
 
    var vPickSpecification="no";
    if($("_hidSpecificationCount").value!=0)
    {
        vPickSpecification=$("_hidPickSpecification").value;
        vSpecificationCount=$("_hidSpecificationCount").value;
         
        if(vSpecificationCount==0)
        {
           vPickSpecification="no";
        }
        else if(vPickSpecification=="-1")
        {
            alert("请选择尺码");return;
        }   
   }     
        
   if($("_hidCurrentMemberID").value!=-1)
   {
       if($("_hidGoodsID")){
          var vGoodsID=$("_hidGoodsID").value;
          //var vTags="null";
          //if(confirm("确定收藏当前商品!?"))
          //AjaxService.DoCollectedGoodsProcess(vGoodsID, vTags,CollectedGoodsProcess_callback);
          AjaxService.DoPutGoodsToBasket(vGoodsID,vGoodsPhotoCategoryID,vPickSpecification,PutGoodsInCartProcess_callback);
       }
   }else{
      //alert("您还没登录");
      //$("spanCollectGoods").innerHTML= "您还没登录,点击<a href='http://passport.cosize.com/Members/Login/LoginCenter.aspx?from="+window.location.href+"'>这里</a>登录"; 
      $("spanPutGoodsInCartProcess").innerHTML= "您还没登录,点击<a href='http://passport.cosize.com/Members/Login/LoginCenter.aspx?from="+window.location.href+"'>这里</a>登录"; 
   }
}
function PutGoodsInCartProcess_callback(response)
{
  //alert(response.request.responseText);
  var vRes=response.request.responseText;
  if(vRes.length>0) vRes=vRes.substring(1,vRes.length-1) ;
  if(vRes=="0"){
     //alert("收藏当前商品成功!");
     //alert("放入购物袋成功!");
     //$("spanPutGoodsInCartProcess").innerHTML= "放入购物袋成功";
     //$("spanPutGoodsInCartProcess").innerHTML= "您还没登录,点击<a href='http://passport.cosize.com/Members/Login/LoginCenter.aspx?from="+window.location.href+"'>这里</a>登录"; 
     alert("放入购物袋成功!");
     window.location.href=window.location.href;
     //window.location.href="http://www.cosize.com";
  }
  else{
     alert(vRes);
  }
}
/**---------------------------- 收藏商品处理[end] ----------------------------**/
