username@email.com
2021-08-10 32609928898a897f7407c240bcdc6dc4e6415f0f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
@{
    ViewBag.Title = "AdmGoodsManage";
    Layout = "~/Views/Shared/_Layout_Search.cshtml";
}
@section headerStyle{
    <script type="text/javascript">
        var GoodsStatus = '@Html.Raw(Newtonsoft.Json.JsonConvert.SerializeObject(ViewBag.GoodsStatus))';
 
        var ClassifyId = '@Html.Raw(Newtonsoft.Json.JsonConvert.SerializeObject(ViewBag.ClassifyId))';
 
        var Goods = '@Html.Raw(Newtonsoft.Json.JsonConvert.SerializeObject(ViewBag.Goods))';
        
 
        dataCol = [
            { label: 'id', name: 'Id', labtype: 'txt', hidden: true },
            {
                label: '物品类别', name: 'ClassifyName', labtype: 'txt', hidden: false, width: 100
            },
 
            {
                label: '物品名称', name: 'GoodsName', labtype: 'txt', hidden: false, width: 100,
                formatter: function (cellvalue, options, rowObject) {
                    return "<a onclick=\"OpenWindow('" + cellvalue.replace(/'/g, '') + "','98%','100%', '/AdmGoodsManage/Edit?id=" + rowObject.Id + "')\"  >" + cellvalue + "</a>";
                }
            },
            { label: '价格', name: 'GoodsPrice', labtype: 'txt', hidden: true, width: 100 },
 
            { label: '总数量', name: 'GoodsNum', labtype: 'txt', hidden: false, width: 100 },
            { label: '剩余数量', name: 'GoodsLeft', labtype: 'txt', hidden: false, width: 100 },
 
            { label: '物品状态', name: 'GoodsStatusName', labtype: 'txt', hidden: false, width: 100 },
 
        ];
        dataUrl = "/AdmGoodsManage/GetList";
        searchCol = [
 
            { label: '物品类别', name: 'ClassifyId', labtype: 'combox', hidden: false, data: JSON.parse(ClassifyId), cwidth: '5%', cccwidth: '15%' },
            { label: '物品名称', name: 'GoodsName', labtype: 'combox', hidden: false, data: JSON.parse(Goods), cwidth: '5%', cccwidth: '15%'},
            { label: '物品状态', name: 'GoodsStatus', labtype: 'combox', hidden: false, data: JSON.parse(GoodsStatus), cwidth: '5%', cccwidth: '15%' },
 
 
 
 
 
 
 
        ];
 
 
        var _pageAdd = function () {
            OpenWindow("新增物品", "98%", "90%", "/AdmGoodsManage/Edit/");
        }
 
        var _pageRuku = function () {
            OpenWindow("物品入库", "98%", "90%", "/AdmGoodsManage/Ruku/");
        }
 
        var _pageChuku = function () {
            OpenWindow("物品出库", "98%", "90%", "/AdmGoodsManage/Chuku/");
        }
 
 
        var _afterSave = function (result) {
            if (result) {
                toastr.success("保存成功");
            } else {
                toastr.error("保存失败");
            }
        }
 
        var _afterDel = function (result) {
            if (result) {
                toastr.success("删除成功");
            } else {
                /**/
                toastr.error("删除成功");
        /**/
    }
}
    </script>
}
 
@section footerScripts{
    <script type="text/javascript">
 
 
 
        function send() {
 
            var msg = $("#PBSClassifyId");
 
 
            if (msg.length > 0) {
                $("#PBSClassifyId").change(function () {
                    var classifyId = $("#PBSClassifyId").val();
                    $.ajax({
                        type: "GET",
                        url: "/AdmGoodsManage/getGoods?ClassifyId=" + classifyId,
                        dataType: "json",
                        global: false,
                        data: "",
                        success: function (data) {
 
                            var GoodsName = $("#PBSGoodsName");
                            GoodsName.find('option').remove();
                            var aaa = '<option value="" hassubinfo="true">&nbsp;</option>';
                            GoodsName.append(aaa);
                            if (data.length > 0) {
                                for (var i = 0; i < data.length; i++) {
 
                                    var o = '<option value="' + data[i].Id + '" hassubinfo="true">' + data[i].GoodsName + '</option>';
                                    GoodsName.append(o);
                                }
                            }
                            $("#PBSGoodsName").trigger('chosen:updated');//更新选项
                        },
                        error: function () {
 
 
                            parent.layer.msg('失败', { icon: 5 });
                        }
                    });
                });
 
            } else {
                setTimeout(send, 1000);
            }
        }
 
 
        send();
 
    </script>
}