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
5 changes: 5 additions & 0 deletions .weblate.json
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,11 @@
"filemask": "micro_brewery/i18n/*.po",
"new_base": "micro_brewery/i18n/micro_brewery.pot"
},
{
"name": "museum",
"filemask": "museum/i18n/*.po",
"new_base": "museum/i18n/museum.pot"
},
{
"name": "non_profit_organization",
"filemask": "non_profit_organization/i18n/*.po",
Expand Down
91 changes: 91 additions & 0 deletions museum/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
{
'name': 'Museum',
'version': '1.0',
'category': 'Services',
'author': 'Odoo S.A.',
'depends': [
'calendar',
'documents_sign',
'hr',
'knowledge',
'partnership',
'pos_event',
'purchase_stock',
'sale_planning',
'sale_subscription',
'website_event_sale',
],
'data': [
'data/product_pricelist.xml',
'data/res_config_settings.xml',
'data/ir_default.xml',
'data/ir_attachment_pre.xml',
'data/product_category.xml',
'data/pos_category.xml',
'data/product_pricelist_item.xml',
'data/res_partner_grade.xml',
'data/product_product.xml',
'data/knowledge_cover.xml',
'data/knowledge_article.xml',
'data/planning_role.xml',
'data/pos_payment_method.xml',
'data/pos_config.xml',
'data/product_public_category.xml',
'data/sign_template.xml',
'data/sign_item_role.xml',
'data/sign_item.xml',
'data/mail_message.xml',
'data/knowledge_article_favorite.xml',
'data/knowledge_tour.xml',
'data/res_partner_category.xml',
'data/hr_job.xml',
],
'demo': [
'demo/event_event.xml',
'demo/event_question.xml',
'demo/event_slot.xml',
'demo/event_event_ticket.xml',
'demo/pos_config.xml',
'demo/website_view.xml',
'demo/planning_recurrency.xml',
'demo/pos_session.xml',
'demo/res_partner.xml',
'demo/sign_request.xml',
'demo/stock_location.xml',
'demo/product_product.xml',
'demo/account_move.xml',
'demo/account_move_line.xml',
'demo/res_partner_category.xml',
'demo/purchase_order.xml',
'demo/stock_warehouse_orderpoint.xml',
'demo/purchase_order_line.xml',
'demo/planning_slot_template.xml',
'demo/hr_employee.xml',
'demo/planning_slot.xml',
'demo/ir_attachment_post.xml',
'demo/sale_order.xml',
'demo/sale_order_line.xml',
'demo/sale_order_confirm.xml',
'demo/stock_quant.xml',
'demo/website_page.xml',
'demo/website_menu.xml',
'demo/website_theme_apply.xml',
'demo/product_supplierinfo.xml',
'demo/payment_provider_demo.xml',
'demo/website.xml',
],
'license': 'OPL-1',
'assets': {
'web.assets_backend': [
'museum/static/src/js/my_tour.js',
],
},
'cloc_exclude': [
'data/knowledge_article.xml',
'demo/website_view.xml',
'static/src/js/my_tour.js',
],
'images': [
'images/main.png',
],
}
19 changes: 19 additions & 0 deletions museum/data/hr_job.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version='1.0' encoding='UTF-8'?>
<odoo noupdate="1">
<record id="hr_job_1" model="hr.job">
<field name="name">Artistic Director</field>
<field name="no_of_recruitment" eval="False"/>
</record>
<record id="hr_job_2" model="hr.job">
<field name="name">Public Programs Coordinator</field>
<field name="no_of_recruitment" eval="False"/>
</record>
<record id="hr_job_3" model="hr.job">
<field name="name">Finance &amp; Grants Manager</field>
<field name="no_of_recruitment" eval="False"/>
</record>
<record id="hr_job_4" model="hr.job">
<field name="name">Head of Curation</field>
<field name="no_of_recruitment" eval="False"/>
</record>
</odoo>
16 changes: 16 additions & 0 deletions museum/data/ir_attachment_pre.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?>
<odoo noupdate="1">
<record id="ir_attachment_1994" model="ir.attachment">
<field name="name">ir_attachment_1994.jpg</field>
<field name="datas" type="base64" file="museum/static/src/binary/ir_attachment/ir_attachment_1994.jpg"/>
</record>
<record id="ir_attachment_1913" model="ir.attachment">
<field name="name">ir_attachment_1913.pdf</field>
<field name="datas" type="base64" file="museum/static/src/binary/ir_attachment/ir_attachment_1913.pdf"/>
</record>
<record id="ir_attachment_1595" model="ir.attachment">
<field name="name">ir_attachment_1595.jpg</field>
<field name="datas" type="base64" file="museum/static/src/binary/ir_attachment/ir_attachment_1595.jpg"/>
<field name="public" eval="True"/>
</record>
</odoo>
7 changes: 7 additions & 0 deletions museum/data/ir_default.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version='1.0' encoding='UTF-8'?>
<odoo noupdate="1">
<record id="signing_order_default" model="ir.default">
<field name="field_id" ref="sign.field_sign_send_request__set_sign_order"/>
<field name="json_value">true</field>
</record>
</odoo>
Loading