Thursday 6 December 2012

Install All Modules at once in OpenERP 7.0


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

How to install all modules at once in OpenERP 7.0?
Hello to all,
When we use OpenERP than sometimes its needed to install all modules without selecting one by one and install it.  OpenERP 7 gives you facility so, you can install all modules at once. I think its more useful, am i right?
Here i described some of steps which make 

Step 1 :



Step 2 :



Step 3 :



...Enjoy...

Wednesday 28 November 2012

5 features in OpenERP


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

5 features in OpenERP really nice. Have you tried???

1)  Google docs
    Add attachment to any particular record or any module. You can add google docs.

2)  Import Google meeting,Import Google Contacts
    To import the meeting from your google account(google calandar) to OpenERP Event Management Module.To import the contacts from your google account(google contacts) to OpenERP contacts.

3)  Sign in with Google and Facebook(auth openid)
    You can login in OpenERP with different login id.

4)  Lunch Module
    One of the best and very useful module in OpenERP. To Manage company meals.

5)  Fleet Module
    vehicles-related data of company. You can keep track of vehicle contracts, car-related services and refueling logs. With this module you can easily keep records of your vehicles, assign an employee to them, update the odometers and so on.

...Enjoy...

How to create Purchase order from Scheduler?


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

Purchase Order from Scheduler in OpenERP 7

Procurement is most useful in OpenERP, here i described some of steps that show you flow.

Here steps that might be useful to you.

Step 1 : Warehouse
    - Create New Product
    - Update Quantity on Hand
    - Set Sale price and cost price
    - Create Supplier for that particular product
    - Create minimum stock rules for that particular product

Step 2 : Sale Order
    - Create one sale order(select product and set related quantity available)
    - Confirm order

Step 3 : Warehouse
    - Create Delivery order
        - check availability
            - Process
                - Validate

Step 4 : Scheduler
    - Run Scheduler

Step 5 : Purchase Order
    Now , you can look there is one purchase order created with related quantity.

...Enjoy...

Monday 22 October 2012

How to Export your bookmarks from Google Chrome?

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

Hello To all,


Normally, its needed to export our bookmarks and transfer to our
How to Export your bookmarks from Google Chrome?

Here , a solution this may be useful to you all.




Thursday 4 October 2012

How to add Linkedin button in your blogger


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

1.Login to your blogger Dashboard--> Design- -> Edit HTML

2.Click on "Expand Widget Templates"

3.Scroll down to where you see below code:
                         <div class='post-header-line-1'/>

4.Now Copy your "Linkedin share button" code and paste it just below the above code.

NOTE: If you can't find <div class='post-header-line-1'/> in your template, paste your "Linkedin share button" code just before <data:post.body/> .

Code 1 : Vertical Count

<b:if cond='data:blog.pageType == "item"'>
<div style='float:right;margin-left:10px;'>
<script src='http://platform.linkedin.com/in.js' type='text/javascript'/><script data-counter='top' expr:data-url='data:post.url' type='in/share'/>
</div>
</b:if>
Result:

Sunday 19 August 2012

How to convert rst2html?


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

How to convert rst2html??
 Here are code that may be useful to you.
 Before that install python-docutils

Step : 1 
     Import library
                 from docutils.core import publish_string
     
 Step : 2
     overides :  that is overide the default setting.
                 embed_stylesheet : that is true/false that make to use default stylesheet or not
                 doctitle_xform   : Enable or disable the promotion of a lone top-level section
                                    title to document title (and subsequent section title to
                                    document subtitle promotion;
                                    docutils.transforms.frontmatter.DocTitle).
                 stylesheet_path='./css/voidspace.css', you can set external style sheet

   Examples :
         overrides = dict(embed_stylesheet= False, doctitle_xform= False)
         output = publish_string(source= desc, writer_name= 'html', settings_overrides= overrides)

Html rst tags : 
      put Video in rst :
            
    .. raw:: html

    <div style="margin-top:10px;">
      <iframe src="http://www.slideshare.net/slideshow/embed_code/7804331" width="427" height="356" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" style="border:1px solid #CCC;border-width:1px 1px 0;margin-bottom:5px" allowfullscreen> </iframe> <div style="margin-bottom:5px"> <strong> <a href="http://www.slideshare.net/openobject/openerp-crm-marketing-screencast" title="OpenERP CRM &amp; Marketing Screencast" target="_blank">OpenERP CRM &amp; Marketing Screencast</a> </strong> from <strong><a href="http://www.slideshare.net/openobject" target="_blank">OpenERP.tv</a></strong> </div>
    </div>
      http://docutils.sourceforge.net/docs/user/rst/quickref.html

You can also refer documentation :

And you can also use Online Demo

How to look like : 
 before : 
      
    
  After : (apply rst2html)
   
     


..Enjoy...