{% extends "admin/base_site_nav.html" %} {% load i18n %} {% block extrahead %}{{block.super}} {% if not post %} {% endif %} {% endblock %} {% block content %}
Plan editor

The production planning module plans sales orders and forecast. It generates manufacturing orders, distribution orders and purchase orders for all steps in the bill of material.

You can review the resource loading, identify bottlenecks causing late deliveries and manually adjust the plan. You can monitor the progress of the manufacturing orders, distribution orders and purchase orders, or export them to your ERP for execution.

Let's start simple by inputting a single sales order and its bill of material.

{% if not post %}

Create a sales order

{% else %}

Here is the production plan for your sales order {{post.salesorder}}:

Check out what we did with your input data:

    {% for msg in post.messages %}
  • {{ msg | safe }}

  • {% endfor %}

Next actions:

{% endif %} {% endblock %}