Pman.Dialog.CoreCompanies.bjs
[Pman.Core] / Pman.Dialog.CoreCompanies.bjs
index c3664a9..271ac35 100644 (file)
@@ -6,6 +6,9 @@
     "path": "/home/chris/gitlive/Pman.Core/Pman.Dialog.CoreCompanies.bjs",
     "items": [
         {
+            "listeners": {
+                "beforeshow": "function (_self)\n{\n    if (data.isOwner || !Pman.Login.isOwner()) {\n        this.dialog.setTitle(\"Your Company Details\");\n        if (_this.form.findField('comptype')) {\n            _this.form.findField('comptype').disable();\n        }\n        \n        \n        \n        \n    } else {\n        this.dialog.setTitle(data.id ? \"Edit Company\" : \"Add Company\");\n        if (_this.form.findField('comptype')) {\n            _this.form.findField('comptype').enable();\n        }\n    }\n}"
+            },
             "autoCreate": "true",
             "closable": false,
             "collapsible": false,
                         {
                             "listeners": {
                                 "actionfailed": "function(f, act) {\n    _this.dialog.el.unmask();\n    // error msg???\n    Pman.standardActionFailed(f,act);\n              \n}",
-                                "actioncomplete": "function(f, act) {\n    _this.dialog.el.unmask();\n    //console.log('load completed'); \n    // error messages?????\n    \n   \n    if (act.type == 'load') {\n        \n        _this.data = act.result.data;\n        var meth = _this.data.isOwner || !Pman.Login.isOwner() ? 'disable' : 'enable';\n     \n            \n        if (_this.form.findField('comptype')) {\n            _this.form.findField('comptype')[meth]();\n        }\n         \n       // _this.loaded();\n        return;\n    }\n    \n    \n    if (act.type == 'submit') { // only submitted here if we are \n        _this.dialog.hide();\n       \n        if (_this.callback) {\n            _this.callback.call(this, act.result.data);\n        }\n        return; \n    }\n    // unmask?? \n}",
+                                "actioncomplete": "function(f, act) {\n    _this.dialog.el.unmask();\n    //console.log('load completed'); \n    // error messages?????\n    if(act.type == 'setdata'){\n        if (act.data._fetch) {\n            _this.dialog.el.mask(\"Loading\");\n            _this.form.doAction('load', {\n                url: baseURL + '/Roo/Companies.html',\n                method: 'GET',\n                params: {\n                    _id: this._id ,\n                    _ts : Math.random()\n                } \n            });\n            return;\n        } else {\n            _this.form.setValues(data);\n        }\n        \n        if (act.data.isOwner || !Pman.Login.isOwner()) {\n            _this.dialog.setTitle(\"Your Company Details\");\n            if (_this.form.findField('comptype')) {\n                _this.form.findField('comptype').disable();\n            }\n        } else {\n            _this.dialog.setTitle(data.id ? \"Edit Company\" : \"Add Company\");\n            if (_this.form.findField('comptype')) {\n                _this.form.findField('comptype').enable();\n            }\n        }\n    }\n   \n    if (act.type == 'load') {\n        _this.data = act.result.data;\n        var meth = _this.data.isOwner || !Pman.Login.isOwner() ? 'disable' : 'enable';\n     \n            \n        if (_this.form.findField('comptype')) {\n            _this.form.findField('comptype')[meth]();\n        }\n         \n       // _this.loaded();\n        return;\n    }\n    \n    \n    if (act.type == 'submit') { // only submitted here if we are \n        _this.dialog.hide();\n       \n        if (_this.callback) {\n            _this.callback.call(this, act.result.data);\n        }\n        return; \n    }\n    // unmask?? \n}",
                                 "rendered": "function (form)\n{\n    _this.form = form;\n}"
                             },
                             "fileUpload": true,
                             "labelWidth": 160,
                             "xtype": "Form",
+                            "|url": "baseURL + '/Roo/Person.php'",
                             "|xns": "Roo.form",
                             "items": [
                                 {
-                                    "allowBlank": false,
-                                    "fieldLabel": "Company ID (for filing Ref.)",
-                                    "name": "code",
-                                    "qtip": "Enter code",
-                                    "width": 100,
-                                    "xtype": "TextField",
-                                    "|xns": "Roo.form"
+                                    "width": 500,
+                                    "xtype": "Column",
+                                    "|xns": "Roo.form",
+                                    "items": [
+                                        {
+                                            "allowBlank": false,
+                                            "fieldLabel": "Company ID (for filing Ref.)",
+                                            "name": "code",
+                                            "qtip": "Enter code",
+                                            "width": 100,
+                                            "xtype": "TextField",
+                                            "|xns": "Roo.form"
+                                        },
+                                        {
+                                            "allowBlank": false,
+                                            "displayField": "desc",
+                                            "editable": false,
+                                            "emptyText": "Select Type",
+                                            "fieldLabel": "Type",
+                                            "hiddenName": "comptype",
+                                            "listWidth": 250,
+                                            "name": "comptype_name",
+                                            "qtip": "Select Company type",
+                                            "selectOnFocus": true,
+                                            "triggerAction": "all",
+                                            "typeAhead": false,
+                                            "valueField": "val",
+                                            "width": 200,
+                                            "xtype": "ComboBox",
+                                            "|xns": "Roo.form",
+                                            "items": [
+                                                {
+                                                    "*prop": "store",
+                                                    "data": "[ 'CONSULTANT', \"Consultant\" ],[ 'CLIENT'    ,  \"Client\" ],[ 'CONTRACTOR' , \"Contractor\" ]",
+                                                    "fields": "['val', 'desc']",
+                                                    "xtype": "SimpleStore",
+                                                    "|xns": "Roo.data"
+                                                }
+                                            ]
+                                        },
+                                        {
+                                            "allowBlank": true,
+                                            "fieldLabel": "Company Name",
+                                            "name": "name",
+                                            "qtip": "Enter Company Name",
+                                            "width": 300,
+                                            "xtype": "TextField",
+                                            "|xns": "Roo.form"
+                                        },
+                                        {
+                                            "allowBlank": true,
+                                            "fieldLabel": "Phone",
+                                            "name": "tel",
+                                            "qtip": "Enter Phone Number",
+                                            "width": 300,
+                                            "xtype": "TextField",
+                                            "|xns": "Roo.form"
+                                        },
+                                        {
+                                            "allowBlank": true,
+                                            "fieldLabel": "Fax",
+                                            "name": "fax",
+                                            "qtip": "Enter Fax Number",
+                                            "width": 300,
+                                            "xtype": "TextField",
+                                            "|xns": "Roo.form"
+                                        },
+                                        {
+                                            "allowBlank": true,
+                                            "fieldLabel": "Email",
+                                            "name": "email",
+                                            "qtip": "Enter Email Address",
+                                            "width": 300,
+                                            "xtype": "TextField",
+                                            "|xns": "Roo.form"
+                                        },
+                                        {
+                                            "allowBlank": true,
+                                            "fieldLabel": "Address",
+                                            "name": "address",
+                                            "qtip": "Enter Address",
+                                            "width": 300,
+                                            "xtype": "TextField",
+                                            "|xns": "Roo.form"
+                                        },
+                                        {
+                                            "allowBlank": true,
+                                            "fieldLabel": "Remarks",
+                                            "height": 40,
+                                            "name": "remarks",
+                                            "qtip": "Enter remarks",
+                                            "width": 300,
+                                            "xtype": "TextArea",
+                                            "|xns": "Roo.form"
+                                        }
+                                    ]
                                 },
                                 {
-                                    "allowBlank": false,
-                                    "displayField": "desc",
-                                    "editable": false,
-                                    "emptyText": "Select Type",
-                                    "fieldLabel": "Type",
-                                    "hiddenName": "comptype",
-                                    "listWidth": 250,
-                                    "name": "comptype_name",
-                                    "qtip": "Select Company type",
-                                    "selectOnFocus": true,
-                                    "triggerAction": "all",
-                                    "typeAhead": false,
-                                    "valueField": "val",
+                                    "labelAlign": "top",
                                     "width": 200,
-                                    "xtype": "ComboBox",
+                                    "xtype": "Column",
                                     "|xns": "Roo.form",
                                     "items": [
                                         {
-                                            "*prop": "store",
-                                            "data": "[ 'CONSULTANT', \"Consultant\" ],[ 'CLIENT'    ,  \"Client\" ],[ 'CONTRACTOR' , \"Contractor\" ]",
-                                            "fields": "['val', 'desc']",
-                                            "xtype": "SimpleStore",
-                                            "|xns": "Roo.data"
+                                            "fieldLabel": "Background Colour",
+                                            "name": "background_color",
+                                            "xtype": "TextField",
+                                            "|xns": "Roo.form"
+                                        },
+                                        {
+                                            "fieldLabel": "Logo Image",
+                                            "height": 170,
+                                            "icon": "rootURL + 'images/default/dd/drop-add.gif'",
+                                            "name": "logo_id",
+                                            "style": "border: 1px solid #ccc;",
+                                            "width": 170,
+                                            "xtype": "DisplayField",
+                                            "|valueRenderer": "function(v) {\n    //var vp = v ? v : 'Companies:' + _this.data.id + ':-LOGO';\n    if (!v) {\n        return \"No Image Available\" + '<BR/>';\n    }\n    return String.format('<img src=\"{0}\" width=\"150\">', \n            baseURL + '/Images/Thumb/150x150/' + v + '/logo.jpg'\n    );\n}",
+                                            "|xns": "Roo.form"
+                                        },
+                                        {
+                                            "listeners": {
+                                                "click": "function (_self, e)\n{\n    var _t = _this.form.findField('logo_id');\n                         \n    Pman.Dialog.Image.show({\n        onid :_this.data.id,\n        ontable : 'Companies',\n        imgtype : 'LOGO'\n    }, function(data) {\n        if  (data) {\n            _t.setValue(data.id);\n        }\n        \n    });\n}"
+                                            },
+                                            "text": "Add Image",
+                                            "xtype": "Button",
+                                            "|xns": "Roo"
                                         }
                                     ]
                                 },
                                 {
-                                    "allowBlank": true,
-                                    "fieldLabel": "Company Name",
-                                    "name": "name",
-                                    "qtip": "Enter Company Name",
-                                    "width": 300,
-                                    "xtype": "TextField",
-                                    "|xns": "Roo.form"
-                                },
-                                {
-                                    "allowBlank": true,
-                                    "fieldLabel": "Phone",
-                                    "name": "tel",
-                                    "qtip": "Enter Phone Number",
-                                    "width": 300,
-                                    "xtype": "TextField",
-                                    "|xns": "Roo.form"
-                                },
-                                {
-                                    "allowBlank": true,
-                                    "fieldLabel": "Fax",
-                                    "name": "fax",
-                                    "qtip": "Enter Fax Number",
-                                    "width": 300,
-                                    "xtype": "TextField",
+                                    "name": "isOwner",
+                                    "xtype": "Hidden",
                                     "|xns": "Roo.form"
                                 },
                                 {
-                                    "allowBlank": true,
-                                    "fieldLabel": "Email",
-                                    "name": "email",
-                                    "qtip": "Enter Fax Number",
-                                    "width": 300,
-                                    "xtype": "TextField",
+                                    "name": "id",
+                                    "xtype": "Hidden",
                                     "|xns": "Roo.form"
                                 }
                             ]