Debug Mode in OpenERP 7.0 Web Client


Hello,

    I wanna like to share how to start OpenERP web-client in debug mode.IF you active a debug mode in web-client then You can access following functionality which is more helpful for openerp developer.

  •  Id [Id of record]
  • View Fields Information
  • Set Default Field Values [For one or All User]
  • Manage Filter
  • Technical Translation
  • Manage View with Editor
  • Edit Tree View
  • Edit Search View
  • Edit Form View
  • Edit Action
  • Print & Edit Workflow IF it Exists.
  • Enabele Toggle form Layout
  • JS Test


 

Hope that was helpful.


If I just made your day a little better then thank me with a coffee or maybe a pizza


Thanks,

Mayur Maheshwari

Anonymization in openerp

Hello

              This article describes how data anonymization works in openerp. For Privacy, security, legal, proprietary ownership, and other economic complications often prevent distribution of business data.here openerp brings you a good way to prevent data by method of anonymization

Anonymization :- A process that removes or replaces identity information from a communication or record. In short  hiding identity or information.Anonymized data allows organizations to release personal information into the public domain

De-Anonymization :-  is a data mining strategy in which anonymous data is cross-referenced with other data sources to re-identify the anonymous data source. Any information that distinguishes one data source from another can be used for de-anonymization.


How it works ?

It simply replaces the fields data by ‘XXX’ characters and when you reverse the anonymization process it will replace the ‘XXX’ by the original content.

Anonymization:- 
 
   Convert Normal Data  --> Anonymized data(XXX pattern)
    Ex: opneerp -> XXX01

De-Anonymization:-

  Convert Anonymized data(XXX pattern) --> Normal Data (reverse process)
   Ex: XXX01 --> opneerp

Require module :
    anonymization

steps to do database Anonymization in OpenERP:

1]. Install Anonymization Module

anonymization_in_openerp

















2]. Browse this menu [ Settings/Database anonymization/Anonymize database  ] open wizard and set proper field name which you want to Anonymized after then click on  anonymize database button so it will create a one pickle file you can say its past database dump. Don’t forget to save this  file on a safe place because you will not be able to revert the anonymization without this file. mainly This file by default store in home folder
   ex : /home/local/field_anonymization_ann_9.pickle [filename]

Note: let you make sure Before executing the anonymization process, you should make a backup of your database.



anonymization_in_openerp
















3].Anonymization successful [ you can see name format in XXX01, XXX07 ]

anonymization_in_openerp



























4]. Now for geting actual data reverse process means De-Anonymization select your pickle file and click on reverse the database anonymization

anonymization_in_openerp












Anonymization process:-



Cheers Enjoy OpenERP :)

Thanks,

Mayur Maheshwari 






Change language in OpenERP 7.0

Hello,

       "Language" a one word used for better communicate in global world. but mostly all we prefer own language for daily routine life. If any Application or interface is in own language then we can use more friendly, Here openERP brings for you multi language concept which is more faster , more user friendly and simple to translation in one language to another language.

    OpenERP already has translations in almost all the popular languages. These translations are bundled within the modules itself.Here i am trying explain how to load a new language in OpenERP

In order to proceed, please follow these simple steps:

1] Load a Translation:-

 
    First of all you have login with admin user. Now browse following menu  


             Settings/Translation/Load a Translation


    Open this wizard  and chose a appropriate language in language field. Only those language will be translated which are set to be in this selection field.
          Ex:- language => Arabic













Overwrite Existing Terms:- If you check this box,Your customized translation overwritten and replaced by the above language 

2] Active language & Refresh browser:

    you can active language with two ways
  
    First way : open user form [settings/users/user] and update language field with new language










 






Second way: open preference 













Set language in preferences wizard

















Thanks,

Mayur Maheshwari

Delete facebook mail in gmail inbox

Hello Friends


        Here I wanna like to share python script which delete facebook mail in your gmail account ,For use this script you just add your username and password  run this script on terminal so it's delete  facebook related mail in your gmail account


import imaplib, email
M = imaplib.IMAP4_SSL("imap.gmail.com", 993)
#your username and password
M.login('<<xxUSERNAMExx>>', '<<xPASSWORDx>>')
M.select()
typ, data = M.search(None, 'FROM', '"facebookmail.com"')
for num in data[0].split() :
    typ, data = M.fetch(num, '(UID BODY[TEXT])')
    M.store(num, '+FLAGS', '\\Deleted')
M.expunge()
M.close()
M.logout()


For another mail like LinkedIn, Twitter on any other groups
you have need to  change one line and run again this script

Example for Linked-In :

    typ, data = M.search(None, 'FROM', '"linkedin.com"')



I hope it's helpful for you .....:)

Thanks,

Mayur Maheshwari
skype: mayur_maheshwari1
mayurmaheshwari07@gmail.com

Database Filter in OpenERP 7.0

Hello Friends

Here I shared Information about how to filter a database name in openerp 7.0

just add a parameter after when you start server


 ./openerp-server --addons=/addons/trunk,/web/trunk/addons/ --db-filter='<<filtername_.*>>'








Thanks,

Mayur Maheshwari



Create Menu shortcut in openerp v7.0


Hello,

   Here I wanna like to share how to create menu shortcut in openerp.



Follow this simple steps for create menu shortcut

Step 1 - Browse any menu in OpenERP.

Example: suppose I would like to create a shortcut for sale order menu then browse  
             [sales  => sales => sale order ]


 












Step 2 - Press [*] the STAR icon.

you can find this [*] icon in right-corner of form [press and make it yellow]




 










After pressing the Star Icon [*], you will know a newly menu shortcut was created.

















Hope this helps you  :)
 


Thanks,

Mayur Maheshwari

Incoming Mail Server setting in OpenERP

Hello

I would like to serve How to set-up Incoming mail server in OpenERP 7.0

Required module for Installation:

-Featchmail
 

go thorough Settings/Technical/Email/Incoming Mail Servers























Google:
server: imap.gmail.com
SSL Port : 993
Please make sure, that IMAP access is enabled in the account settings. Login to your account and enable IMAP.

Yahoo:
Server: imap.mail.yahoo.com
SSL Port: 993



Thanks,

Mayur Maheshwari