Change module name from stock_review to stock_shipment_review

This commit is contained in:
Jordi Esteve 2015-04-04 12:26:44 +02:00
parent cd965e4b78
commit 5e73c9a3ae
8 changed files with 23 additions and 23 deletions

View File

@ -1,5 +1,5 @@
Installing trytond-stock_review
===============================
Installing trytond-stock_shipment_review
========================================
Prerequisites
-------------
@ -10,7 +10,7 @@ Prerequisites
Installation
------------
Once you've downloaded and unpacked the trytond_stock_review
Once you've downloaded and unpacked the trytond_stock_shipment_review
source release, enter the directory where the archive was unpacked, and run:
python setup.py install
@ -26,4 +26,4 @@ documentation:
http://docs.python.org/inst/inst.html
To use without installation, extract the archive into ``trytond/modules`` with
the directory name stock_review.
the directory name stock_shipment_review.

6
README
View File

@ -1,7 +1,7 @@
trytond-stock_review
====================
trytond-stock_shipment_review
=============================
The stock review module of the Tryton application platform.
The stock shipment review module of the Tryton application platform.
Installing
----------

View File

@ -7,4 +7,4 @@ from .shipment import *
def register():
Pool.register(
ShipmentOut,
module='stock_review', type_='model')
module='stock_shipment_review', type_='model')

View File

@ -1,5 +1,5 @@
=============
Módulo blanco
=============
=================================
Módulo revisión albarán de salida
=================================
Añade un campo al albarán de salida para marcar si ha sido revisado o no.

View File

@ -1,5 +1,5 @@
Stock Review Module
###################
Stock Shipment Review Module
############################
The stock review module adds a field to output shipments in order to check
whether is reviewed or not.
The stock shipment review module adds a field to output shipments in order to
check if has been reviewed or not.

View File

@ -6,7 +6,7 @@ import re
import os
import ConfigParser
MODULE = 'stock_review'
MODULE = 'stock_shipment_review'
PREFIX = 'trytonzz'
MODULE2PREFIX = {}
@ -40,7 +40,7 @@ tests_require = ['proteus >= %s.%s, < %s.%s' %
setup(name='%s_%s' % (PREFIX, MODULE),
version=info.get('version', '0.0.1'),
description='Tryton module that adds a field to output shipments in order '
'to check whether is reviewed or not.',
'to check if has been reviewed or not.',
author='Zikzakmedia SL',
author_email='zikzak@zikzakmedia.com',
url='http://www.zikzakmedia.com',

View File

@ -1,5 +1,5 @@
# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
from .test_stock_review import suite
from .test_stock_shipment_review import suite
__all__ = ['suite']

View File

@ -6,15 +6,15 @@ import trytond.tests.test_tryton
import unittest
class StockReviewTestCase(unittest.TestCase):
'Test Stock Review module'
class StockShipmentReviewTestCase(unittest.TestCase):
'Test Stock Shipment Review module'
def setUp(self):
trytond.tests.test_tryton.install_module('stock_review')
trytond.tests.test_tryton.install_module('stock_shipment_review')
def test0005views(self):
'Test views'
test_view('stock_review')
test_view('stock_shipment_review')
def test0006depends(self):
'Test depends'
@ -24,5 +24,5 @@ class StockReviewTestCase(unittest.TestCase):
def suite():
suite = trytond.tests.test_tryton.suite()
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
StockReviewTestCase))
StockShipmentReviewTestCase))
return suite