1 $(function () {
2 $(".loading_box").hide();
3 //跳转
4 $("#btnContinue").click(function () {
5 window.location.href =URL.YearPersonalIndex;
6 });
7 //提交
8 $("#btnSubmit").click(function () {
9 if ($("#txtAssetCode").val() == "") {
10 alert("请输入资产序列号");
11 return false;
12 }
13 if ($("#txtAssetCode").val().length != 12) {
14 alert("请输入12位数的资产序列号");
15 return false;
16 }
17 $(".loading_box").show();
18 $.ajax({
19 url: URL.PersonalSubmit,
20 type: 'Post',
21 dataType: "json",
22 data: { code: $("#txtAssetCode").val() },
23 success: function (data) {
24 if (data.suc == 2) {
25 window.location.href = URL.YearPersonalAdd + "/?code=" + data.AsCode;
26
27 } else if (data.suc == 1) {
28 alert("盘点成功");
29 $("#txtAssetCode").val("");
30 }
31 else {
32 alert(data.msg);
33 $("#txtAssetCode").val("");
34 }
35 $(".loading_box").hide();
36 },
37 error: function () {
38 $(".loading_box").hide();
39 alert("目前网络不畅通,请稍后再试!");
40 }
41 });
42
43 });
44
45 //盘盈补录
46 $("#formYearDetail").submit(function () {
47 if ($("#txtAssetCode").val() == "") {
48 alert("请输入资产序列号");
49 return false;
50 }
51 var reg = /^[0-9]+$/;
52 if (!reg.test($("#txtAssetCode").val()))
53 {
54 alert("资产序列号只能为数字");
55 $("#txtAssetCode").val("");
56 return false;
57 }
58 if ($("#txtAssetCode").val().length != 12) {
59 alert("请输入12位数的资产序列号");
60 return false;
61 }
62 if ($("#txtAssetName").val() == "") {
63 alert("请输入设备名称");
64 return false;
65 }
66 if ($("#txtAssetName").val().length > 50) {
67 alert("设备名称不能超过50个字");
68 $("#txtAssetName").val("");
69 return false;
70 }
71 if ($("#txtSN").val().length > 30) {
72 alert("SN不能超过30个字");
73 $("#txtSN").val("");
74 return false;
75 }
76 if ($("#txtBrand").val().length > 50) {
77 alert("品牌不能超过50个字");
78 $("#txtBrand").val("");
79 return false;
80 }
81 if ($("#txtModel").val().length > 50) {
82 alert("型号不能超过50个字");
83 $("#txtModel").val("");
84 return false;
85 }
86 if ($("#txtMark").val().length > 50) {
87 alert("备注不能超过50个字");
88 $("#txtMark").val("");
89 return false;
90 }
91 $(".loading_box").show();
92 var params = { AssetCode: $("#txtAssetCode").val(), AssetName: $("#txtAssetName").val(),SN:$("#txtSN").val(),AssetBrand:$("#txtBrand").val(),AssetModel:$("#txtModel").val(),Remark:$("#txtMark").val() }
93 var url = URL.PersonalAddSubmit;
94 $.ajax({
95 url: url,
96 type: 'POST',
97 dataType: "json",
98 data: params,
99 success: function (d)
100 {
101 if (d.suc == 1)
102 {
103 $(".loading_box").hide();
104 alert(d.msg);
105 window.location.href = URL.YearPersonalIndex;
106 }else
107 {
108 alert(d.msg);
109 }
110 $(".loading_box").hide();
111 },
112 error: function () {
113 $(".loading_box").hide();
114 alert("目前网络不畅通,请稍后再试!");
115 }
116 });
117
118 });
119 });