Pman.Tab.AdminLogEvents.bjs
[Pman.Admin] / Pman.Tab.AdminLogEvents.bjs
1 {
2  "name" : "Pman.Tab.AdminLogEvents",
3  "parent" : "Pman.Tab.AdminLogs",
4  "title" : "Admin - Logs - Events",
5  "path" : "/home/edward/gitlive/Pman.Admin/Pman.Tab.AdminLogEvents.bjs",
6  "permname" : "Admin.Logs",
7  "modOrder" : "001",
8  "strings" : {
9   "e4ef97f584a9c8d2d686f84569307575" : "Download to Excel (with extra descriptions)",
10   "231bc72756b5e6de492aaaa1577f61b1" : "Remarks",
11   "2ea72778ebaacc973260c88837dd7a2f" : "Displaying Events  {0} - {1} of {2}",
12   "87f9f735a1d36793ceaecd4e47124b63" : "Events",
13   "1b7f7d24575cdbfadb83b9587fa1bf97" : "#id",
14   "a12a3079e14ced46e69ba52b8a90b21a" : "IP",
15   "1243daf593fa297e07ab03bf06d925af" : "Searching...",
16   "01bd6a16732dfa2b760dc8566c58afae" : "Download to Excel",
17   "498f79c4c5bbde77f1bceb6c86fd0f6d" : "Show",
18   "037fd50b0e85bb65995ca7125d06c7cd" : "Select Person Table",
19   "42cf593b947cd3d591fa132742486f89" : "Person ",
20   "fd7535ce3979bb8547e2c01689db0767" : "Select Person ",
21   "679308a758de538c5f39c4c6cdba6593" : "Select Affects",
22   "a8929eb5c1553d3f70497f862d25d0ce" : "Select Action",
23   "39b9e051f9fe75e65c7a330bb00499d4" : "Date Range",
24   "4e97aeeaa8b15ca1180fcd1f3ac478d1" : "When",
25   "40bed7cf9b3d4bb3a3d7a7e3eb18c5eb" : "Person",
26   "004bf6c9a40003140292e97330236c53" : "Action",
27   "90e4ac2e5a22e53df63b6b186d8727ba" : "No Events found",
28   "2c92a9a6a5dbf570825e62eabcdecd8d" : "Affected"
29  },
30  "items" : [
31   {
32    "region" : "center",
33    "xtype" : "NestedLayoutPanel",
34    "title" : "Events",
35    "$ xns" : "Roo",
36    "items" : [
37     {
38      "xtype" : "BorderLayout",
39      "$ xns" : "Roo",
40      "* prop" : "layout",
41      "items" : [
42       {
43        "xtype" : "LayoutRegion",
44        "$ xns" : "Roo",
45        "* prop" : "center"
46       },
47       {
48        "autoScroll" : true,
49        "xtype" : "LayoutRegion",
50        "$ xns" : "Roo",
51        "split" : true,
52        "height" : 150,
53        "* prop" : "south"
54       },
55       {
56        "listeners" : {
57         "render" : "function (_self)\n{\n  _this.viewPanel = _self;\n}"
58        },
59        "fitToFrame" : true,
60        "region" : "south",
61        "xtype" : "ContentPanel",
62        "$ xns" : "Roo"
63       },
64       {
65        "listeners" : {
66         "|activate" : "function() {\n    _this.panel = this;\n    if (_this.grid) {\n        _this.grid.footer.onClick('first');\n    }\n}"
67        },
68        "background" : false,
69        "region" : "center",
70        "fitToframe" : true,
71        "title" : "Events",
72        "xtype" : "GridPanel",
73        "fitContainer" : true,
74        "$ xns" : "Roo",
75        "tableName" : "Events",
76        "items" : [
77         {
78          "listeners" : {
79           "render" : "function () \n{\n    _this.grid = this; \n    //_this.dialog = Pman.Dialog.FILL_IN\n    if (_this.panel.active) {\n       this.footer.onClick('first');\n    }\n}"
80          },
81          "autoExpandColumn" : "remarks",
82          "xtype" : "Grid",
83          "loadMask" : true,
84          "$ xns" : "Roo.grid",
85          "* prop" : "grid",
86          "items" : [
87           {
88            "listeners" : {
89             "afterselectionchange" : "function (_self)\n{\n    // load detail log in _this.viewPanel;\n    if (!this.getSelected()) {\n        this.viewPanel.setContent(\"Nothing Selected\");\n        return;\n    }\n    var id = this.getSelected().data.id;\n    _this.viewPanel.load( { url : baseURL + \"/Admin/EventView/\" + id + \".html\" });\n    \n}"
90            },
91            "xtype" : "RowSelectionModel",
92            "singleSelect" : true,
93            "$ xns" : "Roo.grid",
94            "* prop" : "sm"
95           },
96           {
97            "listeners" : {
98             "|beforeload" : "function (_self, o)\n{\n    if (!Pman.buildCompleted) {\n        return false;\n    }\n   \n   \n   if (! _this.personSel) {\n    return false;\n    }\n    o.params = o.params || {};\n    o.params.person_id = _this.personSel.getValue();\n    o.params.person_table = _this.tableSel.getValue();\n    var act = _this.actionSel.getValue();\n    if (act.length) {\n        o.params.action = act;\n    }\n    var tbl = _this.affectSel.getValue();\n    if (tbl.length) {\n        o.params.on_table = tbl;\n    }\n    act = _this.dateFrom.getValue();\n    if (act.format) {\n        o.params['query[from]'] = act.format('Y-m-d');\n    }\n    act = _this.dateTo.getValue();\n    if (act.format) {\n        o.params['query[to]'] = act.format('Y-m-d');\n    }\n \n    \n    /*\n    act = _this.groupedCombo.getValue();\n    o.params['query[grouped]'] = act;\n    if (o.params['query[grouped]'] == 'gr') {\n    \n        if (!tbl.length) {\n            Roo.MessageBox.alert(\"Error\", \"Select a table to group results on\");\n            return false;\n        }\n//        o.params['_columns']  = \n        o.params['_distinct'] = 'on_id';\n        \n        \n    }\n    \n    */\n\n    \n}"
99            },
100            "xtype" : "Store",
101            "remoteSort" : true,
102            "$ sortInfo" : "{ field: 'event_when', direction: 'DESC'}",
103            "$ xns" : "Roo.data",
104            "* prop" : "dataSource",
105            "items" : [
106             {
107              "id" : "id",
108              "root" : "data",
109              "xtype" : "JsonReader",
110              "$ xns" : "Roo.data",
111              "$ fields" : "[\n    {\n        'name': 'id',\n        'type': 'int'\n    },\n    {\n        'name': 'person_name',\n        'type': 'string'\n    },\n    {\n        'name': 'event_when',\n        'type': 'date',\n        'dateFormat': 'Y-m-d'\n    },\n    {\n        'name': 'action',\n        'type': 'string'\n    },\n    {\n        'name': 'ipaddr',\n        'type': 'string'\n    },\n    {\n        'name': 'on_id',\n        'type': 'int'\n    },\n    {\n        'name': 'on_table',\n        'type': 'string'\n    },\n    {\n        'name': 'person_id',\n        'type': 'int'\n    },\n    {\n        'name': 'remarks',\n        'type': 'string'\n    },\n    {\n        'name': 'person_id_id',\n        'type': 'int'\n    },\n    {\n        'name': 'person_id_office_id',\n        'type': 'int'\n    },\n    {\n        'name': 'person_id_name',\n        'type': 'string'\n    },\n    {\n        'name': 'person_id_phone',\n        'type': 'string'\n    },\n    {\n        'name': 'person_id_fax',\n        'type': 'string'\n    },\n    {\n        'name': 'person_id_email',\n        'type': 'string'\n    },\n    {\n        'name': 'person_id_company_id',\n        'type': 'int'\n    },\n    {\n        'name': 'person_id_role',\n        'type': 'string'\n    },\n    {\n        'name': 'person_id_active',\n        'type': 'int'\n    },\n    {\n        'name': 'person_id_remarks',\n        'type': 'string'\n    },\n    {\n        'name': 'person_id_passwd',\n        'type': 'string'\n    },\n    {\n        'name': 'person_id_owner_id',\n        'type': 'int'\n    },\n    {\n        'name': 'person_id_lang',\n        'type': 'string'\n    },\n    {\n        'name': 'person_id_no_reset_sent',\n        'type': 'int'\n    },\n    {\n        'name': 'person_id_action_type',\n        'type': 'string'\n    },\n    {\n        'name': 'person_id_project_id',\n        'type': 'int'\n    },\n    {\n        'name': 'person_id_deleted_by',\n        'type': 'int'\n    },\n    {\n        'name': 'person_id_deleted_dt',\n        'type': 'date'\n    }\n]",
112              "* prop" : "reader",
113              "totalProperty" : "total"
114             },
115             {
116              "$ url" : "baseURL + '/Roo/Events.php'",
117              "method" : "GET",
118              "xtype" : "HttpProxy",
119              "$ xns" : "Roo.data",
120              "* prop" : "proxy"
121             }
122            ]
123           },
124           {
125            "pageSize" : 25,
126            "xtype" : "PagingToolbar",
127            "emptyMsg" : "No Events found",
128            "$ xns" : "Roo",
129            "displayInfo" : true,
130            "displayMsg" : "Displaying Events  {0} - {1} of {2}",
131            "* prop" : "footer",
132            "items" : [
133             {
134              "listeners" : {
135               "click" : "function (_self, e)\n{\n    \n    var params = {\n        'sort' : 'event_when',\n        'dir' : 'DESC',\n        'start' : 0,\n        'limit' : 900,\n        person_id : _this.personSel.getValue(), \n        'csvTitles[0]' : 'When',   'csvCols[0]' : 'event_when', \n        'csvTitles[1]' : 'Staff',   'csvCols[1]' : 'person_id_name', \n        'csvTitles[2]' : 'Action',   'csvCols[2]' : 'action', \n        'csvTitles[3]' : 'Record ID',   'csvCols[3]' : 'on_id'       ,\n        'csvTitles[4]' : 'Record Type',   'csvCols[4]' : 'on_table',\n        'csvTitles[5]' : 'Remarks',   'csvCols[5]' : 'remarks'        \n    }\n        \n    params.person_id = _this.personSel.getValue();\n    var act = _this.actionSel.getValue();\n    if (act.length) {\n        params.action = act;\n    }\n    var tbl = _this.affectSel.getValue();\n    if (tbl.length) {\n        params.on_table = tbl;\n    }\n    act = _this.dateFrom.getValue();\n    if (act.format) {\n        params['query[from]'] = act.format('Y-m-d');\n    }\n    act = _this.dateTo.getValue();\n    if (act.format) {\n        params['query[to]'] = act.format('Y-m-d');\n    }\n    params.limit = 9999;\n    \n\n    new Pman.download({\n        url : baseURL + '/Roo/Events.php',\n        params : params ,\n        newWindow: true\n        \n    });\n}"
136              },
137              "text" : "Download to Excel",
138              "xtype" : "Button",
139              "$ xns" : "Roo.Toolbar"
140             },
141             {
142              "listeners" : {
143               "click" : "function (_self, e)\n{\n    \n    var params = {\n        'sort' : 'event_when',\n        'dir' : 'DESC',\n        'start' : 0,\n        'limit' : 900,\n        person_id : _this.personSel.getValue(), \n        'csvTitles[0]' : 'ID#',   'csvCols[0]' : 'id',         \n        'csvTitles[1]' : 'When',   'csvCols[1]' : 'event_when', \n        'csvTitles[2]' : 'Staff',   'csvCols[2]' : 'person_id_name', \n        'csvTitles[3]' : 'Action',   'csvCols[3]' : 'action', \n        'csvTitles[4]' : 'Record ID',   'csvCols[4]' : 'on_id'       ,\n        'csvTitles[5]' : 'Record Type',   'csvCols[5]' : 'on_table',\n        'csvTitles[6]' : 'Remarks',   'csvCols[6]' : 'remarks'        \n    }\n    params._with_obj_summary = 1;\n    params.person_id = _this.personSel.getValue();\n    var act = _this.actionSel.getValue();\n    if (act.length) {\n        params.action = act;\n    }\n    var tbl = _this.affectSel.getValue();\n    if (tbl.length) {\n        params.on_table = tbl;\n    }\n    act = _this.dateFrom.getValue();\n    if (act.format) {\n        params['query[from]'] = act.format('Y-m-d');\n    }\n    act = _this.dateTo.getValue();\n    if (act.format) {\n        params['query[to]'] = act.format('Y-m-d');\n    }\n    params.limit = 9999;\n    \n\n    new Pman.download({\n        url : baseURL + '/Roo/Events.php',\n        params : params ,\n        newWindow: true\n        \n    });\n}"
144              },
145              "text" : "Download to Excel (with extra descriptions)",
146              "xtype" : "Button",
147              "$ xns" : "Roo.Toolbar"
148             },
149             {
150              "xtype" : "Separator",
151              "$ xns" : "Roo.Toolbar"
152             }
153            ]
154           },
155           {
156            "xtype" : "Toolbar",
157            "$ xns" : "Roo",
158            "* prop" : "toolbar",
159            "items" : [
160             {
161              "text" : "Show",
162              "xtype" : "TextItem",
163              "$ xns" : "Roo.Toolbar"
164             },
165             {
166              "listeners" : {
167               "|render" : "function (_self)\n{\n    _this.tableSel = _self;\n  \n    if(\n        typeof(uiConfig) == 'undefined' || \n        typeof(uiConfig.events_person_table) == 'undefined' || \n        !uiConfig.events_person_table.length\n    ){\n        this.hide();\n    }\n  \n}",
168               "|select" : "function (combo, record, index)\n{\n  _this.grid.footer.onClick('first');\n}"
169              },
170              "listWidth" : 300,
171              "triggerAction" : "all",
172              "forceSelection" : true,
173              "selectOnFocus" : true,
174              "pageSize" : 20,
175              "displayField" : "value",
176              "emptyText" : "Select Person Table",
177              "minChars" : 2,
178              "valueField" : "value",
179              "xtype" : "ComboBox",
180              "allowBlank" : true,
181              "typeAhead" : true,
182              "Boolean alwaysQuery" : true,
183              "editable" : false,
184              "width" : 150,
185              "$ xns" : "Roo.form",
186              "name" : "person_table",
187              "qtip" : "Select Person Table",
188              "tpl" : "<div class=\"x-grid-cell-text x-btn button\"><b>{value}</b> </div>",
189              "loadingText" : "Searching...",
190              "items" : [
191               {
192                "| data" : "(function() { \n\n    if(typeof(uiConfig) == 'undefined' || typeof(uiConfig.events_person_table) == 'undefined' || !uiConfig.events_person_table.length){\n\n        return [];        \n    }\n\n    return uiConfig.events_person_table;\n    \n})()",
193                "xtype" : "SimpleStore",
194                "$ fields" : "[ 'value' ]",
195                "$ xns" : "Roo.data",
196                "* prop" : "store",
197                "isLocal" : true
198               }
199              ]
200             },
201             {
202              "listeners" : {
203               "|render" : "function (_self)\n{\n  _this.personSel = _self;\n}",
204               "|select" : "function (combo, record, index)\n{\n  _this.grid.footer.onClick('first');\n  \n}"
205              },
206              "listWidth" : 600,
207              "triggerAction" : "all",
208              "fieldLabel" : "Person ",
209              "forceSelection" : true,
210              "selectOnFocus" : true,
211              "pageSize" : 20,
212              "displayField" : "name",
213              "emptyText" : "Select Person ",
214              "minChars" : 2,
215              "valueField" : "id",
216              "xtype" : "ComboBox",
217              "allowBlank" : true,
218              "typeAhead" : true,
219              "editable" : true,
220              "width" : 150,
221              "$ xns" : "Roo.form",
222              "name" : "person_id_name",
223              "qtip" : "Select Person ",
224              "queryParam" : "query[name]",
225              "tpl" : "<div class=\"x-grid-cell-text x-btn button\"><b>{name}</b> ({company_id_name}) &lt;{email}&gt; </div>",
226              "loadingText" : "Searching...",
227              "items" : [
228               {
229                "listeners" : {
230                 "|beforeload" : "function (_self, o)\n{\n    o.params = o.params || {};\n    o.params.company_id = Pman.Login.authUser.company_id;\n}"
231                },
232                "xtype" : "Store",
233                "remoteSort" : true,
234                "$ sortInfo" : "{ field : 'name' , direction : 'ASC' }",
235                "$ xns" : "Roo.data",
236                "* prop" : "store",
237                "items" : [
238                 {
239                  "$ url" : "baseURL + '/Roo/Person.php'",
240                  "xtype" : "HttpProxy",
241                  "method" : "GET",
242                  "$ xns" : "Roo.data",
243                  "* prop" : "proxy"
244                 },
245                 {
246                  "id" : "id",
247                  "root" : "data",
248                  "xtype" : "JsonReader",
249                  "$ fields" : "[\n    {\n        'name': 'id',\n        'type': 'int'\n    },\n    {\n        'name': 'office_id',\n        'type': 'int'\n    },\n    {\n        'name': 'name',\n        'type': 'string'\n    },\n    {\n        'name': 'phone',\n        'type': 'string'\n    },\n    {\n        'name': 'fax',\n        'type': 'string'\n    },\n    {\n        'name': 'email',\n        'type': 'string'\n    },\n    {\n        'name': 'company_id',\n        'type': 'int'\n    },\n    {\n        'name': 'role',\n        'type': 'string'\n    },\n    {\n        'name': 'active',\n        'type': 'int'\n    },\n    {\n        'name': 'remarks',\n        'type': 'string'\n    },\n    {\n        'name': 'passwd',\n        'type': 'string'\n    },\n    {\n        'name': 'owner_id',\n        'type': 'int'\n    },\n    {\n        'name': 'lang',\n        'type': 'string'\n    },\n    {\n        'name': 'no_reset_sent',\n        'type': 'int'\n    },\n    {\n        'name': 'action_type',\n        'type': 'string'\n    },\n    {\n        'name': 'project_id',\n        'type': 'int'\n    },\n    {\n        'name': 'deleted_by',\n        'type': 'int'\n    },\n    {\n        'name': 'deleted_dt',\n        'type': 'date',\n        'dateFormat': 'Y-m-d'\n    },\n    {\n        'name': 'office_id_id',\n        'type': 'int'\n    },\n    {\n        'name': 'office_id_company_id',\n        'type': 'int'\n    },\n    {\n        'name': 'office_id_name',\n        'type': 'string'\n    },\n    {\n        'name': 'office_id_address',\n        'type': 'string'\n    },\n    {\n        'name': 'office_id_phone',\n        'type': 'string'\n    },\n    {\n        'name': 'office_id_fax',\n        'type': 'string'\n    },\n    {\n        'name': 'office_id_email',\n        'type': 'string'\n    },\n    {\n        'name': 'office_id_role',\n        'type': 'string'\n    },\n    {\n        'name': 'company_id_code',\n        'type': 'string'\n    },\n    {\n        'name': 'company_id_name',\n        'type': 'string'\n    },\n    {\n        'name': 'company_id_remarks',\n        'type': 'string'\n    },\n    {\n        'name': 'company_id_owner_id',\n        'type': 'int'\n    },\n    {\n        'name': 'company_id_address',\n        'type': 'string'\n    },\n    {\n        'name': 'company_id_tel',\n        'type': 'string'\n    },\n    {\n        'name': 'company_id_fax',\n        'type': 'string'\n    },\n    {\n        'name': 'company_id_email',\n        'type': 'string'\n    },\n    {\n        'name': 'company_id_id',\n        'type': 'int'\n    },\n    {\n        'name': 'company_id_isOwner',\n        'type': 'int'\n    },\n    {\n        'name': 'company_id_logo_id',\n        'type': 'int'\n    },\n    {\n        'name': 'company_id_background_color',\n        'type': 'string'\n    },\n    {\n        'name': 'company_id_comptype',\n        'type': 'string'\n    },\n    {\n        'name': 'company_id_url',\n        'type': 'string'\n    },\n    {\n        'name': 'company_id_main_office_id',\n        'type': 'int'\n    },\n    {\n        'name': 'company_id_created_by',\n        'type': 'int'\n    },\n    {\n        'name': 'company_id_created_dt',\n        'type': 'date'\n    },\n    {\n        'name': 'company_id_updated_by',\n        'type': 'int'\n    },\n    {\n        'name': 'company_id_updated_dt',\n        'type': 'date'\n    },\n    {\n        'name': 'company_id_passwd',\n        'type': 'string'\n    },\n    {\n        'name': 'company_id_dispatch_port',\n        'type': 'string'\n    },\n    {\n        'name': 'company_id_province',\n        'type': 'string'\n    },\n    {\n        'name': 'company_id_country',\n        'type': 'string'\n    },\n    {\n        'name': 'project_id_id',\n        'type': 'int'\n    },\n    {\n        'name': 'project_id_name',\n        'type': 'string'\n    },\n    {\n        'name': 'project_id_remarks',\n        'type': 'string'\n    },\n    {\n        'name': 'project_id_owner_id',\n        'type': 'int'\n    },\n    {\n        'name': 'project_id_code',\n        'type': 'string'\n    },\n    {\n        'name': 'project_id_active',\n        'type': 'int'\n    },\n    {\n        'name': 'project_id_type',\n        'type': 'string'\n    },\n    {\n        'name': 'project_id_client_id',\n        'type': 'int'\n    },\n    {\n        'name': 'project_id_team_id',\n        'type': 'int'\n    },\n    {\n        'name': 'project_id_file_location',\n        'type': 'string'\n    },\n    {\n        'name': 'project_id_open_date',\n        'type': 'date'\n    },\n    {\n        'name': 'project_id_open_by',\n        'type': 'int'\n    },\n    {\n        'name': 'project_id_close_date',\n        'type': 'date'\n    },\n    {\n        'name': 'project_id_countries',\n        'type': 'string'\n    },\n    {\n        'name': 'project_id_languages',\n        'type': 'string'\n    },\n    {\n        'name': 'project_id_agency_id',\n        'type': 'int'\n    },\n    {\n        'name': 'owner_id_id',\n        'type': 'int'\n    },\n    {\n        'name': 'owner_id_office_id',\n        'type': 'int'\n    },\n    {\n        'name': 'owner_id_name',\n        'type': 'string'\n    },\n    {\n        'name': 'owner_id_phone',\n        'type': 'string'\n    },\n    {\n        'name': 'owner_id_fax',\n        'type': 'string'\n    },\n    {\n        'name': 'owner_id_email',\n        'type': 'string'\n    },\n    {\n        'name': 'owner_id_company_id',\n        'type': 'int'\n    },\n    {\n        'name': 'owner_id_role',\n        'type': 'string'\n    },\n    {\n        'name': 'owner_id_active',\n        'type': 'int'\n    },\n    {\n        'name': 'owner_id_remarks',\n        'type': 'string'\n    },\n    {\n        'name': 'owner_id_passwd',\n        'type': 'string'\n    },\n    {\n        'name': 'owner_id_owner_id',\n        'type': 'int'\n    },\n    {\n        'name': 'owner_id_lang',\n        'type': 'string'\n    },\n    {\n        'name': 'owner_id_no_reset_sent',\n        'type': 'int'\n    },\n    {\n        'name': 'owner_id_action_type',\n        'type': 'string'\n    },\n    {\n        'name': 'owner_id_project_id',\n        'type': 'int'\n    },\n    {\n        'name': 'owner_id_deleted_by',\n        'type': 'int'\n    },\n    {\n        'name': 'owner_id_deleted_dt',\n        'type': 'date'\n    }\n]",
250                  "$ xns" : "Roo.data",
251                  "* prop" : "reader",
252                  "totalProperty" : "total"
253                 }
254                ]
255               }
256              ]
257             },
258             {
259              "listeners" : {
260               "|render" : "function (_self)\n{\n  _this.actionSel = _self;\n}",
261               "|select" : "function (combo, record, index)\n{\n  _this.grid.footer.onClick('first');\n}"
262              },
263              "listWidth" : 300,
264              "triggerAction" : "all",
265              "forceSelection" : true,
266              "selectOnFocus" : true,
267              "pageSize" : 20,
268              "displayField" : "action",
269              "emptyText" : "Select Action",
270              "minChars" : 2,
271              "valueField" : "action",
272              "xtype" : "ComboBox",
273              "allowBlank" : true,
274              "typeAhead" : true,
275              "editable" : true,
276              "width" : 150,
277              "$ xns" : "Roo.form",
278              "name" : "action",
279              "qtip" : "Select Action",
280              "queryParam" : "query[action]",
281              "tpl" : "<div class=\"x-grid-cell-text x-btn button\"><b>{action}</b> </div>",
282              "loadingText" : "Searching...",
283              "items" : [
284               {
285                "listeners" : {
286                 "|beforeload" : "function (_self, o)\n{\n    o.params = o.params || {};\n    // staff can see all logs, other companies can only see their own.\n    if (Pman.Login.authUser.company_id_comptype != 'OWNER') {\n        o.params.company_id = Pman.Login.authUser.company_id;\n    }\n    o.params._distinct = 'action';\n    o.params._columns ='action';\n}"
287                },
288                "xtype" : "Store",
289                "remoteSort" : true,
290                "$ sortInfo" : "{ field : 'action' , direction : 'ASC' }",
291                "$ xns" : "Roo.data",
292                "* prop" : "store",
293                "items" : [
294                 {
295                  "$ url" : "baseURL + '/Roo/Events.php'",
296                  "xtype" : "HttpProxy",
297                  "method" : "GET",
298                  "$ xns" : "Roo.data",
299                  "* prop" : "proxy"
300                 },
301                 {
302                  "id" : "id",
303                  "root" : "data",
304                  "xtype" : "JsonReader",
305                  "$ fields" : "[\n    {\n        'name': 'id',\n        'type': 'int'\n    },\n    {\n        'name': 'person_name',\n        'type': 'string'\n    },\n    {\n        'name': 'event_when',\n        'type': 'date',\n        'dateFormat': 'Y-m-d'\n    },\n    {\n        'name': 'action',\n        'type': 'string'\n    },\n    {\n        'name': 'ipaddr',\n        'type': 'string'\n    },\n    {\n        'name': 'on_id',\n        'type': 'int'\n    },\n    {\n        'name': 'on_table',\n        'type': 'string'\n    },\n    {\n        'name': 'person_id',\n        'type': 'int'\n    },\n    {\n        'name': 'remarks',\n        'type': 'string'\n    },\n    {\n        'name': 'person_id_id',\n        'type': 'int'\n    },\n    {\n        'name': 'person_id_office_id',\n        'type': 'int'\n    },\n    {\n        'name': 'person_id_name',\n        'type': 'string'\n    },\n    {\n        'name': 'person_id_phone',\n        'type': 'string'\n    },\n    {\n        'name': 'person_id_fax',\n        'type': 'string'\n    },\n    {\n        'name': 'person_id_email',\n        'type': 'string'\n    },\n    {\n        'name': 'person_id_company_id',\n        'type': 'int'\n    },\n    {\n        'name': 'person_id_role',\n        'type': 'string'\n    },\n    {\n        'name': 'person_id_active',\n        'type': 'int'\n    },\n    {\n        'name': 'person_id_remarks',\n        'type': 'string'\n    },\n    {\n        'name': 'person_id_passwd',\n        'type': 'string'\n    },\n    {\n        'name': 'person_id_owner_id',\n        'type': 'int'\n    },\n    {\n        'name': 'person_id_lang',\n        'type': 'string'\n    },\n    {\n        'name': 'person_id_no_reset_sent',\n        'type': 'int'\n    },\n    {\n        'name': 'person_id_action_type',\n        'type': 'string'\n    },\n    {\n        'name': 'person_id_project_id',\n        'type': 'int'\n    },\n    {\n        'name': 'person_id_deleted_by',\n        'type': 'int'\n    },\n    {\n        'name': 'person_id_deleted_dt',\n        'type': 'date'\n    }\n]",
306                  "$ xns" : "Roo.data",
307                  "* prop" : "reader",
308                  "totalProperty" : "total"
309                 }
310                ]
311               }
312              ]
313             },
314             {
315              "listeners" : {
316               "|render" : "function (_self)\n{\n    _this.affectSel = _self;\n  \n    if(!Pman.hasPerm('Admin.Logs_Affects', 'S')){\n        this.hide();\n    }\n}",
317               "|select" : "function (combo, record, index)\n{\n  _this.grid.footer.onClick('first');\n}"
318              },
319              "listWidth" : 300,
320              "triggerAction" : "all",
321              "forceSelection" : true,
322              "selectOnFocus" : true,
323              "pageSize" : 20,
324              "displayField" : "on_table",
325              "emptyText" : "Select Affects",
326              "minChars" : 2,
327              "valueField" : "action",
328              "xtype" : "ComboBox",
329              "allowBlank" : true,
330              "typeAhead" : true,
331              "editable" : true,
332              "width" : 150,
333              "$ xns" : "Roo.form",
334              "name" : "on_table",
335              "qtip" : "Select Action",
336              "queryParam" : "query[on_table]",
337              "tpl" : "<div class=\"x-grid-cell-text x-btn button\"><b>{on_table}</b> </div>",
338              "loadingText" : "Searching...",
339              "items" : [
340               {
341                "listeners" : {
342                 "|beforeload" : "function (_self, o)\n{\n    o.params = o.params || {};\n    // staff can see all logs, other companies can only see their own.\n    if (Pman.Login.authUser.company_id_comptype != 'OWNER') {\n        o.params.company_id = Pman.Login.authUser.company_id;\n    }\n    o.params._distinct = 'on_table';\n    o.params._columns ='on_table';\n}"
343                },
344                "xtype" : "Store",
345                "remoteSort" : true,
346                "$ sortInfo" : "{ field : 'on_table' , direction : 'ASC' }",
347                "$ xns" : "Roo.data",
348                "* prop" : "store",
349                "items" : [
350                 {
351                  "$ url" : "baseURL + '/Roo/Events.php'",
352                  "xtype" : "HttpProxy",
353                  "method" : "GET",
354                  "$ xns" : "Roo.data",
355                  "* prop" : "proxy"
356                 },
357                 {
358                  "id" : "id",
359                  "root" : "data",
360                  "xtype" : "JsonReader",
361                  "$ xns" : "Roo.data",
362                  "$ fields" : "[\n    {\n        'name': 'id',\n        'type': 'int'\n    },\n    {\n        'name': 'person_name',\n        'type': 'string'\n    },\n    {\n        'name': 'event_when',\n        'type': 'date',\n        'dateFormat': 'Y-m-d'\n    },\n    {\n        'name': 'action',\n        'type': 'string'\n    },\n    {\n        'name': 'ipaddr',\n        'type': 'string'\n    },\n    {\n        'name': 'on_id',\n        'type': 'int'\n    },\n    {\n        'name': 'on_table',\n        'type': 'string'\n    },\n    {\n        'name': 'person_id',\n        'type': 'int'\n    },\n    {\n        'name': 'remarks',\n        'type': 'string'\n    },\n    {\n        'name': 'person_id_id',\n        'type': 'int'\n    },\n    {\n        'name': 'person_id_office_id',\n        'type': 'int'\n    },\n    {\n        'name': 'person_id_name',\n        'type': 'string'\n    },\n    {\n        'name': 'person_id_phone',\n        'type': 'string'\n    },\n    {\n        'name': 'person_id_fax',\n        'type': 'string'\n    },\n    {\n        'name': 'person_id_email',\n        'type': 'string'\n    },\n    {\n        'name': 'person_id_company_id',\n        'type': 'int'\n    },\n    {\n        'name': 'person_id_role',\n        'type': 'string'\n    },\n    {\n        'name': 'person_id_active',\n        'type': 'int'\n    },\n    {\n        'name': 'person_id_remarks',\n        'type': 'string'\n    },\n    {\n        'name': 'person_id_passwd',\n        'type': 'string'\n    },\n    {\n        'name': 'person_id_owner_id',\n        'type': 'int'\n    },\n    {\n        'name': 'person_id_lang',\n        'type': 'string'\n    },\n    {\n        'name': 'person_id_no_reset_sent',\n        'type': 'int'\n    },\n    {\n        'name': 'person_id_action_type',\n        'type': 'string'\n    },\n    {\n        'name': 'person_id_project_id',\n        'type': 'int'\n    },\n    {\n        'name': 'person_id_deleted_by',\n        'type': 'int'\n    },\n    {\n        'name': 'person_id_deleted_dt',\n        'type': 'date'\n    }\n]",
363                  "* prop" : "reader",
364                  "totalProperty" : "total"
365                 }
366                ]
367               }
368              ]
369             },
370             {
371              "text" : "Date Range",
372              "xtype" : "TextItem",
373              "$ xns" : "Roo.Toolbar"
374             },
375             {
376              "listeners" : {
377               "render" : "function (_self)\n{\n  _this.dateFrom = _self;\n}",
378               "change" : "function (_self, newValue, oldValue)\n{\n  _this.grid.footer.onClick('first');\n}"
379              },
380              "format" : "Y-m-d",
381              "xtype" : "DateField",
382              "$ xns" : "Roo.form"
383             },
384             {
385              "listeners" : {
386               "render" : "function (_self)\n{\n  _this.dateTo = _self;\n}",
387               "change" : "function (_self, newValue, oldValue)\n{\n  _this.grid.footer.onClick('first');\n}"
388              },
389              "format" : "Y-m-d",
390              "xtype" : "DateField",
391              "$ xns" : "Roo.form"
392             }
393            ]
394           },
395           {
396            "xtype" : "ColumnModel",
397            "header" : "When",
398            "width" : 100,
399            "$ renderer" : "function(v) { return v ? v.dateFormat('d/m/Y H:i') : ''; }",
400            "$ xns" : "Roo.grid",
401            "* prop" : "colModel[]",
402            "dataIndex" : "event_when"
403           },
404           {
405            "xtype" : "ColumnModel",
406            "header" : "#id",
407            "width" : 100,
408            "$ xns" : "Roo.grid",
409            "* prop" : "colModel[]",
410            "dataIndex" : "id"
411           },
412           {
413            "xtype" : "ColumnModel",
414            "header" : "Person",
415            "width" : 150,
416            "$ renderer" : "function(v,x,r) { \n    \n    var ptable = _this.tableSel.getValue();\n    \n    var efield = 'person_id_email';\n    var nfield = 'person_id_name';    \n    \n    if(\n        ptable.length &&\n        ptable != 'Person' &&\n        typeof(r.data[ptable + '_id_email']) != 'undefined' &&\n        typeof(r.data[ptable + '_id_name']) != 'undefined'\n    ){\n        efield = ptable + '_id_email';\n        nfield = ptable + '_id_name';    \n    }\n    \n    var email = r.data[efield]; // ? r.data.person_id_email : r.data.person_id_email;\n    var name  = r.data[nfield]; // ? r.data.person_id_name : r.data.person_id_name;    \n    return String.format('{0} &lt;<a href=\"mailto:{1}\">{1}</a>&gt;', \n        name, email); \n\n\n}",
417            "$ xns" : "Roo.grid",
418            "* prop" : "colModel[]",
419            "dataIndex" : "person_id_name"
420           },
421           {
422            "xtype" : "ColumnModel",
423            "width" : 100,
424            "header" : "Action",
425            "$ renderer" : "function(v) { return String.format('{0}', v); }",
426            "$ xns" : "Roo.grid",
427            "* prop" : "colModel[]",
428            "dataIndex" : "action"
429           },
430           {
431            "xtype" : "ColumnModel",
432            "width" : 100,
433            "header" : "IP",
434            "$ renderer" : "function(v) { return String.format('{0}', v); }",
435            "$ xns" : "Roo.grid",
436            "* prop" : "colModel[]",
437            "dataIndex" : "ipaddr"
438           },
439           {
440            "xtype" : "ColumnModel",
441            "header" : "Affected",
442            "width" : 100,
443            "$ renderer" : "function(v, x, r) {                     \n            return v ? String.format('{0}({1})', v,  r.data.on_id)  : '';  \n   }",
444            "$ xns" : "Roo.grid",
445            "* prop" : "colModel[]",
446            "dataIndex" : "on_table"
447           },
448           {
449            "xtype" : "ColumnModel",
450            "header" : "Remarks",
451            "width" : 300,
452            "$ renderer" : "function(v) { return String.format('<span qtip=\"{1}\">{0}</span>', v, Roo.util.Format.htmlEncode(v)); }",
453            "$ xns" : "Roo.grid",
454            "* prop" : "colModel[]",
455            "dataIndex" : "remarks"
456           }
457          ]
458         }
459        ]
460       }
461      ]
462     }
463    ]
464   }
465  ]
466 }