$(document).ready(function () {
$("i[data-current-stock='true']").mouseover(function () {
var target = $(this);
if (target.attr("data-show-stock")) {
return false;
}
$("i[data-current-stock='true']").removeAttr("data-show-stock");
var vsid = target.attr("data-sid");
var vcas = target.attr("data-cas");
var source = $("#dv_current_stock");
source.show();
if (target.parent().has(source).length == 0) {
target.parent().append(source);
}
source.html("
");
source.append("");
var source1 = $("
");
$.ajax({
url: "http://hg.y866.cn/chemical/SearchSup",
data: {act:"GetKucun",casId:vcas,salerId:vsid},
timeout: 20000,
error: AjaxFailed,
dataType: "json",
type: "post",
success: function (ret) {
var dataOrigin = ret.DataOrigin;
var data = ret.Data;
var len = data.length;
if (len > 0) {
source.html("");
source.append("");
}
else {
source.html("暂无库存");
source.append("");
}
for (var i = 0; i < len; i++) {
var entity = data[i];
if (i == 0) {
//source.append("更新时间:" + entity.Date);
}
var tupu = "";
if (entity.Accessory) {
for (var t = 0; t < entity.Accessory.length; t++) {
tupu += '图谱(' + (t + 1) + ')'
}
}
if (entity.ProductName == "" || entity.ProductName == null) {
source1.append("" + $(target).attr("data-product-name") + entity.PurityBrand + tupu + "
");
}
else {
source1.append("" + entity.ProductName + tupu + "
");
}
var stocks = entity.Items;
var lenStock = stocks.length;
var table = $("").attr({
width: "100%",
cellspacing: 0,
cellpadding: 0,
border: 0,
style:"font-size:14px;",
"class": "stocklist"
});
table.append("包装 | 价格 | 库存 | 库存地点 |
");
for (var j = 0; j < lenStock; j++) {
var stock = stocks[j];
table.append("" + stock.PackAge + " | " + stock.Price + " | " + stock.Stock + " | " + stock.Location + " |
");
}
source1.append(table);
}
source.append(source1);
if (dataOrigin) {
source.append('
');
}
target.attr("data-show-stock", "true");
}
})
});
$("#dv_current_stock").on("click", ".close", function (event) {
$(this).parent().hide();
$("i[data-current-stock='true']").removeAttr("data-show-stock");
});
$("div[data-current-price='true']").show(function () {
var target = $(this);
var vsid = target.attr("data-sid");
var vcas = target.attr("data-cas");
var source = $("#dv_current_price"+vsid);
$.ajax({
url: "http://hg.y866.cn/chemical/SearchSup",
data: {act:"GetKucun",casId:vcas,salerId:vsid},
timeout: 20000,
error: AjaxFailed,
dataType: "json",
type: "post",
success: function (ret) {
var dataOrigin = ret.DataOrigin;
var data = ret.Data;
var len = data.length;
if (len >=1) {
source.html("");
}
else {
source.append("¥需询单5g
");
}
if(len>=1)len=1;
for (var i = 0; i < len; i++) {
var entity = data[i];
var stocks = entity.Items;
var lenStock = stocks.length;
if(lenStock>3) lenStock=3;
for (var j = 0; j < lenStock; j++) {
var stock = stocks[j];
source.append("¥" + stock.Price+""+stock.PackAge+"
"); }
}
}
})
});
});