-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessage.xml
29 lines (29 loc) · 1.69 KB
/
message.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<tryton>
<data grouped="1">
<record model="ir.message" id="missing_cost_plan">
<field name="text">There are some lines of sale "%(sale)s" does not have Cost Plan, so it will not generate any production.</field>
</record>
<record model="ir.message" id="cannot_create_productions_missing_bom">
<field name="text">No production can be created because Product Cost Plan "%(cost_plan)s" has no BOM assigned.</field>
</record>
<record model="ir.message" id="quantity_already_produced">
<field name="text">Quantity already produced!</field>
</record>
<record model="ir.message" id="no_updateable_productions">
<field name="text">There is no updateable production available!</field>
</record>
<record model="ir.message" id="invalid_production_state">
<field name="text">You cannot modify the quantity of Production "%(production)s" because it is not in state "Draft" or "Waiting".</field>
</record>
<record model="ir.message" id="production_no_related_to_sale">
<field name="text">The Production "%(production)s" is not related to any sale.
In this case, you can't use this wizard but you can modify the quantity directly in production's form.</field>
</record>
<record model="ir.message" id="production_with_same_origin">
<field name="text">Cannot change Sale Line quantity because there ara more than one production "%(productions)s" with same Sale line "%(sale_line)s"</field>
</record>
</data>
</tryton>