|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
|
|
|
"http://www.w3.org/TR/html4/loose.dtd">
|
|
|
<html>
|
|
|
<head>
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
|
|
<title></title>
|
|
|
<!--<style type="text/css">-->
|
|
|
<!--*{margin:0;padding:0;color: #838383;}-->
|
|
|
<!--table{font-size: 12px;margin: 10px;line-height: 30px; width: 80%; margin: 50px auto;}-->
|
|
|
<!--.txt{width:300px;height:21px;line-height:21px;border:1px solid #d7d7d7;}-->
|
|
|
<!--</style>-->
|
|
|
<script src="/pfcms/js/include_grass.js"></script>
|
|
|
|
|
|
</head>
|
|
|
<body>
|
|
|
|
|
|
|
|
|
<div id="tt" class="easyui-layout" fit="true" >
|
|
|
<form name="publishArticleForm" id="publishArticleForm" method="post" >
|
|
|
<div style="margin-top: 20px;margin-left: 30px">
|
|
|
<table border="0" style="width:95%;margin-top:5px;line-height:30px;" id="tab">
|
|
|
|
|
|
<tr style="height: 60px">
|
|
|
<td >
|
|
|
<span style="color:red">*</span><label>手动搜索商品</label> <br>
|
|
|
<input id="skn" name="skn" class="easyui-textbox" style="width: 380px;"/>
|
|
|
<a id="searchGoodBtn" class="go-search btn btn-primary">搜索商品</a>
|
|
|
<a id="searchUfoBtn" class="go-search btn btn-primary">搜索UFO商品</a>
|
|
|
</td>
|
|
|
</tr>
|
|
|
|
|
|
</table>
|
|
|
</div>
|
|
|
</form>
|
|
|
<table id="labelGroupListTable"></table>
|
|
|
</div>
|
|
|
<div region="center" id="labelGroupList" style="margin-left: 20px">
|
|
|
</div>
|
|
|
|
|
|
|
|
|
<!--页面中一定要引入internal.js为了能直接使用当前打开dialog的实例变量-->
|
|
|
<!--internal.js默认是放到dialogs目录下的-->
|
|
|
<!--<script type="text/javascript" src="../../third-party/jquery-1.10.2.min.js"></script>-->
|
|
|
<script type="text/javascript" src="../internal.js"></script>
|
|
|
<script>
|
|
|
var checkedItems = [];
|
|
|
var checkedItemsObj = {};
|
|
|
var searchType = 1;
|
|
|
var checkType = 1;
|
|
|
$(function () {
|
|
|
|
|
|
|
|
|
|
|
|
function handleDialogOk(){
|
|
|
var skns = '';
|
|
|
if(checkedItems.length == 0){
|
|
|
return;
|
|
|
}
|
|
|
var goodsHtml='';
|
|
|
for (var i = 0; i < checkedItems.length; i++) {
|
|
|
goodsHtml+=buildgood(i,checkedItems[i]);
|
|
|
}
|
|
|
// editor.setContent(goodsHtml,true);
|
|
|
editor.focus();
|
|
|
editor.execCommand('inserthtml',goodsHtml);
|
|
|
dialog.close();
|
|
|
|
|
|
}
|
|
|
|
|
|
dialog.onok = handleDialogOk;
|
|
|
|
|
|
function buildgood(index,obj) {
|
|
|
debugger;
|
|
|
var data = checkedItemsObj[obj.productSkn];
|
|
|
var goodDiv = '<div class="yhproduct" data-option="'+data.product_skn+'">';
|
|
|
var goods = gooddiv(data);
|
|
|
var goodDivEnd = '</div>';
|
|
|
return goodDiv+goods+goodDivEnd;
|
|
|
}
|
|
|
|
|
|
function gooddiv(data) {
|
|
|
|
|
|
return '商品图:<img width=\"120\" height=\"60\" src="'+getImageUrl(data.default_images)+ '">' +
|
|
|
'<h5 style=\"margin-top: 0px;margin-bottom: 0px\">商品名:'+ data.product_name +'</h5>\n'+
|
|
|
'<h5 style=\"margin-top: 0px;margin-bottom: 0px\">价格:'+data.sales_price+'</h5>\n';
|
|
|
}
|
|
|
|
|
|
function getImageUrl(image) {
|
|
|
var result='';
|
|
|
if (image) {
|
|
|
if(image.indexOf('http://') == 0){
|
|
|
result = image.split("?")[0];
|
|
|
}else{
|
|
|
var fileMode = image.substring(15, 17);
|
|
|
if(fileMode=='01'){
|
|
|
result= "http://"+"img11.static.yhbimg.com"+"/goodsimg"+image;
|
|
|
}
|
|
|
if(fileMode=='02'){
|
|
|
result= "http://"+"img12.static.yhbimg.com"+"/goodsimg"+image;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
else {
|
|
|
result = ""
|
|
|
}
|
|
|
if (result) {
|
|
|
return result + "?imageMogr2/thumbnail/320x320/extent/320x320/background/d2hpdGU=/position/center/quality/90";
|
|
|
} else {
|
|
|
return "";
|
|
|
}
|
|
|
}
|
|
|
|
|
|
|
|
|
// ---------------------------------------------/**/
|
|
|
|
|
|
$("#searchUfoBtn").linkbutton({
|
|
|
iconCls : "icon-search",
|
|
|
onClick : function() {
|
|
|
searchType=2;
|
|
|
|
|
|
$("#labelGroupListTable").datagrid("load", {
|
|
|
query: $("#skn").textbox("getValue"),
|
|
|
// sales: "Y",
|
|
|
type: "UFO"});
|
|
|
}
|
|
|
});
|
|
|
$("#searchGoodBtn").linkbutton({
|
|
|
iconCls : "icon-search",
|
|
|
onClick : function() {
|
|
|
searchType=1;
|
|
|
|
|
|
$("#labelGroupListTable").datagrid("load", {
|
|
|
query: $("#skn").textbox("getValue"),
|
|
|
status: 1,
|
|
|
// sales: "Y",
|
|
|
stocknumber: "1",
|
|
|
attribute_not: "2"});
|
|
|
}
|
|
|
});
|
|
|
$("#skn").textbox({
|
|
|
prompt: "请输入skn,多个以逗号隔开"
|
|
|
});
|
|
|
|
|
|
$("#labelGroupListTable").myDatagrid({
|
|
|
fit: true,
|
|
|
fitColumns: true,
|
|
|
striped: true,
|
|
|
onCheckAll: addcheckItem,
|
|
|
onCheck: addcheckItem,
|
|
|
onUncheckAll: removeAllItem,
|
|
|
onUncheck: removeSingleItem,
|
|
|
queryParams: {
|
|
|
query: $("#skn").textbox("getValue"),
|
|
|
status: 1,
|
|
|
// sales: "Y",
|
|
|
stocknumber: "1",
|
|
|
attribute_not: "2"
|
|
|
},
|
|
|
// url: serverContextPath+"/grassArticle/queryGoods",
|
|
|
url: contextPath+"/search/queryGoods",
|
|
|
method: 'POST',
|
|
|
loadFilter: function (data) {
|
|
|
var tmp = defaultLoadFilter(data);
|
|
|
tmp.rows = tmp.list;
|
|
|
return tmp;
|
|
|
},
|
|
|
|
|
|
columns: [[
|
|
|
{
|
|
|
title: "产品skn",
|
|
|
field: "product_skn",
|
|
|
width: 30,
|
|
|
align: "left",
|
|
|
checkbox:true
|
|
|
},
|
|
|
{
|
|
|
title: "产品图片",
|
|
|
field: "default_images",
|
|
|
width: 15,
|
|
|
align: "center",
|
|
|
formatter: function (value, rowData, rowIndex) {
|
|
|
var result='';
|
|
|
if (value) {
|
|
|
if(value.indexOf('http://') == 0){
|
|
|
result = item.default_images.split("?")[0];
|
|
|
}else{
|
|
|
var fileMode = value.substring(15, 17);
|
|
|
if(fileMode=='01'){
|
|
|
result= "http://"+"img11.static.yhbimg.com"+"/goodsimg"+value;
|
|
|
}
|
|
|
if(fileMode=='02'){
|
|
|
result= "http://"+"img12.static.yhbimg.com"+"/goodsimg"+value;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
else {
|
|
|
result = ""
|
|
|
}
|
|
|
if (result) {
|
|
|
return "<img width=120 height=60 src='" + result + "?imageMogr2/thumbnail/320x320/extent/320x320/background/d2hpdGU=/position/center/quality/90'/>";
|
|
|
} else {
|
|
|
return "";
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
|
|
|
{
|
|
|
title: "产品名称",
|
|
|
field: "product_name",
|
|
|
width: 30,
|
|
|
align: "left"
|
|
|
},
|
|
|
{
|
|
|
title: "品牌",
|
|
|
field: "brand_name",
|
|
|
width: 20,
|
|
|
align: "left"
|
|
|
}, {
|
|
|
title: "现价",
|
|
|
field: "sales_price",
|
|
|
width: 25,
|
|
|
align: "left"
|
|
|
|
|
|
}, {
|
|
|
title: "吊牌价",
|
|
|
field: "market_price",
|
|
|
width: 25,
|
|
|
align: "left" ,
|
|
|
formatter: function (value, rowData, rowIndex) {
|
|
|
var result=rowData.market_price;
|
|
|
if(rowData.market_price==null || rowData.market_price==''){
|
|
|
result ="——————————"
|
|
|
}
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
}, {
|
|
|
title: "库存",
|
|
|
field: "stock_number",
|
|
|
width: 25,
|
|
|
align: "left" ,
|
|
|
formatter: function (value, rowData, rowIndex) {
|
|
|
var result=rowData.stock_number;
|
|
|
if(rowData.stock_number==null || rowData.stock_number==''){
|
|
|
result ="——————————"
|
|
|
}
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
]],
|
|
|
cache: false,
|
|
|
pagination: true,
|
|
|
pageSize: 10,
|
|
|
pageList: [10],
|
|
|
idField: "id",
|
|
|
checkbox:true,
|
|
|
onLoadSuccess: function (data) {
|
|
|
debugger
|
|
|
for (var i=0; i<data.list.length;i++){
|
|
|
var rowdata = data.list[i]
|
|
|
checkedItemsObj[rowdata.product_skn] = rowdata;
|
|
|
}
|
|
|
resetSelectedCheckBox(data);
|
|
|
|
|
|
}
|
|
|
});
|
|
|
});
|
|
|
|
|
|
function findCheckedItem(ID) {
|
|
|
for (var i = 0; i < checkedItems.length; i++) {
|
|
|
if (checkedItems[i].productSkn == ID) return i;
|
|
|
}
|
|
|
return -1;
|
|
|
}
|
|
|
function addcheckItem() {
|
|
|
// if(searchType != checkType && checkedItems.length>0){
|
|
|
// checkedItems=[];
|
|
|
// }
|
|
|
checkType = searchType;
|
|
|
var i=0;
|
|
|
$("input[type='checkbox'][name='product_skn']:checked").each(function () {
|
|
|
|
|
|
var k = findCheckedItem($(this).val());
|
|
|
if (k == -1) {
|
|
|
var product = {};
|
|
|
product.productSkn = $(this).val();
|
|
|
product.productType = checkType;
|
|
|
checkedItems.push(product);
|
|
|
}
|
|
|
i++;
|
|
|
|
|
|
});
|
|
|
}
|
|
|
|
|
|
function removeAllItem(rows) {
|
|
|
$("input[type='checkbox'][name='product_skn']").each(function () {
|
|
|
if (!this.checked) {
|
|
|
var k = findCheckedItem($(this).val());
|
|
|
if (k != -1) {
|
|
|
checkedItems.splice(k, 1);
|
|
|
}
|
|
|
}
|
|
|
});
|
|
|
}
|
|
|
function resetSelectedCheckBox(data){
|
|
|
$("input[type='checkbox'][name='product_skn']").each(function () {
|
|
|
var cb=$(this);
|
|
|
$.each(checkedItems,function(index,value){
|
|
|
if(value.productSkn==cb.val()){
|
|
|
cb.attr("checked",true);
|
|
|
return false;
|
|
|
}
|
|
|
});
|
|
|
});
|
|
|
}
|
|
|
function removeSingleItem(rowIndex, rowData) {
|
|
|
var k = findCheckedItem(rowData.product_skn);
|
|
|
if (k != -1) {
|
|
|
checkedItems.splice(k, 1);
|
|
|
}
|
|
|
}
|
|
|
function removeSingleItemById(id) {
|
|
|
debugger
|
|
|
var k = findCheckedItem(id);
|
|
|
if (k != -1) {
|
|
|
checkedItems.splice(k, 1);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
</body>
|
|
|
</html> |
|
|
\ No newline at end of file |
...
|
...
|
|