Metadata-Version: 2.2
Name: trytond_sale_opportunity
Version: 7.0.4
Summary: Tryton module with leads and opportunities
Home-page: http://www.tryton.org/
Download-URL: http://downloads.tryton.org/7.0/
Author: Tryton
Author-email: foundation@tryton.org
License: GPL-3
Project-URL: Bug Tracker, https://bugs.tryton.org/
Project-URL: Documentation, https://docs.tryton.org/modules-sale-opportunity
Project-URL: Forum, https://www.tryton.org/forum
Project-URL: Source Code, https://code.tryton.org/tryton
Keywords: tryton sale opportunity
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Plugins
Classifier: Framework :: Tryton
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: Intended Audience :: Legal Industry
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Natural Language :: Bulgarian
Classifier: Natural Language :: Catalan
Classifier: Natural Language :: Chinese (Simplified)
Classifier: Natural Language :: Czech
Classifier: Natural Language :: Dutch
Classifier: Natural Language :: English
Classifier: Natural Language :: Finnish
Classifier: Natural Language :: French
Classifier: Natural Language :: German
Classifier: Natural Language :: Hungarian
Classifier: Natural Language :: Indonesian
Classifier: Natural Language :: Italian
Classifier: Natural Language :: Persian
Classifier: Natural Language :: Polish
Classifier: Natural Language :: Portuguese (Brazilian)
Classifier: Natural Language :: Romanian
Classifier: Natural Language :: Russian
Classifier: Natural Language :: Slovenian
Classifier: Natural Language :: Spanish
Classifier: Natural Language :: Turkish
Classifier: Natural Language :: Ukrainian
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Office/Business
Requires-Python: >=3.8
License-File: LICENSE
Requires-Dist: python-sql>=0.4
Requires-Dist: python-dateutil
Requires-Dist: trytond_account<7.1,>=7.0
Requires-Dist: trytond_account_invoice<7.1,>=7.0
Requires-Dist: trytond_company<7.1,>=7.0
Requires-Dist: trytond_currency<7.1,>=7.0
Requires-Dist: trytond_party<7.1,>=7.0
Requires-Dist: trytond_product<7.1,>=7.0
Requires-Dist: trytond_sale<7.1,>=7.0
Requires-Dist: trytond_stock<7.1,>=7.0
Requires-Dist: trytond<7.1,>=7.0
Provides-Extra: sparklines
Requires-Dist: pygal; extra == "sparklines"
Provides-Extra: test
Requires-Dist: proteus<7.1,>=7.0; extra == "test"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: download-url
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: project-url
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

Sale Opportunity Module
#######################

The sale_opportunity module defines the lead/opportunity model.

Lead/Opportunity
****************

The lead and opportunity are defined by the same record but with different state.
Depending on the state, fields of the record become mandatory. Here is the
extensive list of the fields, most of them are optional:

- Party: The customer.
- Contact: The contact who placed the order.
- Address: The main address of the customer.
- Description: The description of the lead/opportunity.
- Number: The internal reference of the lead/opportunity (will be generated
  automatically at creation).
- Reference: The optional external reference of the order.
- Amount: The estimated revenue amount.
- Currency: Define the currency of the amount.
- Probability: The probability of conversion.
- Company: The company which issue the lead/opportunity.
- Employee: The employee responsible of the lead/opportunity.
- Start Date: When the lead started.
- End Date: When the lead ends (automatically set on win, cancel or lost).
- Payment Term: Define which payment term will be used for the future invoice.
- Comment: A text field to add custom comments.
- State: The state of the lead/opportunity. May take one of the following
  values:

    - Lead
    - Opportunity
    - Converted
    - Won
    - Cancelled
    - Lost

- Lines: A list of *Lead/Opportunity* line
- Sales: The list of sales converted from this opportunity.
- History: The list of changes made over time to the lead/opportunity.

The first time an opportunity is converted, a sale is created base on the
information of the opportunity and the lines.
The amount of the opportunity is later updated with the sales amount.
Once all the sales of an opportunity are confirmed (or cancelled with at least
one confirmed), the opportunity is won.
If all the sales of an opportunity are cancelled than the opportunity is lost.

Lead/Opportunity Line
*********************

A lead/opportunity line define a quantity of product that are expected to be sold.

Reports
*******

The sale_opportunity module defines also some reports:

- Opportunities per Employee.
- Opportunities per Month.
- Opportunities per Employee per Month.

which all show:

- The number of leads/opportunities.
- The number of converted opportunities.
- The convertion rate.
- The number of won opportunities.
- The winning rate.
- The number of lost opportunities.

- The total amount of leads/opportunities.
- The total amount of converted opportunities.
- The convertion amount rate.
- The total amount of won opportunities.
- The winning amount rate.
