File: message.xml

package info (click to toggle)
tryton-modules-stock-lot 7.0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 716 kB
  • sloc: python: 1,357; xml: 569; makefile: 11; sh: 3
file content (19 lines) | stat: -rw-r--r-- 1,014 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?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="msg_change_product">
            <field name="text">You cannot change the product of a stock lot which has stock moves.</field>
        </record>
        <record model="ir.message" id="msg_lot_required">
            <field name="text">To move product "%(product)s" you must provide a stock lot.</field>
        </record>
        <record model="ir.message" id="msg_only_lot">
            <field name="text">You must select a stock lot instead of a product for "%(product)s".</field>
        </record>
        <record model="ir.message" id="msg_move_add_lot_quantity">
            <field name="text">The total quantity "%(lot_quantity)s" of the lots must be less than or equal to the quantity "%(move_quantity)s" of the move.</field>
        </record>
    </data>
</tryton>