Review initial commit

This commit is contained in:
resteve 2014-12-03 16:32:08 +01:00
parent 6b72deb43b
commit 8548590dad
6 changed files with 7 additions and 8 deletions

View File

@ -1,4 +1,4 @@
Installing trytond_stock_search_shipment
Installing trytond-stock_search_shipment
========================================
Prerequisites

4
README
View File

@ -1,7 +1,7 @@
trytond_stock_search_shipment
trytond-stock_search_shipment
=============================
The stock_search_shipment module of the Tryton application platform.
The stock search shipment module of the Tryton application platform.
Installing
----------

View File

@ -4,7 +4,6 @@
from trytond.pool import Pool
from .shipment import *
def register():
Pool.register(
StockSearchShipmentStart,

View File

@ -1,5 +1,5 @@
Stock Search Shipment Module
############################
The stock_search_shipment module allows to search stock shipments from its own
The stock search shipment module allows to search stock shipments from its own
form view.

View File

@ -6,15 +6,15 @@ from trytond.pool import Pool, PoolMeta
from trytond.wizard import Button, StateAction, StateView, Wizard
from trytond.pyson import PYSONEncoder
from trytond.transaction import Transaction
__all__ = ['StockSearchShipmentStart', 'StockSearchShipment']
__all__ = ['StockSearchShipmentStart', 'StockSearchShipment']
__metaclass__ = PoolMeta
class StockSearchShipmentStart(ModelView):
'Stock Search Shipment Start'
__name__ = 'stock.search.shipment.start'
name = fields.Char('Code',
name = fields.Char('Code', required=True,
help='The code of the stock shipment you are looking for.')

View File

@ -4,12 +4,12 @@ The COPYRIGHT file at the top level of this repository contains the full
copyright notices and license terms. -->
<tryton>
<data>
<record model="ir.ui.view" id="stock_search_shipment_start_form_view">
<field name="model">stock.search.shipment.start</field>
<field name="type">form</field>
<field name="name">stock_search_shipment_start</field>
</record>
<record model="ir.action.wizard" id="stock_search_shipment_wizard">
<field name="name">Stock Search Shipment</field>
<field name="wiz_name">stock.search.shipment</field>