Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions bookland/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,14 @@ Book land a modern library management system
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
:target: https://odoo-community.org/page/development-status
:alt: Beta
.. |badge2| image:: https://img.shields.io/badge/github-odoonix%2Feducation-lightgray.png?logo=github
.. |badge2| image:: https://img.shields.io/badge/license-LGPL--3-blue.png
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
:alt: License: LGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-odoonix%2Feducation-lightgray.png?logo=github
:target: https://github.com/odoonix/education/tree/17.0/bookland
:alt: odoonix/education

|badge1| |badge2|
|badge1| |badge2| |badge3|

این یک اپلیکشن برای مدیریت کتابخانه‌های دانشگاه است.

Expand All @@ -41,7 +44,7 @@ Changelog
در این نسخه ساختار اولیه نرم افزار ایجاد شده و امکانات زیر ایجاد شده
است.

- TODO:
- TODO:

Bug Tracker
===========
Expand All @@ -59,7 +62,7 @@ Credits
Authors
-------

*
* Odoonix

Maintainers
-----------
Expand Down
20 changes: 12 additions & 8 deletions bookland/__manifest__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
# pylint: disable=W0104
{"name": "Book land a modern library management system",

"data": [
# Security
"security/ir.model.access.csv",

# Views
"views/book_views.xml"
]}
{
"name": "Book land a modern library management system",
"website": "https://github.com/odoonix/education",
"author": "Odoonix",
"license": "LGPL-3",
"data": [
# Security
"security/ir.model.access.csv",
# Views
"views/book_views.xml",
],
}
6 changes: 3 additions & 3 deletions bookland/models/book.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from operator import index
from odoo import fields, models


Expand All @@ -20,7 +19,7 @@ class BooklandBook(models.Model):
# string="Description"
required=False,
translate=True,
index=False
index=False,
)
publish_date = fields.Date(string="Publish")

Expand All @@ -42,4 +41,5 @@ class BooklandBook(models.Model):
help="""
<h1>Price of the Book</h1>
<p>How much the book should sell on store</p>
""")
""",
)
4 changes: 2 additions & 2 deletions bookland/static/description/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ <h1>Book land a modern library management system</h1>
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:6e9bd71f9df246f05e4bc098c4bf905387b718570abfb0c2ca222227f560fa69
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="https://github.com/odoonix/education/tree/17.0/bookland"><img alt="odoonix/education" src="https://img.shields.io/badge/github-odoonix%2Feducation-lightgray.png?logo=github" /></a></p>
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/lgpl-3.0-standalone.html"><img alt="License: LGPL-3" src="https://img.shields.io/badge/license-LGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/odoonix/education/tree/17.0/bookland"><img alt="odoonix/education" src="https://img.shields.io/badge/github-odoonix%2Feducation-lightgray.png?logo=github" /></a></p>
<p>این یک اپلیکشن برای مدیریت کتابخانه‌های دانشگاه است.</p>
<p>در این نرم افزار شما امکانات متفاوتی خواهی داشت.</p>
<p><strong>Table of contents</strong></p>
Expand Down Expand Up @@ -414,7 +414,7 @@ <h2><a class="toc-backref" href="#toc-entry-4">Credits</a></h2>
<div class="section" id="authors">
<h3><a class="toc-backref" href="#toc-entry-5">Authors</a></h3>
<ul class="simple">
<li></li>
<li>Odoonix</li>
</ul>
</div>
<div class="section" id="maintainers">
Expand Down
12 changes: 6 additions & 6 deletions bookland/views/book_views.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8" ?>
<odoo>

<record id="book_form_view" model="ir.ui.view">
Expand All @@ -8,15 +8,15 @@
<form string="Book">
<group>
<group name="general">
<field name="name"></field>
<field name="name" />
</group>
<group name="publication">
<field name="publish_date"></field>
<field name="publish_date" />
</group>
</group>
<notebook>
<page name="description" string="Description">
<field name="description"></field>
<field name="description" />
</page>
</notebook>
</form>
Expand All @@ -29,8 +29,8 @@
<field name="model">bookland.book</field>
<field name="arch" type="xml">
<tree>
<field name="name"></field>
<field name="publish_date"></field>
<field name="name" />
<field name="publish_date" />
</tree>
</field>
</record>
Expand Down
11 changes: 7 additions & 4 deletions bookland_account/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,14 @@ Book land accounting feature
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
:target: https://odoo-community.org/page/development-status
:alt: Beta
.. |badge2| image:: https://img.shields.io/badge/github-odoonix%2Feducation-lightgray.png?logo=github
.. |badge2| image:: https://img.shields.io/badge/license-LGPL--3-blue.png
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
:alt: License: LGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-odoonix%2Feducation-lightgray.png?logo=github
:target: https://github.com/odoonix/education/tree/17.0/bookland_account
:alt: odoonix/education

|badge1| |badge2|
|badge1| |badge2| |badge3|

این ماژول امکانات حسابداری را اضافه می‌کند

Expand All @@ -36,7 +39,7 @@ Known issues / Roadmap
V2.0.0
======

- connect to invoice
- connect to invoice

Changelog
=========
Expand All @@ -59,7 +62,7 @@ Credits
Authors
-------

*
* Odoonix

Maintainers
-----------
Expand Down
7 changes: 6 additions & 1 deletion bookland_account/__manifest__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
# pylint: disable=W0104
{"name": "Book land accounting feature"}
{
"name": "Book land accounting feature",
"website": "https://github.com/odoonix/education",
"author": "Odoonix",
"license": "LGPL-3",
}
4 changes: 2 additions & 2 deletions bookland_account/static/description/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ <h1>Book land accounting feature</h1>
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:aea4cf208e370fcf4ea7f54b5f62c2319c1c78e6263fdafba294eed37a30cd2e
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="https://github.com/odoonix/education/tree/17.0/bookland_account"><img alt="odoonix/education" src="https://img.shields.io/badge/github-odoonix%2Feducation-lightgray.png?logo=github" /></a></p>
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/lgpl-3.0-standalone.html"><img alt="License: LGPL-3" src="https://img.shields.io/badge/license-LGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/odoonix/education/tree/17.0/bookland_account"><img alt="odoonix/education" src="https://img.shields.io/badge/github-odoonix%2Feducation-lightgray.png?logo=github" /></a></p>
<p>این ماژول امکانات حسابداری را اضافه می‌کند</p>
<p><strong>Table of contents</strong></p>
<div class="contents local topic" id="contents">
Expand Down Expand Up @@ -415,7 +415,7 @@ <h2><a class="toc-backref" href="#toc-entry-5">Credits</a></h2>
<div class="section" id="authors">
<h3><a class="toc-backref" href="#toc-entry-6">Authors</a></h3>
<ul class="simple">
<li></li>
<li>Odoonix</li>
</ul>
</div>
<div class="section" id="maintainers">
Expand Down
Loading