You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

415 lines
15 KiB
Plaintext

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="HW_GoodsDetailList.aspx.cs" Inherits="TradeManage.HuoWu.HW_GoodsDetailList" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>货物信息</title>
<link rel="stylesheet" type="text/css" href="../themes/default/easyui.css" />
<link rel="stylesheet" type="text/css" href="../themes/icon.css" />
<link rel="stylesheet" type="text/css" href="../themes/New.css" />
<link rel="stylesheet" type="text/css" href="../themes/DataGrid.css" />
<script src="../Scripts/MicrosoftAjax.js" type="text/javascript"></script>
<script src="../Scripts/jquery.min.js" type="text/javascript"></script>
<script src="../Scripts/jquery.easyui.min.js" type="text/javascript"></script>
<script src="../Scripts/DataGrid.js" type="text/javascript"></script>
<script src="../Scripts/DataPager.js" type="text/javascript"></script>
<script src="../Scripts/DateBox.js" type="text/javascript"></script>
<script src="../Scripts/jquery.bgiframe.min.js" type="text/javascript"></script>
<script src="../Scripts/Global.js" type="text/javascript"></script>
<script src="../Scripts/jquery.url.js" type="text/javascript"></script>
<script src="../Scripts/WindowLoad.js" type="text/javascript"></script>
<script src="../Scripts/jquery.cookies.min.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="../Scripts/fancybox/jquery.fancybox-1.3.4.css"
media="screen" />
<script type="text/javascript" src="../Scripts/fancybox/jquery.mousewheel-3.0.4.pack.js"></script>
<script type="text/javascript" src="../Scripts/fancybox/jquery.fancybox-1.3.4.pack.js"></script>
<script src="../Scripts/DatePicker/WdatePicker.js" type="text/javascript"></script>
<script src="../Scripts/MaskedTextBox.js" type="text/javascript"></script>
<script type="text/javascript">
var datagrid1 = new nblf.ui.DataGrid("DataGrid1");
var WindowLoadModel = new WindowLoad();
$(document).ready(function () {
WindowLoadModel.ApplicationPath = "../";
WindowLoadModel.ControlID = "WindowLoad";
WindowLoadModel.Isbgiframe = true;
WindowLoadModel.Load();
ajaxInit(WindowLoadModel);
CreateDataGrid();
GetStore();
ReadData();
$("#btn_sch").bind("click", function () {
datagrid1.SetPageIndex(1);
ReadData();
});
$("#btn_doprice").bind("click", function () {
var list = datagrid1.GetSelectListModel();
if (list == null || list.length == 0) {
alert("请至少选择一个货物");
return;
}
fopen();
});
});
function fopen() {
$.fancybox({
'width': '40%',
'height': '40%',
'autoScale': false,
'transitionIn': 'elastic',
'transitionOut': 'elastic',
'href': '#test',
'onComplete': function () {
}
});
}
function GetStore() {
$("#select_ck").append("<option value='0'>全部</option>");
$.ajax({
url: "../CangKu/CangKuServer.asmx/GetUseStoreHouse",
// data: Sys.Serialization.JavaScriptSerializer.serialize(param),
dataType: "json",
async: false,
success: function (data) {
if (data.d != null) {
$(data.d).each(function () {
$("#select_ck").append("<option value='" + this.StoreId + "'>" + this.StoreName + "</option>");
});
}
}
});
}
function fopen() {
$.fancybox({
'width': '40%',
'height': '40%',
'autoScale': false,
'transitionIn': 'elastic',
'transitionOut': 'elastic',
'href': '#test',
'onComplete': function () {
}
});
}
//#endregion
//#region 初始化DataGrid
function CreateDataGrid() {
var col = new nblf.ui.DataGridColumn();
col.HeaderText = "缩略图";
col.CellTemplate = "<a CommandName='cmdImg' class='linka'><img src='{Bind FirstImgUrl}' alt='' width='50px' height='50px'/></a>";
Array.add(datagrid1.Columns, col);
col = new nblf.ui.DataGridColumn();
col.HeaderText = "货号";
col.CellTemplate = "<a>{Bind GoodsCode}</a>";
Array.add(datagrid1.Columns, col);
col = new nblf.ui.DataGridColumn();
col.HeaderText = "SKU";
col.CellTemplate = "<span>{Bind TypeCode}</span>";
Array.add(datagrid1.Columns, col);
col = new nblf.ui.DataGridColumn();
col.HeaderText = "货物名称";
col.CellTemplate = "<span>{Bind GoodsName}</span>";
Array.add(datagrid1.Columns, col);
// col = new nblf.ui.DataGridColumn();
// col.HeaderText = "另一个货号";
// col.CellTemplate = "<a>{Bind GoodsOldCode}</a>";
// Array.add(datagrid1.Columns, col);
col = new nblf.ui.DataGridColumn();
col.HeaderText = "描述";
col.CellTemplate = "<span>{Bind TypeDesc}</span>";
Array.add(datagrid1.Columns, col);
col = new nblf.ui.DataGridColumn();
col.HeaderText = "仓库";
col.CellTemplate = "<span>{Bind StoreName}</span>";
Array.add(datagrid1.Columns, col);
col = new nblf.ui.DataGridColumn();
col.HeaderText = "库位编码";
col.CellTemplate = "<span>{Bind PostionCode}</span>";
Array.add(datagrid1.Columns, col);
col = new nblf.ui.DataGridColumn();
col.HeaderText = "库位";
col.CellTemplate = "<span>{Bind PostionDesc}</span>";
Array.add(datagrid1.Columns, col);
col = new nblf.ui.DataGridColumn();
col.HeaderText = "库存";
col.CellTemplate = "<span>{Bind GoodsNum}</span>";
Array.add(datagrid1.Columns, col);
col = new nblf.ui.DataGridColumn();
col.HeaderText = "匹配锁定";
col.CellTemplate = "<span>{Bind LockNum}</span>";
Array.add(datagrid1.Columns, col);
col = new nblf.ui.DataGridColumn();
col.HeaderText = "库龄";
col.CellTemplate = "<span>{Bind LeftNum}</span>";
Array.add(datagrid1.Columns, col);
col = new nblf.ui.DataGridColumn();
col.HeaderText = "处理价格$";
col.CellTemplate = "<span>{Bind DoPrice}</span>";
Array.add(datagrid1.Columns, col);
datagrid1.SetPageSize(20);
datagrid1.SetPageIndex(1);
datagrid1.IsFixHeader = false;
datagrid1.ShowIndexColumn = false;
datagrid1.AllowPaging = true;
datagrid1.Width = "100%";
datagrid1.SelectMode = nblf.ui.SelectMode.CheckBox;
datagrid1.Init();
datagrid1.add_PageIndexChanged(function () { ReadData(); });
}
//#endregion
//#region 读取数据
function ReadData() {
var param = new Object();
//param.SortId = SortId;
param.PostionCode = $("#txt_postion").val();
param.GoodsName = $("#txt_goodsname").val();
param.GoodsName2 = $("#txt_goodsname2").val();
param.StoreId = $("#select_ck").val();
param.sdays = -1;
param.edays = -1;
if($("#txt_sdays").val()!="")
param.sdays = $("#txt_sdays").val();
if ($("#txt_edays").val() != "")
param.edays = $("#txt_edays").val();
param.PageSize = datagrid1.Get_PageSize();
param.PageIndex = datagrid1.Get_PageIndex();
WindowLoadModel.Show();
$.ajax({
url: "../HuoWuServiceNew.asmx/GetList_GoodsLeftForTMNew",
data: Sys.Serialization.JavaScriptSerializer.serialize(param),
success: function (data) {
WindowLoadModel.Hide();
datagrid1.Set_RowCount(data.d.RowCount);
datagrid1.DataBind(data.d.DataSource);
}
});
}
//#endregion
//#region 删除
function DelCol(obj) {
if (window.confirm('确定要删除吗?') == false) return;
var rowindex = $(obj).parent().parent().attr("index");
var param = new Object();
var model = datagrid1.Get_Model(rowindex);
param.GoodsId = model.GoodsId;
$.ajax({
url: "HuoWuService.asmx/DeleteGoodsInfo",
data: Sys.Serialization.JavaScriptSerializer.serialize(param),
dataType: "json",
success: function (data) {
if (data.d == 0) {
alert("删除成功");
ReadData();
}
else
{
alert("该货物有库存或者有订单匹配或者有采购单匹配,无法删除");
}
}
});
}
//#region 导出
function ExportData() {
var param = new Object();
//param.SortId = SortId;
param.PostionCode = $("#txt_postion").val();
param.GoodsName = $("#txt_goodsname").val();
param.GoodsName2 = $("#txt_goodsname2").val();
param.StoreId = $("#select_ck").val();
param.sdays = -1;
param.edays = -1;
if ($("#txt_sdays").val() != "")
param.sdays = $("#txt_sdays").val();
if ($("#txt_edays").val() != "")
param.edays = $("#txt_edays").val();
var dd = new Date();
var fname = "库存数据(" + dd.getFullYear() + "." + (dd.getMonth() + 1) + "." + dd.getDate() + ").xls";
$.ajax({
url: "../HuoWuServiceNew.asmx/GetList_GoodsLeftExcel2",
data: Sys.Serialization.JavaScriptSerializer.serialize(param),
async: false,
success: function (data) {
params = { FilePath: data.d, FileName: fname };
window.location = "../GlobalAshx/DownFile.ashx?" + jQuery.param(params);
}
});
}
//#endregion
//#region
function UpDoPrice() {
var list = datagrid1.GetSelectListModel();
if ($("#txt_price").val() == "") {
alert("请输入处理价");
return;
}
var param = new Object();
param.list = list;
param.doprice = $("#txt_price").val();
$.ajax({
url: "../HuoWuServiceNew.asmx/UpDoPrice",
data: Sys.Serialization.JavaScriptSerializer.serialize(param),
dataType: "json",
success: function (data) {
alert("设置成功");
ReadData();
$.fancybox.close();
}
});
}
</script>
</head>
<body class="headbody">
<div class="title_ico">
货物库存信息
</div>
<div style="display: none">
<div id="test" title="货物图片" style="width:500px; height: 200px;">
<table width="95%" class="tableAll" border="1" ellspacing="0" cellpadding="2">
<tr>
<td align="center">处理价格:</td>
<td>
<input id="txt_price" class="editTextbox" style="width: 120px;" type="text" />$
</td>
</tr>
<tr>
<td align="center" colspan="2">
<input
id="Button1" type="button" class="btnClass btnClassClose" value="保存" onclick="UpDoPrice();" />
</td>
</tr>
</table>
</div>
</div>
<table id="tb1" class="tableAll" style="width: 100%;">
<tr>
<td class="f1" width="13%">仓库:</td>
<td> <select id="select_ck" class="selectClass" style="width: 100px" name="D1">
</select>
</td>
<td class="f1" style="width: 10%; height: 15px;">库位:</td>
<td>
<input id="txt_postion" class="editTextbox" style="width: 120px;" type="text" /></td>
<td style="width: 10%;" class="f1">编号精确查询:
</td>
<td width="15%"> <input id="txt_goodsname" class="editTextbox" style="width: 120px;" type="text" />
</td>
<td>
<input id="btn_sch" class="btnClass btnClassFind" type="button" value="查询" /></td>
</tr>
<tr>
<td class="f1" width="13%">库龄:</td>
<td>
<input id="txt_sdays" class="editTextbox" style="width: 120px;"
type="text" />天--<input id="txt_edays" class="editTextbox"
style="width: 120px;" type="text" />天</td>
<td class="f1" style="width: 10%; height: 15px;">&nbsp;</td>
<td>
&nbsp;</td>
<td style="width: 10%;" class="f1">
编号模糊查询:
</td>
<td width="15%">
<input id="txt_goodsname2" class="editTextbox" style="width: 120px;"
type="text" /></td>
<td>
&nbsp;</td>
</tr>
<tr>
<td colspan="7" class="auto-style1"> <input id="btn_doprice" class="btnClass btnClassEdit" type="button" value="设置处理价"/>
<input id="btn_add" class="btnClass btnClassExcelTemplate" type="button" value="导出Excel" onclick="ExportData();"/>
<%-- <input id="btn_ckhd" class="btnClass btnClassEdit" type="button" value="库存核对" onclick="ExportData();"/> <input id="btn_kwtz" class="btnClass btnClassEdit" type="button" value="库位调整" onclick="ExportData();"/> <input id="btn_sdpp" class="btnClass btnClassEdit" type="button" value="锁定库存匹配" onclick="ExportData();"/>--%>
</td>
</tr>
<tr>
<td valign="top" colspan="7">
<div id="DataGrid1" class="DataGridStyle"></div>
</td>
</tr>
</table>
</body>
</html>