From ca092bb227d153813406e2592f5ca8e6aff8d44a Mon Sep 17 00:00:00 2001
From: zrg <z18737863051@163.com>
Date: 星期一, 18 三月 2024 17:20:24 +0800
Subject: [PATCH] 1.增加 直接调拨单 编辑模块, 并完善 直接调拨单 列表功能;(常规 功能, 新增,修改,删除,审核,作废,关闭,自定义过滤,源单类型列表(源单 调拨申请单,手工录入), 合计行,保存控制,审核控制,删除控制,关联数回填 等等) 2.仓库管理下属模块,单据编辑界面,选择基础资料的 全部改为 基础资料列表 的方式; (生产入库单,生产退库单,其他入库单,分布式调入单,生产领料单,领用申请单,生产退料单,其他出库单,分布式调出单,出库申请单,直接调拨单,调拨申请单,条码状态变更单 )
---
WebTM/views/user/login2.html | 14 ++++++++------
1 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/WebTM/views/user/login2.html b/WebTM/views/user/login2.html
index 4907208..44643ec 100644
--- a/WebTM/views/user/login2.html
+++ b/WebTM/views/user/login2.html
@@ -116,7 +116,7 @@
if (i == 0)
Organization += '<option style="color:blue;" value="' + data[i].ID + '" selected>' + data[i].Name + '</option>';
else
- Organization += '<option style="color:blue;" value="' + data[i].ID + '">' + data[i].Name + '</option>';
+ Organization += '<option style="color:blue;" value="' + data[i].ID + '">' + data[i].Name + '</option>';
}
$("#Organization").append(Organization);
@@ -129,7 +129,7 @@
}
})
-
+
//form.render();
@@ -158,7 +158,7 @@
if (e.keyCode == 13) {
loging();
}
- });
+ });
//鐢ㄦ埛鍚嶆鍥炶溅鍏夋爣绉诲埌瀵嗙爜妗�
$('#LAY-user-login-username').on('keydown', function (e) {
if (e.keyCode == 13) {
@@ -203,7 +203,7 @@
var PassWord = $("#LAY-user-login-password").val();
layer.load(3);
$.ajax({
- type: "get",
+ type: "get",
url: GetWEBURL() + "/Web/GetUser",
data: { "UserName": UserName, "PassWord": PassWord, "HOrgName": $("#Organization").val() },
success: function (result) {
@@ -230,6 +230,8 @@
sessionStorage["Czmm"] = result.data[0].Czmm;
sessionStorage["Czybm"] = result.data[0].Czybm;
sessionStorage["HEmpID"] = result.data[0].HEmpID;
+ sessionStorage["HEmpNumber"] = result.data[0].HEmpNumber;
+ sessionStorage["HEmpName"] = result.data[0].HEmpName;
sessionStorage["HGroup"] = result.data[0].HGroup;
sessionStorage["HGroupID"] = result.data[0].HGroupID;
sessionStorage["HProc"] = result.data[0].HProc;
@@ -249,7 +251,7 @@
//if (!judgeMorPCflag) {//绉诲姩绔�
// window.location.href = '../../views/index_Mobile.html'
//} else {//PC绔�
- window.location.href = '../../views/indexMenu.html'
+ window.location.href = '../../views/indexMenu.html'
//}
get_WriteConfigFile();
}
@@ -273,7 +275,7 @@
$("body").append('<audio id="cs" hidden controls> <source src = "../video/jingbao.wav" type = "audio/ogg"> </audio >');
var audio = document.getElementById("cs");
audio.play();
- }
+ }
});
</script>
--
Gitblit v1.9.1