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
| @{
| ViewBag.Title = "FiOrderrecievemoney";
| Layout = "~/Views/Shared/_Layout_Search.cshtml";
| }
| @section headerStyle{
| <script type="text/javascript">
| var OrderType = '@Html.Raw(Newtonsoft.Json.JsonConvert.SerializeObject(ViewBag.OrderType))';
|
| var Fkzt = '@Html.Raw(Newtonsoft.Json.JsonConvert.SerializeObject(ViewBag.Fkzt))';
|
| var CustomerId = '@Html.Raw(ViewBag.CustomerId)';
|
| loseherght = 30;
| dataCol = [
| { label: 'id', name: 'Id', labtype: 'txt', hidden: true },
| { label: '操作金额', name: 'RecievemoneyName', labtype: 'txt', hidden: false, width: 100 },
| {
| label: '收款方式', name: 'PayTypeName', labtype: 'txt', hidden: false, width: 100
| },
|
| { label: '账户名称', name: 'AccountName', labtype: 'txt', hidden: false, width: 100 },
| { label: '科目名称', name: 'SubjectName', labtype: 'txt', hidden: false, width: 100 },
|
| { label: '操作人', name: 'CreaterName', labtype: 'txt', hidden: false, width: 100 },
| { label: '备注', name: 'Remark', labtype: 'txt', hidden: false, width: 200 },
|
| { label: '操作时间', name: 'CreatetimeName', labtype: 'txt', hidden: false, width: 100 },
|
|
| ];
| dataUrl = "/FiOrderrecievemoney/GetListCustomerdel?CustomerId=" + CustomerId;
| searchCol = [
| { label: '操作时间', name: 'PayTime', labtype: 'datearea', hidden: false },
|
|
| { label: '金额', name: 'Recievemoney', labtype: 'txt', hidden: false },
|
|
|
|
|
|
|
| ];
|
|
|
|
| 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">
|
|
|
|
|
| </script>
| }
|
|