Skip to content
Snippets Groups Projects
Commit 1300dd9b1cdc authored by Houzefa Abbasbhay's avatar Houzefa Abbasbhay :slight_smile:
Browse files

Doc updates

parent 9e5b0fac1a41
No related branches found
No related tags found
No related merge requests found
Account period
==============
Accounting periods
==================
......@@ -3,3 +3,3 @@
Account period helps to define accounting period.
Per-period accounting concept. Periods can be individually closed.
......@@ -5,3 +5,3 @@
Accounting periods are similar to previous odoo version accounting periods.
This module also adds a transaction date in accounting documents.
......@@ -7,1 +7,2 @@
Inspired from what used to be available in previous Odoo versions.
##############################################################################
#
# Account period, for Odoo
# Accounting periods, for Odoo
# Copyright (C) 2018 XCG Consulting <http://odoo.consulting>
#
# This program is free software: you can redistribute it and/or modify
......@@ -19,5 +19,5 @@
##############################################################################
{
'name': 'Account period',
'name': 'Accounting periods',
'description': '''
......@@ -23,4 +23,4 @@
'description': '''
Account period
==============
Accounting periods
==================
......@@ -26,3 +26,3 @@
Account period helps to define accounting period.
Per-period accounting concept. Periods can be individually closed.
......@@ -28,5 +28,7 @@
Accounting periods are similar to previous odoo version accounting periods.
This module also adds a transaction date in accounting documents.
Inspired from what used to be available in previous Odoo versions.
''',
'version': '10.0.1.0.0',
'category': 'Accounting',
......
......@@ -98,5 +98,5 @@
@echo
@echo "Build finished; now you can run "qcollectiongenerator" with the" \
".qhcp project file in $(BUILDDIR)/qthelp, like this:"
@echo "# qcollectiongenerator $(BUILDDIR)/qthelp/InternalBilling.qhcp"
@echo "# qcollectiongenerator $(BUILDDIR)/qthelp/AccountingPeriods.qhcp"
@echo "To view the help file:"
......@@ -102,5 +102,5 @@
@echo "To view the help file:"
@echo "# assistant -collectionFile $(BUILDDIR)/qthelp/InternalBilling.qhc"
@echo "# assistant -collectionFile $(BUILDDIR)/qthelp/AccountingPeriods.qhc"
.PHONY: applehelp
applehelp:
......@@ -117,8 +117,8 @@
@echo
@echo "Build finished."
@echo "To view the help file:"
@echo "# mkdir -p $$HOME/.local/share/devhelp/InternalBilling"
@echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/InternalBilling"
@echo "# mkdir -p $$HOME/.local/share/devhelp/AccountingPeriods"
@echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/AccountingPeriods"
@echo "# devhelp"
.PHONY: epub
......
../README.rst
\ No newline at end of file
# -*- coding: utf-8 -*-
# flake8: noqa
#
# Internal billing documentation build configuration file, created by
# Accounting periods documentation build configuration file, created by
# sphinx-quickstart on Mon Apr 30 16:15:00 2018.
#
# This file is execfile()d with the current directory set to its
......@@ -58,7 +58,7 @@
master_doc = 'index'
# General information about the project.
project = u'Internal billing'
project = u'Accounting periods'
copyright = u'2018, XCG Consulting'
author = u'XCG Consulting'
......@@ -215,7 +215,7 @@
# html_search_scorer = 'scorer.js'
# Output file base name for HTML help builder.
htmlhelp_basename = 'InternalBillingDoc'
htmlhelp_basename = 'AccountingPeriodsDoc'
# -- Options for LaTeX output ---------------------------------------------
......@@ -237,8 +237,8 @@
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, 'InternalBilling.tex',
u'Internal billing documentation',
(master_doc, 'AccountingPeriods.tex',
u'Accounting periods documentation',
u'XCG Consulting', 'manual'),
]
......@@ -268,8 +268,8 @@
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
(master_doc, 'InternalBilling',
u'Internal billing documentation',
(master_doc, 'AccountingPeriods',
u'Accounting periods documentation',
[author], 1)
]
......@@ -283,10 +283,10 @@
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
(master_doc, 'InternalBilling',
u'Internal billing documentation',
author, 'InternalBilling', '''
Internal billing
(master_doc, 'AccountingPeriods',
u'Accounting periods documentation',
author, 'AccountingPeriods', '''
Accounting periods
''',
'Miscellaneous'),
]
......
# encoding: utf-8
###############################################################################
##############################################################################
#
......@@ -3,6 +2,6 @@
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2018 XCG Consulting (http://www.xcg-consulting.fr/)
# Accounting periods, for Odoo
# Copyright (C) 2018 XCG Consulting <http://odoo.consulting>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
......@@ -17,5 +16,5 @@
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
###############################################################################
##############################################################################
......@@ -21,7 +20,4 @@
from odoo import _
from odoo import api
from odoo import exceptions
from odoo import fields
from odoo import models
......
# encoding: utf-8
###############################################################################
##############################################################################
#
......@@ -3,6 +2,6 @@
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2018 XCG Consulting (http://www.xcg-consulting.fr/)
# Accounting periods, for Odoo
# Copyright (C) 2018 XCG Consulting <http://odoo.consulting>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
......@@ -17,5 +16,5 @@
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
###############################################################################
##############################################################################
......@@ -21,7 +20,4 @@
from odoo import _
from odoo import api
from odoo import exceptions
from odoo import fields
from odoo import models
......@@ -34,7 +30,7 @@
"""
_name = 'account.period'
_description = 'Account period'
_description = 'Accounting period'
name = fields.Char(
string='Period name',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment