{% 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

The supply path defines all activities to deliver this sales order.

It can contain multiple levels in the bill of material and bill of distribution.

The supply path for this sales order is already defined.

You can skip this step and move on to the results.

{% 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 %}