Tuesday 17 July 2012

Event Management Module

Hello Friends ,

         You all are going to search "Event Management Module" or "Event Management System" documentation or .ppt or Diagram for "EMM". I will provide you all this.

Mail me for getting documentation or .ppt. ( nayi.pinakin@gmail.com ).

Thanks,
Pinakin Nayi

...Enjoy...

Secure your ubuntu


                                                                                                                          Pinakin Nayi
                                                                                                                          OpenERP , Gandhinagar.
                                                                                                                          nayi.pinakin@gmail.com

Quick post of a script worth using. If your openerp-server is running on a Linux server, this server should be secured. Linux is a more secure server than Windows, but still is vulnerable to attacks. If you are new to the security field in Linux, there is a tool you should try, Bastille Unix. If you are using an
Ubuntu distribution, you can install this tool with the following command:
# sudo apt-get install bastille
After running the command bastille, you will see a wizard like window interface which will guide you through the different steps of hardening your system. These steps involve setting file permissions, disabling FTP,Firewall, Printing, disabling unnecesary services and accounts. Not only this is a very good tutorial on Linux security, but also a tool for hardening your system.
Be aware that your security obligations do not end here, this is just a very good first step.

Wednesday 11 July 2012

Graph Draw

                                                                                                        Pinakin Nayi
                                                                                                        OpenERP, Gandhinagar
                                                                                                        nayi.pinakin@gmail.com
                                                                                                        Mo. 08460643746

Hello Friends ,

You can use it, as per your requirement that will draw graph.

  You all are going to search a "How to draw Graph using java Script or Jquery".

I hope this will be helpful to you all.

Primarily just create with simple .html file.

Requirements :
                     sigma.min.js   you can download it from http://sigmajs.org/


<html>
<head>
            <script src="js/sigma.min.js"></script>
</head>
<body>
   <h1>Hello</h1>
   <div class="container">
        <div class="sigma-parent" id="sigma-example-parent">
                <p class="sigma-expand" id="sigma-example">
               </p>
       </div>
   </div>
    <script type="text/javascript">
var sigRoot = document.getElementById('sigma-example');
         var sigInst = sigma.init(sigRoot);
         node1 = {label: 'Hello', color: '#ff0000', size:5, x:1, y:3};
         node2 = {label: 'World', color: '#bb0000', size:10,x:2, y:2};
         sigInst.addNode('hello', node1);
        sigInst.addNode('world', node2);
        sigInst.addEdge('hello_world','hello','world', {size:2, label:"Hello World"});
        sigInst.draw();
        sigInst.drawingProperties({
                  defaultLabelColor: '#ccc',
                  font: 'Arial',
                  edgeColor: 'source',
                  defaultEdgeType: 'curve'
       })
       sigInst.graphProperties({
                  minNodeSize: 1,
                  maxNodeSize: 10
       });
   </script>

<style type="text/css">
  /* sigma.js context : */
  .sigma-parent {
    position: relative;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    height: 500px;
  }
  .sigma-expand {
    position: absolute;
    width: 30%;
    height: 100%;
    top: 0;
    left: 0;
  }
  .buttons-container{
    padding-bottom: 8px;
    padding-top: 12px;
  }
</style>

</body>
</html>

...Enjoy...

Monday 9 July 2012

HOW TO INSTALL OpenERP OUTLOOK PLUGIN

Outlook Plugin of OpenERP 

Sometimes its needed to how to install plugin , we have plugin but we don't know the way from where we install it, So, i hope this will be useful to you .  OpenERP.


-  First you need MSI file of the plugin to install this file you can find from the below path of your    
      - addons
                     -  For 32 bit machine addons/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPluginSetup32.msi * 
                     -  For 64 bit machine addons/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPluginSetup32.msi 

- Double click on msi file and click on next next and finish as you install exe in windows. 
    Once it is installed, If office 2007 You can see the OpenERP menu. 
    
    If office 2010 You can see the menu : Addin -> OpenERP

...Enjoy...

Thursday 21 June 2012

Indian Culture


OpenERP Mail Server Setting

                                                                                                                       Pinakin Nayi
                                                                                                                       (OpenERP)
                                                                                                                       Info-city, Gandhinagar.
                                                                                                                       nayi.pinakin@gmail.com

OpenERP Mail Configuration.

OpenERP Outgoing Mail Server Setting..

       You all are going to search how to set OpenERP Outgoing mail server setting. I hope these are helpful to you.


...Enjoy...

Thursday 3 May 2012

OpenERP Security issue

OpenERP Security its too cool..
Security is the main issue in any organization or firm because without it, its became handicapped . 
So, its needed in OpenERP to define security means access rules as well as access rights that will restrict the user to use particular.

Here i described one security file that will describe the groups.

I hope its useful to you all. 
Security and implies_ids

<?xml version="1.0" encoding="utf-8"?>
<openerp>
    <data noupdate="1">
    <record id="base.group_library_user" model="res.groups">
        <field name="name">Library User</field>
    </record>
    
    <record id="base.group_library_librarian" model="res.groups">
        <field name="name">Librarian</field>
    </record>
    
    <record id="base.group_lib_resuser_employee" model="res.groups">
        <field name="name">Employees</field>
        <field name="category_id" ref="base.module_category_human_resources"/>
        <field name="implied_ids" eval="[(4, ref('base.group_library_user'))]"/>
    </record>
    
    </data>
</openerp>

...Enjoy...