Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

How to make Python 3 as your default Python Version on Windows 10/7

Python is known to be a Data Science programming language that effectively and simply solves algorithmic problems or Python is used to develop web applications. Python is a universal programming language. Python eases the execution of code becaus...

How to Make a Twitter Bot in Python With Tweepy

Twitter is a widely used social network around the world. A Twitter presence makes sense when the owner of the account is able to keep his or her followers engaged with new tweets and retweets, replying to messages and following other accounts th...

Why Python is the Best Programming Language for Deep Learning?

Deep Learning has gained fame and importance like never before by recently owing to its applications in image recognition, voice recognition, pattern detection, etc.    However, do you know which programming language is widely use...

Python Technology Used for Application Oriented Fields

Python is a vibrant and object-oriented programming language, widely utilized for web application development. 90% of people prefer Python over other technology because of its primitiveness, reliability and easy interfacing. It offers both compel...

5 Industries Looking for Python Coders

  Python has quickly become one of the most popular programming languages in the world. Despite having practical application in a wide range of different specializations, Python's a relatively easy language to use. It has value in...

Top Python Youtube Tutorial Channels You Should be Following

Python isn't the easiest programming language to learn, but those willing to get past the initial barrier to entry will find a deep and robust language that can be utilized in any number of different ways. Fortunately, there are countless res...

Python Programming Language in Embedded Software Development - Core Roles

Image: Business Insider Title: Python Programming Language   The deployment of embedded systems on a large scale demands inexpensive components. Considerations like low power consumption, high reliability and small size ...

Top 5 Useful Python Libraries Web Developers Can't Live Without

We all love Python, don’t we? With so many tools, modules and libraries, Python ecosystem is extensive and widespread in both depth and space. The open-source biome is intimidating and even with years of experience, a developer is required ...

Reading and writing file on MAC with Python

Hi All ,   Some time we have to create a file to store some data for our application and also read that file whenever we need it. So in this tutorial we will learn how to create a file on MAC system using python and also reading and wr...

HTTP request using python

Hi All, HTTP request  is a two way process i..e client - server communication .Three basic features that make HTTP a powerful protocol and these are: HTTP is connection less HTTP is media independent HTTP is stateless: Ther...

GUI to show list in MAC application

Hi All, In this tutorial we will update list as user enter an entry to the list. We create an entry field and a button to get details from the user and label to show the list. First we will create a user interface. 1) First step is to creat...

Create a simple login application for MAC

Hi all, An app user has to login before navigating to the any screen. In our app user will enter username and password for login, so we need two textfield and a button two submit. so lets start and follow these steps. 1) First step is to cr...

How to each product partial reconciliation in OpenERP(Odoo)

In OpenERP first, create custom module and than override the function in .py file in custom module  and pass this file to the __init__.py file. Then get the correct line residual amount  and pass this line in account invoice. using...

How to amount residual in account module in OpenERP(Odoo-8)?

In OpenERP first we create custom module and module name is account_demo and then create four file like as __init__.py, __openerp__.py, account_demo.py, account_demo.xml file in your module and create function and function name like accoutss_resi...

How to change product id in your account module in OpenERP(Odoo-8)?

In OpenERP, create a custom module like: demo and then create file like: demo.py file in your demo module and demo.py file pass in your other file __init__.py file. And then create other file demo.xml file and pass this file in your other file li...

onchange quantity sequence in account module in OpenERP(Odoo-8)

In OpenERP first, we will manage all file and create module and then inherits to the account.invoice object in your .py file. Follow these step given below Step1- First, we create custom module like as a test module and put this test m...

How to call and create parent class in account module in OpenERP(Odoo)?

In OpenERP first, we create custom module and then create function in your existing module and pass parameter in function name is MaterialsRecursive. In below example I have written Python script to Include only parent level class. Like given ...

How to update fields in text fields in product module OpenERP(Odoo)

In OpenERP first create custom module and inherits the hr module in your existing module.   Follow these step given below Step1- First create existing module like as test and than create .py file in your own module like as a test.py...

How to invoke mails in account module in OpenERP(Odoo)?

In OpenERP first create custom module and inherit the email_template object in your own module. Then create templates in .xml file.   Follow these step given below: Step1- First, create module like: test and then create .py file lik...

How to visible and invisible fields of the basis of selection fields in OpenERP(Odoo-8)?

In OpenERP first, create custom module and then create object in your own module and put your own module in your OpenERP server.   Follow these step given below Step1- First create module like as a test and then create file like as ...

How to send mail in next level in workflow in OpenERP(Odoo-8)?

In OpenERP, first, create custom module and then configure your incoming and outgoing mail in your server an then relate it to the function. Follow these step given below: Step1- First, create module like as a test module and then creat...

How to create PDF report using python script in OpenERP(Odoo-8)

In OpenERP first, create existing module and then inherits the account.invoice object in your own module and also create report file in your own module. Follow these step given belowas Step1- First create module like, test then create file ...

How to catches all keyboard events in OpenERP(Odoo)

In OpenERP first create custom module and inherits the Scanner object in your own module and pass all the barcode fields and map it to the object. Then this barcode will start a loop that catches all keyboard events in Odoo. And by using the ...

How to call product form to using of button in purchase module in OpenERP(Odoo-8)?

In OpenERP first, create your custom module and inherits the purchase module object like purchase.order object in your own module. Than add button in the purchase form. Follow these step given below Step1- First create module and than file ...

How to make payment and inherits account invoice object in OpenERP(Odoo-8)

In Odoo first we create existing own module and inherits the account invoice object in your own module. Than fetch all object like as a account.move , account.journal, account.period in your own module and update the account.journal and also invo...

Select product and add product in your sale order line on button click in Odoo-8

In Odoo first, we create custom module and also create function and pass this function in button. And when we open the form we will select the product and this product will show in sale order line. Follow these step given below Step1- First...

How to change email templates in OpenERP(Odoo-9)?

In OpenERP first, create a database and then install the sale module and account module with mapping your country currency and account module. Then install the mass mailing module in your database and thenconfirme your email templates in mass mai...

How to manage and configure outgoing email in Openerp(Odoo-9)

In Odoo, first, create database on server then install like: sale and account module and mapping with country account like as united state currency is $ then install module: United States – Accounting install. And If users want to send an ...

How to inherit delegation and view in OpenERP(Odoo)

In OpenERP first, we create a module and then inherits to the delegation and views both in your own module. Follow these step shown below Step1- First we create a module like as: test and then create a test.y file in an own module and pass ...

How to create function Compute fields using API in Odoo-9

In OpenERP first, we create existing module and then creates an object in own module and then creates fields and function in module and relate it to the fields, this fields computes all related records and saves it in a database. Here computed...

How to add current datetime in Django framework?

In Django framework first, we create the project in your Django server and add all javascript and CSS and jquery file in your HTML page and then create function. Follow these step shown below Step1- First we create a project in your Django&...

How to show submenus in Sale module in OpenERP(Odoo)

In OpenERP first, create custom module than inherits the sale menu and pass the view_mode in your menu file, follow these steps show below Step1- The first step is to create a module i.e test and then create a file test.py and in this file, cr...

How to show the customer payment Total in fields in OpenERP?

In OpenERP first, create a custom module and then inherits the account.payment object in your own module like module name test. Follow these steps given below Step1- First create the __init__.py file in your test module and use this code g...

How to add AngularJS in Django framework?

In Django framework first, create a project and then setup all file in Django server. Follow these steps given below Step1- First, create a project in Django using the link given below and setup database in setting.py file. http://findnerd....

How to add penalty in customer invoice in OpenERP-6.1?

In OpenERP first, install the account module and then create the own module and relate it to the fields payment term in account module. Follow these steps given below: Step1- First create add_penalty.py file in your own module and pass this...

How to transfer bill from one customer to another customer in OpenERP-6.1?

In OpenERP first, install the sale and account module so that users can transfer one bill to another bill. Follow these step given below: Step1- First create own module and then create file like as merge.py file and pass this file in your _...

How to merge partner in OpenERP-6.1?

In OpenERP first, install the sale and account module and then create the own module. Follow these step given below: Step1- Create your own module and then create merge_partner file and then pass this file in __init__.py file in your own mo...

How to find BoM for particular product and product_uom in Odoo?

In Odoo first, we have to create own modules and then create a function to find the BOM in our own modules. After this, we will search product on the basis of the product_tmpl_id and relate it to the BOM.  Here, product_uom is the Uni...

How to add value form account invoice line and store in customer form in Odoo-9?

In Odoo first install the accounting module and then if users want all customer related account invoice to be added only to the product price and the quantity of the product calculated and stored in the fields in res.partner, for this follow the ...

How to resize and save image in Odoo-8?

In Odoo first create the modules and then create a new field that saves images. Now to upload them correctly in your database and to resize images automatically and store them in database you can use the below function or steps I have mentioned: ...

How to inherits views and replace any fields in views in Odoo?

In Odoo first, we create existing modules and then we inherits the views in modules. Like first, we install the accounting modules in database and then inherits the account modules. Object is the account.invoice in existing modules and if user wa...

How to create PDF report for account module in Odoo-9?

In Odoo-9 first we install the accounting module and then create new module and inherits the account.invoice object in account module to own your module and give type is pdf in module. Follow these step show below: Step1:- First we create n...

How to functional field is replaced by computed field Odoo-8?

In Odoo-8 first, we create the own module and then create fields and make these fields a functional fields. Ones we create functional fields after this the functional field is replaced by computed field. Like, first create a computed field and...

How to calculate fields with total in account invoice line in Odoo-9?

In Odoo first, you have to install accounting module and in our system add existing fields and inherit the accounting module in our own module. We will follow these step given below:   Step1- First we create our own module and inher...

How to add CSS file and image file in Django?

In Django framework first we create the project and follow these step shown below: Step1- First we create a project in your Django. If you are not able to create a project then use this link. This link helps to create a project in Django frame...

How to set default Unit of Measure Categories(UOM) in odoo-9

In odoo-9 we create functional fields and validate to function and set also set to default value of Unit of Measure Categories(UOM) in selected form. Use this step show in given below Step1- First create fields in your own module in .p...

How to create web service in Odoo-9?

In Odoo-9 you have to create module and xmlrpc folder in server and install the apache2 in your system. After this follow the step given below: Step1- First create apache2 for our system using the command show below sudo apt-get instal...

How to add value in text box using click of button in odoo-9

In odoo-9 first we have to create the three fields in .py file and then add two fields and store it in third fields to click the button to help the get_total function. Then pass get_total function in button. Use this point show in below: 1-...

How to install Django Web Framework on Ubuntu 14.04 ?

Django is Python web framework for developing dynamic websites and applications. Using Django we can develop Python web applications faster. There are number of ways for installing Django, for now I will discuss two ways for installing Django ...

How to return models and ids of the user's in OpenERP?

In OpenERP first we create user's in user's form. Then the access of user's models res_users and pass the ids of the user's. After passing ids of the user's then user's selection will active and Return a tuple. Use this...
prev 1 3
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: