diff --git a/odoo_partner/__manifest__.py b/odoo_partner/__manifest__.py index f40802e73..3174c2dab 100644 --- a/odoo_partner/__manifest__.py +++ b/odoo_partner/__manifest__.py @@ -4,37 +4,31 @@ 'category': 'Services', 'description': "", 'depends': [ - 'account_edi_ubl_cii', 'account_invoice_extract', - 'account_online_synchronization', 'appointment_account_payment', - 'documents_hr', - 'documents_product', 'documents_project', 'documents_spreadsheet', - 'helpdesk', 'hr_skills', 'knowledge', 'product_barcodelookup', - 'project_sms', 'sale_crm', 'sale_pdf_quote_builder', - 'sale_planning', - 'sale_timesheet_enterprise', - 'spreadsheet_sale_management', + 'sale_timesheet', 'web_studio', ], 'data': [ + 'data/res_config_settings.xml', 'data/ir_attachment_pre.xml', 'data/ir_model_fields.xml', 'data/ir_default.xml', 'data/documents_folder.xml', - 'data/product_attribute.xml', 'data/product_category.xml', 'data/product_pricelist.xml', 'data/project_task_type.xml', + 'data/project_tags.xml', 'data/project_project.xml', 'data/product_product.xml', + 'data/product_pricelist_item.xml', 'data/sale_order_template.xml', 'data/sale_order_template_line.xml', 'data/knowledge_cover.xml', @@ -45,6 +39,7 @@ 'data/ir_model_data.xml', ], 'demo': [ + 'demo/account_analytic_line.xml', 'demo/res_partner.xml', 'demo/account_analytic_account.xml', 'demo/appointment_type.xml', @@ -52,9 +47,10 @@ 'demo/hr_employee.xml', 'demo/sale_order.xml', 'demo/sale_order_line.xml', + 'demo/sale_order_confirm.xml', 'demo/project_task.xml', + 'demo/mail_activity.xml', 'demo/project_project.xml', - 'demo/sale_order_confirm.xml', ], 'license': 'OPL-1', 'author': 'Odoo S.A.', diff --git a/odoo_partner/data/ir_default.xml b/odoo_partner/data/ir_default.xml index c1bca90af..dd72c8d76 100644 --- a/odoo_partner/data/ir_default.xml +++ b/odoo_partner/data/ir_default.xml @@ -1,5 +1,5 @@ - + "" diff --git a/odoo_partner/data/knowledge_article.xml b/odoo_partner/data/knowledge_article.xml index 8eac28e58..d11861503 100644 --- a/odoo_partner/data/knowledge_article.xml +++ b/odoo_partner/data/knowledge_article.xml @@ -33,7 +33,7 @@
  • Manage your sales pipeline
  • Follow up on inquiries and proposals
  • -

    🎓 CRM

    +

    🎓 CRM


    Sales and Quote Management 💼

    Leverage the Sales app to create professional quotes and manage your sales process:

    @@ -65,7 +65,7 @@
    • Track your sales orders and revenue
    -

    🎓 Sales

    +

    🎓 Sales


    Projects 📊

    Utilize the Project app to manage Success Packs and large implementations:

    @@ -74,7 +74,7 @@
  • Track tasks, milestones, and deadlines
  • Collaborate with your team and clients
  • -

    🎓 Projects

    +

    🎓 Projects


    Documents 📁

    Store and organize important files in the Documents app:

    @@ -83,7 +83,7 @@
  • Share documents securely with your team and clients
  • Use tags and folders for easy retrieval
  • -

    🎓 Documents

    +

    🎓 Documents


    diff --git a/odoo_partner/data/product_attribute.xml b/odoo_partner/data/product_attribute.xml deleted file mode 100644 index 7fb685dca..000000000 --- a/odoo_partner/data/product_attribute.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - color - - - gender - - - material - - - pattern - - - manufacturer - - - brand - - - size - - - age group - - diff --git a/odoo_partner/data/product_pricelist_item.xml b/odoo_partner/data/product_pricelist_item.xml new file mode 100644 index 000000000..7d39ddd55 --- /dev/null +++ b/odoo_partner/data/product_pricelist_item.xml @@ -0,0 +1,75 @@ + + + + + + + + 1_product + 1800.0 + + + + + + + 1_product + 150.0 + + + + + + + 1_product + 1800.0 + + + + + + + 1_product + 1200.0 + + + + + + + 1_product + 1200.0 + + + + + + + 1_product + 100.0 + + + + + + + 1_product + 1250.0 + + + + + + + 1_product + 850.0 + + + + + + + 1_product + 850.0 + + diff --git a/odoo_partner/data/product_product.xml b/odoo_partner/data/product_product.xml index 585cdf60c..3ee519ec7 100644 --- a/odoo_partner/data/product_product.xml +++ b/odoo_partner/data/product_product.xml @@ -2,6 +2,7 @@ Business Analyst + service 850.0 @@ -12,6 +13,7 @@ Developer + service 850.0 @@ -22,6 +24,7 @@ Project Manager + service task_in_project 1250.0 @@ -34,6 +37,7 @@ ROI Analysis Setup + service task_in_project 1250.0 @@ -46,6 +50,7 @@ Success Pack + service task_global_project 100.0 diff --git a/odoo_partner/data/project_project.xml b/odoo_partner/data/project_project.xml index 8a4a3dd2a..a0978fdc6 100644 --- a/odoo_partner/data/project_project.xml +++ b/odoo_partner/data/project_project.xml @@ -3,6 +3,7 @@ Implementation + @@ -17,6 +18,7 @@ ROI Analysis + @@ -25,6 +27,7 @@ S00005 - Implementation + at_risk @@ -34,6 +37,7 @@ S00006 - ROI Analysis + on_track diff --git a/odoo_partner/data/project_tags.xml b/odoo_partner/data/project_tags.xml new file mode 100644 index 000000000..60c103559 --- /dev/null +++ b/odoo_partner/data/project_tags.xml @@ -0,0 +1,9 @@ + + + + Customer Projects + + + Template + + diff --git a/odoo_partner/data/res_config_settings.xml b/odoo_partner/data/res_config_settings.xml new file mode 100644 index 000000000..46ccf260b --- /dev/null +++ b/odoo_partner/data/res_config_settings.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/odoo_partner/demo/account_analytic_account.xml b/odoo_partner/demo/account_analytic_account.xml index d3dd5aac8..77e24a8e1 100644 --- a/odoo_partner/demo/account_analytic_account.xml +++ b/odoo_partner/demo/account_analytic_account.xml @@ -3,36 +3,30 @@ Implementation - Internal - ROI Analysis - S00005 - S00006 - Success Packs - diff --git a/odoo_partner/demo/account_analytic_line.xml b/odoo_partner/demo/account_analytic_line.xml new file mode 100644 index 000000000..367ccab5f --- /dev/null +++ b/odoo_partner/demo/account_analytic_line.xml @@ -0,0 +1,66 @@ + + + + / + + 6.0 + + + + billable_time + + + / + + 4.5 + + + + billable_time + + + Analysis + + + + + + non_billable + + + Analysis + + + + + + non_billable + + + / + + 7.5 + + + + billable_time + + + / + + 3.5 + + + + billable_time + + + / + + 4.0 + + + + billable_time + + diff --git a/odoo_partner/demo/crm_lead.xml b/odoo_partner/demo/crm_lead.xml index e3f87a805..8da12ed42 100644 --- a/odoo_partner/demo/crm_lead.xml +++ b/odoo_partner/demo/crm_lead.xml @@ -1,6 +1,7 @@ + Business Intelligence Dashboard Creation @@ -15,6 +16,7 @@ +1 571-262-0977 + POS System Deployment for Restaurant Chain @@ -28,6 +30,7 @@ +91 422 420 8736 + CRM Customization for Sales Team @@ -40,6 +43,7 @@ + +1 847-603-8900 Warehouse Management System Implementation @@ -54,6 +58,7 @@ +1 424-249-7285 + ERP Upgrade for Tech Solutions Inc. @@ -67,6 +72,7 @@ +91 22 4212 8888 + Success Pack @@ -80,6 +86,7 @@ +1 866-250-2604 + Success Pack @@ -93,6 +100,7 @@ +60 4-390 5239 + Success Pack @@ -106,6 +114,7 @@ Success Pack + @@ -118,6 +127,7 @@ Success Pack + diff --git a/odoo_partner/demo/hr_employee.xml b/odoo_partner/demo/hr_employee.xml index 37b7557b8..f1cda4ed3 100644 --- a/odoo_partner/demo/hr_employee.xml +++ b/odoo_partner/demo/hr_employee.xml @@ -1,5 +1,5 @@ - + Quentin Tegrator diff --git a/odoo_partner/demo/mail_activity.xml b/odoo_partner/demo/mail_activity.xml new file mode 100644 index 000000000..5dff9e872 --- /dev/null +++ b/odoo_partner/demo/mail_activity.xml @@ -0,0 +1,34 @@ + + + + + + crm.lead + + + + + crm.lead + + + + + + project.task + + + + + + crm.lead + + ERP Upgrade for Tech Solutions Inc. + + + + + + crm.lead + + + diff --git a/odoo_partner/demo/project_project.xml b/odoo_partner/demo/project_project.xml index 406af2444..3ff623653 100644 --- a/odoo_partner/demo/project_project.xml +++ b/odoo_partner/demo/project_project.xml @@ -1,25 +1,23 @@ - + - + - + - + - - + - - + diff --git a/odoo_partner/demo/project_task.xml b/odoo_partner/demo/project_task.xml index b3c1d25b0..ced33da6b 100644 --- a/odoo_partner/demo/project_task.xml +++ b/odoo_partner/demo/project_task.xml @@ -12,7 +12,6 @@ 2.0 6.0 0.75 - @@ -22,7 +21,6 @@ - @@ -42,7 +40,6 @@ 80.5 19.5 0.2 - @@ -53,7 +50,6 @@ - @@ -71,8 +67,6 @@ - - @@ -83,8 +77,6 @@ - - @@ -95,8 +87,6 @@ - - @@ -107,8 +97,6 @@ - - @@ -119,8 +107,6 @@ - - @@ -131,8 +117,6 @@ - - @@ -142,8 +126,6 @@ - - @@ -154,8 +136,6 @@ - - @@ -166,20 +146,6 @@ - - - - - - Presentation of results - 14 - - - - - - - @@ -190,8 +156,6 @@ - - @@ -202,7 +166,6 @@ - @@ -212,13 +175,23 @@ + + Presentation of results + 14 + + + + + + + + WS2 - Management of agreements 4 - WS3 - Sales process @@ -226,7 +199,6 @@ - WS4 - Inventory management @@ -234,7 +206,6 @@ - WS5 - Purchasing and reception management @@ -242,7 +213,6 @@ - WS6 - Operational management @@ -250,7 +220,6 @@ - WS7 - Accounting @@ -258,14 +227,12 @@ - WS8 - Others - WS9 - Marketing @@ -273,7 +240,6 @@ - WS10 - Buffer @@ -281,23 +247,21 @@ - - - Presentation of results - 14 + + WS1 - Master Data & Repositories + 3 - - - WS1 - Master Data & Repositories - 3 + + Presentation of results + 14 + - Project configuration and follow up @@ -308,175 +272,8 @@ 32.0 - - - Welcome Jean Boonen (boje)! - - Hey Jean Boonen (boje) 👋
    - Welcome to the To-do app!
    - -

    - - Use it to manage your work, take notes on the go, and create tasks based on them. - -

    -


    -

    Using the editor

    -
    -

    - This private to-do is for you to play around with. -
    - Ready to give it a spin? -

    -

    - Try the following -

    -
      -
    • - Check this box to indicate it's done -
    • -
    • - Click anywhere, and just start typing -
    • -
    • - Press Ctrl+Z/⌘+Z to undo any change -
    • -
    • - - Select text to - Highlight, - strikethrough - or - style - it - -
    • -
    • - - Below this list, try - commands - by - - typing - - "/" - -
    • -
    • -
        -
      • - - Add a checklist - (/checklist) - -
      • -
      • - - Add a separator - (/separator) - -
      • -
      • - - Use - /heading - to convert a text into a title - -
      • -
      -
    • -
    -


    - -

    Who has access to what?

    -
    -

    - - By default, to-dos are only visible to you. You can share them with other users by adding them as - - assignees. - - -
    - todo-access -

    -


    - -

    Organize your to-dos however you want

    -
    -

    - - Customize the stages from the - - Kanban view - - to reflect your preferred workflow. - -

    -


    - -

    Manage your to-dos and assigned tasks from a single place

    -
    -

    - - Access your personal pipeline with your to-dos and assigned tasks by going to the Project app and clicking - - My Tasks. - - -
    -
    - - There, your to-dos are listed as - - private tasks. - - Any task you create privately will also be included in your to-dos. Essentially, they are interchangeable. - -

    -


    - -

    Convert to-dos into tasks

    -
    -

    - - If you want to assign your to-do to a specific project, open the ⚙️ menu and click - - Convert to Task. - - This action will make it visible to other users. - -
    - convert-todo -

    -


    - -

    Create to-dos from anywhere

    -
    -

    - - Wherever you are, use the magic keyboard shortcut to add yourself a reminder 💡 - -
    -

      -
    • - - Alt + Shift + T - - (Windows/Linux) -
    • -
    • - - Ctrl + Shift + T - - (MacOs) -
    • -
    -]]>
    - -
    S00001 - Success Pack @@ -485,7 +282,6 @@ 200.0 200.0 - @@ -512,7 +308,6 @@ - diff --git a/odoo_partner/demo/sale_order.xml b/odoo_partner/demo/sale_order.xml index 5ee9ac8fe..de49b6f43 100644 --- a/odoo_partner/demo/sale_order.xml +++ b/odoo_partner/demo/sale_order.xml @@ -1,29 +1,53 @@ + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + - Success Pack - diff --git a/odoo_partner/demo/sale_order_line.xml b/odoo_partner/demo/sale_order_line.xml index 0f6855a37..6fc2efc16 100644 --- a/odoo_partner/demo/sale_order_line.xml +++ b/odoo_partner/demo/sale_order_line.xml @@ -1,556 +1,396 @@ - - - {'3': 100} + + + - - - 25.0 100.0 - 100.0 - 25.0 - - - {'3': 100} + + - - 25.0 100.0 - 100.0 - + + - - - line_section - - + + 25.0 + + 100.0 - + - - 850.0 - 850.0 + - - line_section - + - - 850.0 - 850.0 - + - - 850.0 - 850.0 + - - line_section - + - - 850.0 - 850.0 - + + - - - 850.0 - 850.0 + - - line_section - - + - - 1250.0 - 1250.0 - - {'3': 100} + - - 25.0 100.0 - 100.0 + + + + + + line_section + + + + + + + + + + 850.0 + + + + + + line_section + + + + + + + + + + 850.0 + + + + + + + + 850.0 + + + + + + line_section + + + + + + + + + + 850.0 + + + + + + + + 850.0 + + + + + + line_section + + + + + + + + + + 1250.0 + - - line_section - - + - {'7': 100} - - - 1250.0 - 1250.0 - 8.0 + - {'7': 100} - - - 0.5 850.0 - 850.0 - 4.0 + - {'7': 100} - - - 2.0 850.0 - 850.0 - 16.0 + - - line_section - - + - {'7': 100} - - - 10.0 850.0 - 850.0 - 80.0 + - {'7': 100} - - - 5.5 850.0 - 850.0 - 44.0 + - - line_section - - + - {'7': 100} - - - 850.0 - 850.0 - 8.0 + - - line_section - - + - {'5': 100} - - - 3.0 850.0 - 850.0 - 24.0 + - - line_section - - + - {'5': 100} - - - 25.0 850.0 - 850.0 - 200.0 + - {'5': 100} - - - 12.0 850.0 - 850.0 - 96.0 + - - line_section - - + - {'5': 100} - - - 8.0 850.0 - 850.0 - 64.0 + - {'5': 100} - - - 5.0 850.0 - 850.0 - 40.0 - - - - - - line_section - - - - - {'5': 100} - - - - - 4.0 - - 1250.0 - 1250.0 - 32.0 - - - - - - line_section - - - - - - - - - - - 850.0 - 850.0 - 8.0 - - - - - - - line_section - - - - - - - - - - - - 850.0 - 850.0 - 8.0 - - - - - - - - - - 850.0 - 850.0 - 8.0 - - - - - - - line_section - - - - - - - - - - - - 850.0 - 850.0 - 8.0 - - - - - - - - - - 850.0 - 850.0 - 8.0 - - + + - - - line_section - - + + 100.0 + + 100.0 - + + + - - - + 4.0 1250.0 - 1250.0 - 8.0 + - - - {'3': 100} - - - - - 100.0 - - 100.0 - 100.0 - 100.0 - - + - {'3': 100} - - - 100.0 100.0 - 100.0 - {'3': 100} - - - 200.0 150.0 - 150.0 - 200.0 diff --git a/odoo_partner/static/src/binary/hr_employee/1-image_1920 b/odoo_partner/static/src/binary/hr_employee/1-image_1920 deleted file mode 100644 index 619899521..000000000 --- a/odoo_partner/static/src/binary/hr_employee/1-image_1920 +++ /dev/null @@ -1 +0,0 @@ -A \ No newline at end of file diff --git a/odoo_partner/static/src/binary/product_template/1-image_1920 b/odoo_partner/static/src/binary/product_template/1-image_1920 deleted file mode 100644 index 4e70cfe43..000000000 Binary files a/odoo_partner/static/src/binary/product_template/1-image_1920 and /dev/null differ diff --git a/odoo_partner/static/src/binary/product_template/2-image_1920 b/odoo_partner/static/src/binary/product_template/2-image_1920 deleted file mode 100644 index c9d7a77d4..000000000 Binary files a/odoo_partner/static/src/binary/product_template/2-image_1920 and /dev/null differ