Nepali Date System
Effortless integration of Bikram Sambat calendar in Odoo
Add full BS/AD date support across forms, reports, and fields with zero stress.
Interface Showcase
Editable Form

Readonly Form

List View

Search View

Supports both Date & Datetime Fields

Datepickers System-Wide

Report Support
Accurate BS to AD conversion across all reporting channels.

Qweb Reports

Excel Sheet Reports
Easy Configuration
Customize your BS date formats right from Odoo Settings.

Key Features at a Glance
Everything you need to bring Bikram Sambat support into Odoo â beautifully integrated and production ready.
Plug & Play: Works right out of the box.
Dual Calendar: BS & AD support throughout.
Backend Conversion: Python-side BS logic included.
Report Ready: Seamless conversion in QWeb, Excel, and Pivot.
Custom Format: Configure BS format from settings.
Full Compatibility: Works on Community & Enterprise.
Extendable: On-demand conversion support available.
Credits
Datepicker Plugin: jQuery Calendars
Icons: iconfinder.com
Nepali Date System
Nepali Date System is a module to convert between A.D. and B.S. dates and pick a B.S. date by using nice looking date-picker widget directly in Odoo. It supports date conversion ranging from year 1990 B.S. to year 2100 B.S.
Authors: | Lekhnath Rijal |
---|---|
Version: | 16.0.1.0 |
Last update: | March 8, 2024 |
Server Side Usage
To convert date from A.D to B.S. and vice versa programatically you can make use of BikramSamvat python class provided by this module. Examples:
CODE EXAMPLE: Instantiate B.S. date
# Import date converter from odoo.addons.nepali_date.convert_date import BikramSamvat # Today's B.S. date bs_date_today = BikramSamvat() # To get A.D. date from B.S. date instance access `date` property ad_date_from_bs_date = bs_date_today.date
CODE EXAMPLE: Convert from A.D. date to B.S. date
from datetime import date import logging # Import date converter from odoo.addons.nepali_date.convert_date import BikramSamvat # Convert from A.D. date ad_date = date(1992, 5, 30) # instantiate A.D. date ad2bs_date = BikramSamvat(ad_date) # convert from A.D. date to B.S. date logging.info(ad2bs_date.format('MMMM dd, yyyy')) # print formatted B.S. date to stdout # Outputs: Jestha 17, 2049
CODE EXAMPLE: Convert from B.S. date to A.D. date
from datetime import date import logging # Import date converter from odoo.addons.nepali_date.convert_date import BikramSamvat # Convert from B.S. date bs_date = BikramSamvat(2046, 12, 12) bs2ad_date = bs_date.date # get B.S. to A.D conversion logging.info(bs2ad_date.strftime('%B %d, %Y')) # print formatted A.D. date to stdout # Outputs: March 25, 1990 logging.info(bs_date.format('MMMM dd, yyyy')) # print formatted B.S. date to stdout # Outputs: Chaitra 12, 2046
CODE EXAMPLE: B.S. date manipulation
from datetime import date from dateutil.relativedelta import relativedelta import logging # Import date converter from odoo.addons.nepali_date.convert_date import BikramSamvat # Instantiate B.S. date bs_date = BikramSamvat(2077, 4, 28) # Calculate next month based on B.S. date system next_month_date_bs = bs_date + relativedelta(months=1) # Calculate previous year based on B.S. date system prev_year_date_bs = bs_date - relativedelta(years=1) # Calculate next week next_week_date_bs = bs_date + relativedelta(weeks=1) # Complex calculation calculated_date_bs = ((BikramSamvat() + relativedelta(years=2, months=6, weeks=2)) - relativedelta(days=1)) calculated_date_bs_to_ad = calculated_date_bs.date # Supported relative properties # years, months, weeks and days
Odoo Proprietary License v1.0 This software and associated files (the "Software") may only be used (executed, modified, executed after modifications) if you have purchased a valid license from the authors, typically via Odoo Apps, or if you have received a written agreement from the authors of the Software (see the COPYRIGHT file). You may develop Odoo modules that use the Software as a library (typically by depending on it, importing it and using its resources), but without copying any source code or material from the Software. You may distribute those modules under the license of your choice, provided that this license is compatible with the terms of the Odoo Proprietary License (For example: LGPL, MIT, or proprietary licenses similar to this one). It is forbidden to publish, distribute, sublicense, or sell copies of the Software or modified copies of the Software. The above copyright notice and this permission notice must be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Please log in to comment on this module