diff options
author | richard <richard@pkgsrc.org> | 2015-08-24 14:49:41 +0000 |
---|---|---|
committer | richard <richard@pkgsrc.org> | 2015-08-24 14:49:41 +0000 |
commit | a6391d3011f225dddd0be66a512c7fbfdae4e1e6 (patch) | |
tree | 9d969fc13e6ce35eb1e939efc99003ba2a2eb226 /finance | |
parent | 9329fa87925b2e4bd5db35c9e0f8328ab019e677 (diff) | |
download | pkgsrc-a6391d3011f225dddd0be66a512c7fbfdae4e1e6.tar.gz |
Updates and additions to release 3.6
details found here (http://www.tryton.org/posts/new-tryton-release-36.html)
Major changes for the developer
It is now allowed to have many times the same field in list/tree view.
There is no more a datetime widget for list/tree, two columns with one
widget date and one widget time should be used instead.
A new field TimeDelta appears in this release to represent a duration. It
replace the float_time widget which had some rounding issue. This new
field is already used in the timesheet and project modules.
The One2Many widget can be configured to use a Cartesian product with the
selections of many values for Many2One or Reference fields.
A method restore_history_before is added to ModelSQL which behaves like
the existing restore_history but restore the records just before the datetime.
The on_change methods have been migrated to a behaviour more consistent
with the Active Record Pattern used in Tryton. Instead of returning a
dictionary with the values to change, now the instance is directly changed.
This allow to chain easily the on_change methods or reuse them in other
methods reducing the duplication.
The method save on ModelStorage is now a dualmethod which means that it
can be called as usual as an instance method but also as a class method
with a list of records. Saving many records at once this way improves the
performance as the method will minimize the number of queries to the
database and will validate the result by bunch.
The Dict field received a translated method to create descriptors which
translate the values or the keys like the same method on Selection field.
It is now allowed to use the dotted notation in the order clause of a search.
The ORM will automatically generate the needed joins.
The API of the Report class has been reworked to improve the customization
of the engine. The formatting methods are now more strict to prevent silent
failure.
The safe_eval (which was not sure to be safe) has been completely removed.
In the places where the evaluated code was any way safe, the standard eval
is used. For evaluated code from outside, a JSON notation is now used. Some
utilities have been developed to ease the creation of JSON from XMl or in
the views.
A new kind of button has been added which works on non-saved record. They
are quite similar to on_change but they are triggered by a click on a
button instead of a change of field.
Accounting
A new method reverse_compute has been added to Tax which allow to compute
the base amount from the taxed amount.
The sign of the second currency amount is enforced to be the same as
debit - credit.
The analytic account management has been reworked to use a really One2Many
instead of the pseudo-field. This simplification was possible thanks to the
recent new features like the usage of Reference field on One2Many.
Party
The vat number is now stored in its compact format.
Product
The number of decimal for internal price calculations is now a configuration
parameter price_decimal. This parameter is used everywhere to ensure
consistency between all modules.
Purchase/Sale
Their lines support both mixed invoice type (Invoice vs Credit Note) per
line when computing the invoiced quantity.
Stock
A new state staging is added to the move. Such state doesn't impact at all
the computation of the stock level. It is used for supply on sale, to
create moves in advance.
Inactive products are still computed for the stock level.
The computation of assigned move has been improved to take only in
consideration outgoing move assigned not the incoming. This result in a
less optimistic for the stock level and thus prevent to assign a move with
an incoming one that is just assigned but not yet done.
Forecasts are now automatically deactivated when their period is in the past.
pkgsrc related updates:
update to tryton-3.6.0
update to trytond-3.6.0 including UTC check patch for SunOS
update trytond modules to latest 3.6
add meta-pkgs/py-tryton-platform
add misc/py-trytond-party-relationship
add misc/py-trytond-product-attribute
add misc/py-trytond-production
add misc/py-trytond-stock-inventory-location
add misc/py-trytond-stock-product-location
add finance/py-trytond-account-invoice-line-standalone
add finance/py-trytond-account-invoice-history
add finance/py-trytond-account-invoice-stock
add finance/py-trytond-account-payment-clearing
add finance/py-trytond-account-stock-continental
add finance/py-trytond-analytic-invoice
add finance/py-trytond-analytic-purchase
add finance/py-trytond-analytic-sale
add finance/py-trytond-product-price-list
add finance/py-trytond-product-cost-fifo
add finance/py-trytond-product-cost-history
add finance/py-trytond-purchase
add finance/py-trytond-purchase-invoice-line-standalone
add finance/py-trytond-sale
add finance/py-trytond-stock-supply
add time/py-trytond-company-work-time
Diffstat (limited to 'finance')
86 files changed, 1214 insertions, 72 deletions
diff --git a/finance/Makefile b/finance/Makefile index 4fa671539a7..e1026e3d886 100644 --- a/finance/Makefile +++ b/finance/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.37 2014/12/12 12:56:10 fhajny Exp $ +# $NetBSD: Makefile,v 1.38 2015/08/24 14:49:41 richard Exp $ # COMMENT= Monetary, financial and related applications @@ -21,13 +21,28 @@ SUBDIR+= py-trytond-account SUBDIR+= py-trytond-account-asset SUBDIR+= py-trytond-account-fr SUBDIR+= py-trytond-account-invoice +SUBDIR+= py-trytond-account-invoice-history +SUBDIR+= py-trytond-account-invoice-line-standalone +SUBDIR+= py-trytond-account-invoice-stock SUBDIR+= py-trytond-account-payment +SUBDIR+= py-trytond-account-payment-clearing SUBDIR+= py-trytond-account-payment-sepa SUBDIR+= py-trytond-account-product SUBDIR+= py-trytond-account-statement +SUBDIR+= py-trytond-account-stock-continental SUBDIR+= py-trytond-analytic-account +SUBDIR+= py-trytond-analytic-invoice +SUBDIR+= py-trytond-analytic-purchase +SUBDIR+= py-trytond-analytic-sale SUBDIR+= py-trytond-bank SUBDIR+= py-trytond-currency +SUBDIR+= py-trytond-product-cost-fifo +SUBDIR+= py-trytond-product-cost-history +SUBDIR+= py-trytond-product-price-list +SUBDIR+= py-trytond-purchase +SUBDIR+= py-trytond-purchase-invoice-line-standalone +SUBDIR+= py-trytond-sale +SUBDIR+= py-trytond-stock-supply SUBDIR+= py-vatnumber SUBDIR+= ruby-activemerchant SUBDIR+= ruby-braintree diff --git a/finance/py-trytond-account-asset/Makefile b/finance/py-trytond-account-asset/Makefile index 01172ef5e27..00fedfd41f7 100644 --- a/finance/py-trytond-account-asset/Makefile +++ b/finance/py-trytond-account-asset/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2015/03/15 00:17:34 rodent Exp $ +# $NetBSD: Makefile,v 1.3 2015/08/24 14:49:41 richard Exp $ TRYTON_MODULE_NAME= trytond_account_asset .include "../../devel/py-trytond/Makefile.common" CATEGORIES= finance python @@ -8,6 +8,7 @@ HOMEPAGE= http://www.tryton.org/ COMMENT= Account_asset module of the Tryton application platform LICENSE= gnu-gpl-v3 +DEPENDS+= ${PYPKGPREFIX}-cached-property-[0-9]*:../../devel/py-cached-property DEPENDS+= ${PYPKGPREFIX}-trytond-account-[0-9]*:../../finance/py-trytond-account DEPENDS+= ${PYPKGPREFIX}-trytond-account-product-[0-9]*:../../finance/py-trytond-account-product DEPENDS+= ${PYPKGPREFIX}-trytond-account-invoice-[0-9]*:../../finance/py-trytond-account-invoice @@ -18,7 +19,7 @@ USE_LANGUAGES= # none PYTHON_VERSIONED_DEPENDENCIES= dateutil -REPLACE_PYTHON+= tests/test_account_asset.py +REPLACE_PYTHON+= tests/test_account_asset.py tests/tools.py .include "../../lang/python/application.mk" .include "../../lang/python/egg.mk" diff --git a/finance/py-trytond-account-asset/PLIST b/finance/py-trytond-account-asset/PLIST index 224a328fd88..50f69f18269 100644 --- a/finance/py-trytond-account-asset/PLIST +++ b/finance/py-trytond-account-asset/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2015/03/15 00:17:34 rodent Exp $ +@comment $NetBSD: PLIST,v 1.3 2015/08/24 14:49:41 richard Exp $ ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt ${PYSITELIB}/${EGG_INFODIR}/entry_points.txt ${PYSITELIB}/${EGG_INFODIR}/not-zip-safe @@ -9,6 +9,7 @@ ${PYSITELIB}/${EGG_INFODIR}/top_level.txt ${PYSITELIB}/trytond/modules/account_asset/__init__.py ${PYSITELIB}/trytond/modules/account_asset/__init__.pyc ${PYSITELIB}/trytond/modules/account_asset/__init__.pyo +${PYSITELIB}/trytond/modules/account_asset/asset_table.odt ${PYSITELIB}/trytond/modules/account_asset/account.py ${PYSITELIB}/trytond/modules/account_asset/account.pyc ${PYSITELIB}/trytond/modules/account_asset/account.pyo @@ -43,6 +44,9 @@ ${PYSITELIB}/trytond/modules/account_asset/tests/scenario_account_asset.rst ${PYSITELIB}/trytond/modules/account_asset/tests/test_account_asset.py ${PYSITELIB}/trytond/modules/account_asset/tests/test_account_asset.pyc ${PYSITELIB}/trytond/modules/account_asset/tests/test_account_asset.pyo +${PYSITELIB}/trytond/modules/account_asset/tests/tools.py +${PYSITELIB}/trytond/modules/account_asset/tests/tools.pyc +${PYSITELIB}/trytond/modules/account_asset/tests/tools.pyo ${PYSITELIB}/trytond/modules/account_asset/tryton.cfg ${PYSITELIB}/trytond/modules/account_asset/view/asset_create_moves_start_form.xml ${PYSITELIB}/trytond/modules/account_asset/view/asset_form.xml @@ -54,4 +58,5 @@ ${PYSITELIB}/trytond/modules/account_asset/view/asset_update_start_form.xml ${PYSITELIB}/trytond/modules/account_asset/view/category_form.xml ${PYSITELIB}/trytond/modules/account_asset/view/configuration_form.xml ${PYSITELIB}/trytond/modules/account_asset/view/invoice_line_form.xml +${PYSITELIB}/trytond/modules/account_asset/view/print_depreciation_table_start.xml ${PYSITELIB}/trytond/modules/account_asset/view/template_form.xml diff --git a/finance/py-trytond-account-asset/distinfo b/finance/py-trytond-account-asset/distinfo index a6974cd5ecf..2dcff8cfdd9 100644 --- a/finance/py-trytond-account-asset/distinfo +++ b/finance/py-trytond-account-asset/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.2 2015/03/15 00:17:34 rodent Exp $ +$NetBSD: distinfo,v 1.3 2015/08/24 14:49:41 richard Exp $ -SHA1 (tryton-3.4/trytond_account_asset-3.4.0.tar.gz) = b8edff3e612b8d056daa31ff0bc32987d07432de -RMD160 (tryton-3.4/trytond_account_asset-3.4.0.tar.gz) = 1a4c21359476dfc63825caafbb9ec7080fa615a0 -Size (tryton-3.4/trytond_account_asset-3.4.0.tar.gz) = 38901 bytes +SHA1 (tryton-3.6/trytond_account_asset-3.6.1.tar.gz) = 17ca6998bdb6b76a0df49437b0cf4add4f615120 +RMD160 (tryton-3.6/trytond_account_asset-3.6.1.tar.gz) = bf64e7e95518f054778f847ff213881e059679f2 +Size (tryton-3.6/trytond_account_asset-3.6.1.tar.gz) = 63133 bytes diff --git a/finance/py-trytond-account-fr/Makefile b/finance/py-trytond-account-fr/Makefile index ee66bb25838..6fa97ffbd95 100644 --- a/finance/py-trytond-account-fr/Makefile +++ b/finance/py-trytond-account-fr/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2015/03/15 00:17:34 rodent Exp $ +# $NetBSD: Makefile,v 1.4 2015/08/24 14:49:41 richard Exp $ TRYTON_MODULE_NAME= trytond_account_fr .include "../../devel/py-trytond/Makefile.common" CATEGORIES= finance python @@ -13,6 +13,8 @@ DEPENDS+= ${PYPKGPREFIX}-trytond-[0-9]*:../../devel/py-trytond USE_LANGUAGES= # none +REPLACE_PYTHON+= tests/test_account_fr.py tests/__init__.py + .include "../../lang/python/application.mk" .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" diff --git a/finance/py-trytond-account-fr/PLIST b/finance/py-trytond-account-fr/PLIST index 55bf8c97d6e..a3fa0e0cc1e 100644 --- a/finance/py-trytond-account-fr/PLIST +++ b/finance/py-trytond-account-fr/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2014/05/15 05:33:45 richard Exp $ +@comment $NetBSD: PLIST,v 1.2 2015/08/24 14:49:41 richard Exp $ ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt ${PYSITELIB}/${EGG_INFODIR}/entry_points.txt ${PYSITELIB}/${EGG_INFODIR}/not-zip-safe @@ -14,4 +14,10 @@ ${PYSITELIB}/trytond/modules/account_fr/account.py ${PYSITELIB}/trytond/modules/account_fr/account.pyc ${PYSITELIB}/trytond/modules/account_fr/account.pyo ${PYSITELIB}/trytond/modules/account_fr/tax_fr.xml +${PYSITELIB}/trytond/modules/account_fr/tests/__init__.py +${PYSITELIB}/trytond/modules/account_fr/tests/__init__.pyc +${PYSITELIB}/trytond/modules/account_fr/tests/__init__.pyo +${PYSITELIB}/trytond/modules/account_fr/tests/test_account_fr.py +${PYSITELIB}/trytond/modules/account_fr/tests/test_account_fr.pyc +${PYSITELIB}/trytond/modules/account_fr/tests/test_account_fr.pyo ${PYSITELIB}/trytond/modules/account_fr/tryton.cfg diff --git a/finance/py-trytond-account-fr/distinfo b/finance/py-trytond-account-fr/distinfo index d2622868d86..882302327c2 100644 --- a/finance/py-trytond-account-fr/distinfo +++ b/finance/py-trytond-account-fr/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.2 2015/03/15 00:17:34 rodent Exp $ +$NetBSD: distinfo,v 1.3 2015/08/24 14:49:41 richard Exp $ -SHA1 (tryton-3.4/trytond_account_fr-3.4.0.tar.gz) = aed542ad130676509b54fbfe51ed87c3d4589c12 -RMD160 (tryton-3.4/trytond_account_fr-3.4.0.tar.gz) = d640167a7d721b6484efca541405a355db3ef325 -Size (tryton-3.4/trytond_account_fr-3.4.0.tar.gz) = 48639 bytes +SHA1 (tryton-3.6/trytond_account_fr-3.6.0.tar.gz) = c1e2c49d4433a56cb95e887704eb7bfcf38be98b +RMD160 (tryton-3.6/trytond_account_fr-3.6.0.tar.gz) = 706c646e529dba6348b275d797582f6368b6143c +Size (tryton-3.6/trytond_account_fr-3.6.0.tar.gz) = 52565 bytes diff --git a/finance/py-trytond-account-invoice-history/DESCR b/finance/py-trytond-account-invoice-history/DESCR new file mode 100644 index 00000000000..20074d81e62 --- /dev/null +++ b/finance/py-trytond-account-invoice-history/DESCR @@ -0,0 +1 @@ +The account invoice history module of the Tryton application platform. diff --git a/finance/py-trytond-account-invoice-history/Makefile b/finance/py-trytond-account-invoice-history/Makefile new file mode 100644 index 00000000000..a59a44a0bf4 --- /dev/null +++ b/finance/py-trytond-account-invoice-history/Makefile @@ -0,0 +1,21 @@ +# $NetBSD: Makefile,v 1.1 2015/08/24 14:49:42 richard Exp $ +TRYTON_MODULE_NAME= trytond_account_invoice_history +.include "../../devel/py-trytond/Makefile.common" +CATEGORIES= finance python + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://www.tryton.org/ +COMMENT= Account invoice history module of the Tryton platform +LICENSE= gnu-gpl-v3 + +DEPENDS+= ${PYPKGPREFIX}-trytond-account-invoice-[0-9]*:../../finance/py-trytond-account-invoice +DEPENDS+= ${PYPKGPREFIX}-trytond-party-[0-9]*:../../misc/py-trytond-party +DEPENDS+= ${PYPKGPREFIX}-trytond-[0-9]*:../../devel/py-trytond + +USE_LANGUAGES= # none + +REPLACE_PYTHON+= tests/test_account_invoice_history.py + +.include "../../lang/python/application.mk" +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/finance/py-trytond-account-invoice-history/PLIST b/finance/py-trytond-account-invoice-history/PLIST new file mode 100644 index 00000000000..743ba5c2939 --- /dev/null +++ b/finance/py-trytond-account-invoice-history/PLIST @@ -0,0 +1,33 @@ +@comment $NetBSD: PLIST,v 1.1 2015/08/24 14:49:42 richard Exp $ +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/entry_points.txt +${PYSITELIB}/${EGG_INFODIR}/not-zip-safe +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/trytond/modules/account_invoice_history/__init__.py +${PYSITELIB}/trytond/modules/account_invoice_history/__init__.pyc +${PYSITELIB}/trytond/modules/account_invoice_history/__init__.pyo +${PYSITELIB}/trytond/modules/account_invoice_history/invoice.py +${PYSITELIB}/trytond/modules/account_invoice_history/invoice.pyc +${PYSITELIB}/trytond/modules/account_invoice_history/invoice.pyo +${PYSITELIB}/trytond/modules/account_invoice_history/locale/bg_BG.po +${PYSITELIB}/trytond/modules/account_invoice_history/locale/ca_ES.po +${PYSITELIB}/trytond/modules/account_invoice_history/locale/cs_CZ.po +${PYSITELIB}/trytond/modules/account_invoice_history/locale/de_DE.po +${PYSITELIB}/trytond/modules/account_invoice_history/locale/es_AR.po +${PYSITELIB}/trytond/modules/account_invoice_history/locale/es_CO.po +${PYSITELIB}/trytond/modules/account_invoice_history/locale/es_EC.po +${PYSITELIB}/trytond/modules/account_invoice_history/locale/es_ES.po +${PYSITELIB}/trytond/modules/account_invoice_history/locale/fr_FR.po +${PYSITELIB}/trytond/modules/account_invoice_history/locale/nl_NL.po +${PYSITELIB}/trytond/modules/account_invoice_history/locale/ru_RU.po +${PYSITELIB}/trytond/modules/account_invoice_history/locale/sl_SI.po +${PYSITELIB}/trytond/modules/account_invoice_history/party.py +${PYSITELIB}/trytond/modules/account_invoice_history/party.pyc +${PYSITELIB}/trytond/modules/account_invoice_history/party.pyo +${PYSITELIB}/trytond/modules/account_invoice_history/payment_term.py +${PYSITELIB}/trytond/modules/account_invoice_history/payment_term.pyc +${PYSITELIB}/trytond/modules/account_invoice_history/payment_term.pyo +${PYSITELIB}/trytond/modules/account_invoice_history/tryton.cfg diff --git a/finance/py-trytond-account-invoice-history/distinfo b/finance/py-trytond-account-invoice-history/distinfo new file mode 100644 index 00000000000..55fb2db0270 --- /dev/null +++ b/finance/py-trytond-account-invoice-history/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2015/08/24 14:49:42 richard Exp $ + +SHA1 (tryton-3.6/trytond_account_invoice_history-3.6.0.tar.gz) = 572f11a18d921dae8912b33c352b40a11da663a7 +RMD160 (tryton-3.6/trytond_account_invoice_history-3.6.0.tar.gz) = 27f595c83f6acea28377dc21cff8fd0406c38564 +Size (tryton-3.6/trytond_account_invoice_history-3.6.0.tar.gz) = 17945 bytes diff --git a/finance/py-trytond-account-invoice-line-standalone/DESCR b/finance/py-trytond-account-invoice-line-standalone/DESCR new file mode 100644 index 00000000000..decc142bf4d --- /dev/null +++ b/finance/py-trytond-account-invoice-line-standalone/DESCR @@ -0,0 +1 @@ +The account invoice line standalone module of the Tryton application platform. diff --git a/finance/py-trytond-account-invoice-line-standalone/Makefile b/finance/py-trytond-account-invoice-line-standalone/Makefile new file mode 100644 index 00000000000..69cc96ba47b --- /dev/null +++ b/finance/py-trytond-account-invoice-line-standalone/Makefile @@ -0,0 +1,20 @@ +# $NetBSD: Makefile,v 1.1 2015/08/24 14:49:42 richard Exp $ +TRYTON_MODULE_NAME= trytond_account_invoice_line_standalone +.include "../../devel/py-trytond/Makefile.common" +CATEGORIES= finance python + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://www.tryton.org/ +COMMENT= Account invoice line standalone module of the Tryton platform +LICENSE= gnu-gpl-v3 + +DEPENDS+= ${PYPKGPREFIX}-trytond-account-invoice-[0-9]*:../../finance/py-trytond-account-invoice +DEPENDS+= ${PYPKGPREFIX}-trytond-[0-9]*:../../devel/py-trytond + +USE_LANGUAGES= # none + +REPLACE_PYTHON+= tests/test_account_invoice_line_standalone.py + +.include "../../lang/python/application.mk" +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/finance/py-trytond-account-invoice-line-standalone/PLIST b/finance/py-trytond-account-invoice-line-standalone/PLIST new file mode 100644 index 00000000000..59e8d66513c --- /dev/null +++ b/finance/py-trytond-account-invoice-line-standalone/PLIST @@ -0,0 +1,36 @@ +@comment $NetBSD: PLIST,v 1.1 2015/08/24 14:49:42 richard Exp $ +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/entry_points.txt +${PYSITELIB}/${EGG_INFODIR}/not-zip-safe +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/trytond/modules/account_invoice_line_standalone/__init__.py +${PYSITELIB}/trytond/modules/account_invoice_line_standalone/__init__.pyc +${PYSITELIB}/trytond/modules/account_invoice_line_standalone/__init__.pyo +${PYSITELIB}/trytond/modules/account_invoice_line_standalone/invoice.py +${PYSITELIB}/trytond/modules/account_invoice_line_standalone/invoice.pyc +${PYSITELIB}/trytond/modules/account_invoice_line_standalone/invoice.pyo +${PYSITELIB}/trytond/modules/account_invoice_line_standalone/invoice.xml +${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/bg_BG.po +${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/ca_ES.po +${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/cs_CZ.po +${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/de_DE.po +${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/es_AR.po +${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/es_CO.po +${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/es_EC.po +${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/es_ES.po +${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/fr_FR.po +${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/nl_NL.po +${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/ru_RU.po +${PYSITELIB}/trytond/modules/account_invoice_line_standalone/locale/sl_SI.po +${PYSITELIB}/trytond/modules/account_invoice_line_standalone/tests/__init__.py +${PYSITELIB}/trytond/modules/account_invoice_line_standalone/tests/__init__.pyc +${PYSITELIB}/trytond/modules/account_invoice_line_standalone/tests/__init__.pyo +${PYSITELIB}/trytond/modules/account_invoice_line_standalone/tests/test_account_invoice_line_standalone.py +${PYSITELIB}/trytond/modules/account_invoice_line_standalone/tests/test_account_invoice_line_standalone.pyc +${PYSITELIB}/trytond/modules/account_invoice_line_standalone/tests/test_account_invoice_line_standalone.pyo +${PYSITELIB}/trytond/modules/account_invoice_line_standalone/tryton.cfg +${PYSITELIB}/trytond/modules/account_invoice_line_standalone/view/invoice_line_form.xml +${PYSITELIB}/trytond/modules/account_invoice_line_standalone/view/invoice_line_tree.xml diff --git a/finance/py-trytond-account-invoice-line-standalone/distinfo b/finance/py-trytond-account-invoice-line-standalone/distinfo new file mode 100644 index 00000000000..ae254e0e490 --- /dev/null +++ b/finance/py-trytond-account-invoice-line-standalone/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2015/08/24 14:49:42 richard Exp $ + +SHA1 (tryton-3.6/trytond_account_invoice_line_standalone-3.6.0.tar.gz) = 54f08fc2988b58846772fe4a8681d5d384a16ac3 +RMD160 (tryton-3.6/trytond_account_invoice_line_standalone-3.6.0.tar.gz) = d1ce2af14dbebe4b0216c46ec6a7fff023c8fc7d +Size (tryton-3.6/trytond_account_invoice_line_standalone-3.6.0.tar.gz) = 19871 bytes diff --git a/finance/py-trytond-account-invoice-stock/DESCR b/finance/py-trytond-account-invoice-stock/DESCR new file mode 100644 index 00000000000..02078a1e8db --- /dev/null +++ b/finance/py-trytond-account-invoice-stock/DESCR @@ -0,0 +1 @@ +The account invoice stock module of the Tryton application platform. diff --git a/finance/py-trytond-account-invoice-stock/Makefile b/finance/py-trytond-account-invoice-stock/Makefile new file mode 100644 index 00000000000..7cba93a0cbd --- /dev/null +++ b/finance/py-trytond-account-invoice-stock/Makefile @@ -0,0 +1,22 @@ +# $NetBSD: Makefile,v 1.1 2015/08/24 14:49:42 richard Exp $ +TRYTON_MODULE_NAME= trytond_account_invoice_stock +.include "../../devel/py-trytond/Makefile.common" +CATEGORIES= finance python + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://www.tryton.org/ +COMMENT= Account invoice stock module of the Tryton platform +LICENSE= gnu-gpl-v3 + +DEPENDS+= ${PYPKGPREFIX}-trytond-product-[0-9]*:../../misc/py-trytond-product +DEPENDS+= ${PYPKGPREFIX}-trytond-stock-[0-9]*:../../misc/py-trytond-stock +DEPENDS+= ${PYPKGPREFIX}-trytond-account-invoice-[0-9]*:../../finance/py-trytond-account-invoice +DEPENDS+= ${PYPKGPREFIX}-trytond-[0-9]*:../../devel/py-trytond + +USE_LANGUAGES= # none + +REPLACE_PYTHON+= tests/test_account_invoice_stock.py + +.include "../../lang/python/application.mk" +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/finance/py-trytond-account-invoice-stock/PLIST b/finance/py-trytond-account-invoice-stock/PLIST new file mode 100644 index 00000000000..e5173d5ce56 --- /dev/null +++ b/finance/py-trytond-account-invoice-stock/PLIST @@ -0,0 +1,36 @@ +@comment $NetBSD: PLIST,v 1.1 2015/08/24 14:49:42 richard Exp $ +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/entry_points.txt +${PYSITELIB}/${EGG_INFODIR}/not-zip-safe +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/trytond/modules/account_invoice_stock/__init__.py +${PYSITELIB}/trytond/modules/account_invoice_stock/__init__.pyc +${PYSITELIB}/trytond/modules/account_invoice_stock/__init__.pyo +${PYSITELIB}/trytond/modules/account_invoice_stock/account.py +${PYSITELIB}/trytond/modules/account_invoice_stock/account.pyc +${PYSITELIB}/trytond/modules/account_invoice_stock/account.pyo +${PYSITELIB}/trytond/modules/account_invoice_stock/account.xml +${PYSITELIB}/trytond/modules/account_invoice_stock/locale/ca_ES.po +${PYSITELIB}/trytond/modules/account_invoice_stock/locale/de_DE.po +${PYSITELIB}/trytond/modules/account_invoice_stock/locale/es_AR.po +${PYSITELIB}/trytond/modules/account_invoice_stock/locale/es_CO.po +${PYSITELIB}/trytond/modules/account_invoice_stock/locale/es_EC.po +${PYSITELIB}/trytond/modules/account_invoice_stock/locale/es_ES.po +${PYSITELIB}/trytond/modules/account_invoice_stock/locale/fr_FR.po +${PYSITELIB}/trytond/modules/account_invoice_stock/locale/sl_SI.po +${PYSITELIB}/trytond/modules/account_invoice_stock/stock.py +${PYSITELIB}/trytond/modules/account_invoice_stock/stock.pyc +${PYSITELIB}/trytond/modules/account_invoice_stock/stock.pyo +${PYSITELIB}/trytond/modules/account_invoice_stock/stock.xml +${PYSITELIB}/trytond/modules/account_invoice_stock/tests/__init__.py +${PYSITELIB}/trytond/modules/account_invoice_stock/tests/__init__.pyc +${PYSITELIB}/trytond/modules/account_invoice_stock/tests/__init__.pyo +${PYSITELIB}/trytond/modules/account_invoice_stock/tests/test_account_invoice_stock.py +${PYSITELIB}/trytond/modules/account_invoice_stock/tests/test_account_invoice_stock.pyc +${PYSITELIB}/trytond/modules/account_invoice_stock/tests/test_account_invoice_stock.pyo +${PYSITELIB}/trytond/modules/account_invoice_stock/tryton.cfg +${PYSITELIB}/trytond/modules/account_invoice_stock/view/invoice_line_form.xml +${PYSITELIB}/trytond/modules/account_invoice_stock/view/move_form.xml diff --git a/finance/py-trytond-account-invoice-stock/distinfo b/finance/py-trytond-account-invoice-stock/distinfo new file mode 100644 index 00000000000..2bcbc295f96 --- /dev/null +++ b/finance/py-trytond-account-invoice-stock/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2015/08/24 14:49:42 richard Exp $ + +SHA1 (tryton-3.6/trytond_account_invoice_stock-3.6.0.tar.gz) = b12504e336f55dba4bb3fdc2cfed9de6600ab479 +RMD160 (tryton-3.6/trytond_account_invoice_stock-3.6.0.tar.gz) = 1da65a9d8aa4b0881dd2b745ab5276bb9024122b +Size (tryton-3.6/trytond_account_invoice_stock-3.6.0.tar.gz) = 19198 bytes diff --git a/finance/py-trytond-account-invoice/Makefile b/finance/py-trytond-account-invoice/Makefile index c265b772230..ea037dac666 100644 --- a/finance/py-trytond-account-invoice/Makefile +++ b/finance/py-trytond-account-invoice/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2015/03/15 00:17:34 rodent Exp $ +# $NetBSD: Makefile,v 1.8 2015/08/24 14:49:41 richard Exp $ TRYTON_MODULE_NAME= trytond_account_invoice .include "../../devel/py-trytond/Makefile.common" CATEGORIES= finance python @@ -21,7 +21,7 @@ USE_LANGUAGES= # none PYTHON_VERSIONED_DEPENDENCIES= dateutil -REPLACE_PYTHON+= tests/test_account_invoice.py +REPLACE_PYTHON+= tests/test_account_invoice.py tests/tools.py .include "../../lang/python/application.mk" .include "../../lang/python/egg.mk" diff --git a/finance/py-trytond-account-invoice/PLIST b/finance/py-trytond-account-invoice/PLIST index c42251f58c2..7d869abc590 100644 --- a/finance/py-trytond-account-invoice/PLIST +++ b/finance/py-trytond-account-invoice/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2015/03/15 00:17:34 rodent Exp $ +@comment $NetBSD: PLIST,v 1.3 2015/08/24 14:49:41 richard Exp $ ${PYSITELIB}/trytond/modules/account_invoice/__init__.py ${PYSITELIB}/trytond/modules/account_invoice/__init__.pyc ${PYSITELIB}/trytond/modules/account_invoice/__init__.pyo @@ -40,6 +40,9 @@ ${PYSITELIB}/trytond/modules/account_invoice/tests/scenario_invoice.rst ${PYSITELIB}/trytond/modules/account_invoice/tests/test_account_invoice.py ${PYSITELIB}/trytond/modules/account_invoice/tests/test_account_invoice.pyc ${PYSITELIB}/trytond/modules/account_invoice/tests/test_account_invoice.pyo +${PYSITELIB}/trytond/modules/account_invoice/tests/tools.py +${PYSITELIB}/trytond/modules/account_invoice/tests/tools.pyc +${PYSITELIB}/trytond/modules/account_invoice/tests/tools.pyo ${PYSITELIB}/trytond/modules/account_invoice/tryton.cfg ${PYSITELIB}/trytond/modules/account_invoice/view/address_form.xml ${PYSITELIB}/trytond/modules/account_invoice/view/address_tree.xml @@ -50,11 +53,11 @@ ${PYSITELIB}/trytond/modules/account_invoice/view/credit_start_form.xml ${PYSITELIB}/trytond/modules/account_invoice/view/fiscalyear_form.xml ${PYSITELIB}/trytond/modules/account_invoice/view/invoice_form.xml ${PYSITELIB}/trytond/modules/account_invoice/view/invoice_line_form.xml -${PYSITELIB}/trytond/modules/account_invoice/view/invoice_line_tree.xml ${PYSITELIB}/trytond/modules/account_invoice/view/invoice_line_tree_sequence.xml +${PYSITELIB}/trytond/modules/account_invoice/view/invoice_line_tree.xml ${PYSITELIB}/trytond/modules/account_invoice/view/invoice_tax_form.xml -${PYSITELIB}/trytond/modules/account_invoice/view/invoice_tax_tree.xml ${PYSITELIB}/trytond/modules/account_invoice/view/invoice_tax_tree_sequence.xml +${PYSITELIB}/trytond/modules/account_invoice/view/invoice_tax_tree.xml ${PYSITELIB}/trytond/modules/account_invoice/view/invoice_tree.xml ${PYSITELIB}/trytond/modules/account_invoice/view/move_line_list_payment.xml ${PYSITELIB}/trytond/modules/account_invoice/view/move_line_list_to_pay.xml @@ -63,8 +66,13 @@ ${PYSITELIB}/trytond/modules/account_invoice/view/pay_ask_form.xml ${PYSITELIB}/trytond/modules/account_invoice/view/pay_start_form.xml ${PYSITELIB}/trytond/modules/account_invoice/view/payment_term_form.xml ${PYSITELIB}/trytond/modules/account_invoice/view/payment_term_line_form.xml -${PYSITELIB}/trytond/modules/account_invoice/view/payment_term_line_list.xml ${PYSITELIB}/trytond/modules/account_invoice/view/payment_term_line_list_sequence.xml +${PYSITELIB}/trytond/modules/account_invoice/view/payment_term_line_list.xml +${PYSITELIB}/trytond/modules/account_invoice/view/payment_term_line_relativedelta_form.xml +${PYSITELIB}/trytond/modules/account_invoice/view/payment_term_line_relativedelta_list_sequence.xml +${PYSITELIB}/trytond/modules/account_invoice/view/payment_term_line_relativedelta_list.xml +${PYSITELIB}/trytond/modules/account_invoice/view/payment_term_test_form.xml +${PYSITELIB}/trytond/modules/account_invoice/view/payment_term_test_result_list.xml ${PYSITELIB}/trytond/modules/account_invoice/view/payment_term_tree.xml ${PYSITELIB}/trytond/modules/account_invoice/view/period_form.xml ${PYSITELIB}/trytond/modules/account_invoice/view/print_warning_form.xml diff --git a/finance/py-trytond-account-invoice/distinfo b/finance/py-trytond-account-invoice/distinfo index bcab78e9d80..f6bc3938230 100644 --- a/finance/py-trytond-account-invoice/distinfo +++ b/finance/py-trytond-account-invoice/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.4 2015/03/15 00:17:34 rodent Exp $ +$NetBSD: distinfo,v 1.5 2015/08/24 14:49:41 richard Exp $ -SHA1 (tryton-3.4/trytond_account_invoice-3.4.0.tar.gz) = 0ac6a9e4c2070ae22f14854179e376e16973d709 -RMD160 (tryton-3.4/trytond_account_invoice-3.4.0.tar.gz) = 5ad95918688432aa0346b83da87b6c227ca74c91 -Size (tryton-3.4/trytond_account_invoice-3.4.0.tar.gz) = 127579 bytes +SHA1 (tryton-3.6/trytond_account_invoice-3.6.1.tar.gz) = 0385d41e4351a011da54213f09a1a786a303bbbd +RMD160 (tryton-3.6/trytond_account_invoice-3.6.1.tar.gz) = fc1657c93d1cc1df3fab9d1a26c5b5519d42488e +Size (tryton-3.6/trytond_account_invoice-3.6.1.tar.gz) = 130614 bytes diff --git a/finance/py-trytond-account-payment-clearing/DESCR b/finance/py-trytond-account-payment-clearing/DESCR new file mode 100644 index 00000000000..2adca89d184 --- /dev/null +++ b/finance/py-trytond-account-payment-clearing/DESCR @@ -0,0 +1 @@ +The account_payment_clearing module of the Tryton application platform. diff --git a/finance/py-trytond-account-payment-clearing/Makefile b/finance/py-trytond-account-payment-clearing/Makefile new file mode 100644 index 00000000000..def1fd8cb9a --- /dev/null +++ b/finance/py-trytond-account-payment-clearing/Makefile @@ -0,0 +1,18 @@ +# $NetBSD: Makefile,v 1.1 2015/08/24 14:49:42 richard Exp $ +TRYTON_MODULE_NAME= trytond_account_payment_clearing +.include "../../devel/py-trytond/Makefile.common" +CATEGORIES= finance python + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://www.tryton.org/ +COMMENT= Account payment clearing module of the Tryton application platform +LICENSE= gnu-gpl-v3 + +DEPENDS+= ${PYPKGPREFIX}-trytond-account-payment-[0-9]*:../../finance/py-trytond-account-payment +DEPENDS+= ${PYPKGPREFIX}-trytond-[0-9]*:../../devel/py-trytond + +REPLACE_PYTHON+= tests/test_account_payment_clearing.py + +.include "../../lang/python/application.mk" +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/finance/py-trytond-account-payment-clearing/PLIST b/finance/py-trytond-account-payment-clearing/PLIST new file mode 100644 index 00000000000..2f7fd871a58 --- /dev/null +++ b/finance/py-trytond-account-payment-clearing/PLIST @@ -0,0 +1,41 @@ +@comment $NetBSD: PLIST,v 1.1 2015/08/24 14:49:42 richard Exp $ +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/entry_points.txt +${PYSITELIB}/${EGG_INFODIR}/not-zip-safe +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/trytond/modules/account_payment_clearing/__init__.py +${PYSITELIB}/trytond/modules/account_payment_clearing/__init__.pyc +${PYSITELIB}/trytond/modules/account_payment_clearing/__init__.pyo +${PYSITELIB}/trytond/modules/account_payment_clearing/account.py +${PYSITELIB}/trytond/modules/account_payment_clearing/account.pyc +${PYSITELIB}/trytond/modules/account_payment_clearing/account.pyo +${PYSITELIB}/trytond/modules/account_payment_clearing/locale/ca_ES.po +${PYSITELIB}/trytond/modules/account_payment_clearing/locale/de_DE.po +${PYSITELIB}/trytond/modules/account_payment_clearing/locale/es_AR.po +${PYSITELIB}/trytond/modules/account_payment_clearing/locale/es_CO.po +${PYSITELIB}/trytond/modules/account_payment_clearing/locale/es_EC.po +${PYSITELIB}/trytond/modules/account_payment_clearing/locale/es_ES.po +${PYSITELIB}/trytond/modules/account_payment_clearing/locale/fr_FR.po +${PYSITELIB}/trytond/modules/account_payment_clearing/locale/sl_SI.po +${PYSITELIB}/trytond/modules/account_payment_clearing/payment.py +${PYSITELIB}/trytond/modules/account_payment_clearing/payment.pyc +${PYSITELIB}/trytond/modules/account_payment_clearing/payment.pyo +${PYSITELIB}/trytond/modules/account_payment_clearing/payment.xml +${PYSITELIB}/trytond/modules/account_payment_clearing/statement.py +${PYSITELIB}/trytond/modules/account_payment_clearing/statement.pyc +${PYSITELIB}/trytond/modules/account_payment_clearing/statement.pyo +${PYSITELIB}/trytond/modules/account_payment_clearing/statement.xml +${PYSITELIB}/trytond/modules/account_payment_clearing/tests/__init__.py +${PYSITELIB}/trytond/modules/account_payment_clearing/tests/__init__.pyc +${PYSITELIB}/trytond/modules/account_payment_clearing/tests/__init__.pyo +${PYSITELIB}/trytond/modules/account_payment_clearing/tests/test_account_payment_clearing.py +${PYSITELIB}/trytond/modules/account_payment_clearing/tests/test_account_payment_clearing.pyc +${PYSITELIB}/trytond/modules/account_payment_clearing/tests/test_account_payment_clearing.pyo +${PYSITELIB}/trytond/modules/account_payment_clearing/tryton.cfg +${PYSITELIB}/trytond/modules/account_payment_clearing/view/payment_form.xml +${PYSITELIB}/trytond/modules/account_payment_clearing/view/payment_journal_form.xml +${PYSITELIB}/trytond/modules/account_payment_clearing/view/statement_line_form.xml +${PYSITELIB}/trytond/modules/account_payment_clearing/view/statement_line_tree.xml diff --git a/finance/py-trytond-account-payment-clearing/distinfo b/finance/py-trytond-account-payment-clearing/distinfo new file mode 100644 index 00000000000..f6012ddd6d0 --- /dev/null +++ b/finance/py-trytond-account-payment-clearing/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2015/08/24 14:49:42 richard Exp $ + +SHA1 (tryton-3.6/trytond_account_payment_clearing-3.6.0.tar.gz) = 235c88cf4e39c672aeb3823c12a646935a39e76a +RMD160 (tryton-3.6/trytond_account_payment_clearing-3.6.0.tar.gz) = f1e94e2c065ccf81a93913721975dc20e411e6b5 +Size (tryton-3.6/trytond_account_payment_clearing-3.6.0.tar.gz) = 22318 bytes diff --git a/finance/py-trytond-account-payment-sepa/PLIST b/finance/py-trytond-account-payment-sepa/PLIST index 0060e576cf9..ced6a9c2716 100644 --- a/finance/py-trytond-account-payment-sepa/PLIST +++ b/finance/py-trytond-account-payment-sepa/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2015/03/18 22:54:00 rodent Exp $ +@comment $NetBSD: PLIST,v 1.3 2015/08/24 14:49:42 richard Exp $ ${PYSITELIB}/trytond/modules/account_payment_sepa/__init__.py ${PYSITELIB}/trytond/modules/account_payment_sepa/__init__.pyc ${PYSITELIB}/trytond/modules/account_payment_sepa/__init__.pyo @@ -26,11 +26,14 @@ ${PYSITELIB}/trytond/modules/account_payment_sepa/payment.xml ${PYSITELIB}/trytond/modules/account_payment_sepa/sepa_handler.py ${PYSITELIB}/trytond/modules/account_payment_sepa/sepa_handler.pyc ${PYSITELIB}/trytond/modules/account_payment_sepa/sepa_handler.pyo +${PYSITELIB}/trytond/modules/account_payment_sepa/template/base.003.xml ${PYSITELIB}/trytond/modules/account_payment_sepa/template/base.xml ${PYSITELIB}/trytond/modules/account_payment_sepa/template/pain.001.001.03.xml ${PYSITELIB}/trytond/modules/account_payment_sepa/template/pain.001.001.05.xml +${PYSITELIB}/trytond/modules/account_payment_sepa/template/pain.001.003.03.xml ${PYSITELIB}/trytond/modules/account_payment_sepa/template/pain.008.001.02.xml ${PYSITELIB}/trytond/modules/account_payment_sepa/template/pain.008.001.04.xml +${PYSITELIB}/trytond/modules/account_payment_sepa/template/pain.008.003.02.xml ${PYSITELIB}/trytond/modules/account_payment_sepa/tests/__init__.py ${PYSITELIB}/trytond/modules/account_payment_sepa/tests/__init__.pyc ${PYSITELIB}/trytond/modules/account_payment_sepa/tests/__init__.pyo @@ -40,8 +43,10 @@ ${PYSITELIB}/trytond/modules/account_payment_sepa/tests/camt.054.001.03.xsd ${PYSITELIB}/trytond/modules/account_payment_sepa/tests/camt.054.001.04.xsd ${PYSITELIB}/trytond/modules/account_payment_sepa/tests/pain.001.001.03.xsd ${PYSITELIB}/trytond/modules/account_payment_sepa/tests/pain.001.001.05.xsd +${PYSITELIB}/trytond/modules/account_payment_sepa/tests/pain.001.003.03.xsd ${PYSITELIB}/trytond/modules/account_payment_sepa/tests/pain.008.001.02.xsd ${PYSITELIB}/trytond/modules/account_payment_sepa/tests/pain.008.001.04.xsd +${PYSITELIB}/trytond/modules/account_payment_sepa/tests/pain.008.003.02.xsd ${PYSITELIB}/trytond/modules/account_payment_sepa/tests/test_account_payment_sepa.py ${PYSITELIB}/trytond/modules/account_payment_sepa/tests/test_account_payment_sepa.pyc ${PYSITELIB}/trytond/modules/account_payment_sepa/tests/test_account_payment_sepa.pyo diff --git a/finance/py-trytond-account-payment-sepa/distinfo b/finance/py-trytond-account-payment-sepa/distinfo index b2aaeb936e8..158b22aa2b1 100644 --- a/finance/py-trytond-account-payment-sepa/distinfo +++ b/finance/py-trytond-account-payment-sepa/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.3 2015/03/15 00:17:35 rodent Exp $ +$NetBSD: distinfo,v 1.4 2015/08/24 14:49:42 richard Exp $ -SHA1 (tryton-3.4/trytond_account_payment_sepa-3.4.0.tar.gz) = 487360cced86a890b468fa14b53e7e664451f361 -RMD160 (tryton-3.4/trytond_account_payment_sepa-3.4.0.tar.gz) = 429891bd51b77018317cf4b8e0a187b11a1fd23a -Size (tryton-3.4/trytond_account_payment_sepa-3.4.0.tar.gz) = 93003 bytes +SHA1 (tryton-3.6/trytond_account_payment_sepa-3.6.0.tar.gz) = cf93751d4c826da2bfd21bdd3983b350762d40cc +RMD160 (tryton-3.6/trytond_account_payment_sepa-3.6.0.tar.gz) = 38ca72120e028e1587ab63327cb15e6438536038 +Size (tryton-3.6/trytond_account_payment_sepa-3.6.0.tar.gz) = 101121 bytes diff --git a/finance/py-trytond-account-payment/Makefile b/finance/py-trytond-account-payment/Makefile index 8cc4fb4061b..82556e70355 100644 --- a/finance/py-trytond-account-payment/Makefile +++ b/finance/py-trytond-account-payment/Makefile @@ -1,11 +1,11 @@ -# $NetBSD: Makefile,v 1.2 2015/03/15 00:17:35 rodent Exp $ +# $NetBSD: Makefile,v 1.3 2015/08/24 14:49:42 richard Exp $ TRYTON_MODULE_NAME= trytond_account_payment .include "../../devel/py-trytond/Makefile.common" CATEGORIES= finance python MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://www.tryton.org/ -COMMENT= account_payment module of the Tryton application platform +COMMENT= Account_payment module of the Tryton application platform LICENSE= gnu-gpl-v3 DEPENDS+= ${PYPKGPREFIX}-trytond-currency-[0-9]*:../../finance/py-trytond-currency diff --git a/finance/py-trytond-account-payment/distinfo b/finance/py-trytond-account-payment/distinfo index 7cb3ff4dae0..cbf86b44451 100644 --- a/finance/py-trytond-account-payment/distinfo +++ b/finance/py-trytond-account-payment/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.2 2015/03/15 00:17:35 rodent Exp $ +$NetBSD: distinfo,v 1.3 2015/08/24 14:49:42 richard Exp $ -SHA1 (tryton-3.4/trytond_account_payment-3.4.0.tar.gz) = e6d5cb82bb1ce969da58b9d26e7d749c1b9f6f96 -RMD160 (tryton-3.4/trytond_account_payment-3.4.0.tar.gz) = a3e357e6dbe3a18fd4cc7951d4ee087872c4ad3e -Size (tryton-3.4/trytond_account_payment-3.4.0.tar.gz) = 31665 bytes +SHA1 (tryton-3.6/trytond_account_payment-3.6.0.tar.gz) = 8ce8b0407acb0b941683c1e51c958f9df0736fb8 +RMD160 (tryton-3.6/trytond_account_payment-3.6.0.tar.gz) = a28377d21f185155df36dd6d09d49a642ca94a31 +Size (tryton-3.6/trytond_account_payment-3.6.0.tar.gz) = 31287 bytes diff --git a/finance/py-trytond-account-product/distinfo b/finance/py-trytond-account-product/distinfo index 7375dca9e56..7efebee376e 100644 --- a/finance/py-trytond-account-product/distinfo +++ b/finance/py-trytond-account-product/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.3 2015/03/15 00:17:35 rodent Exp $ +$NetBSD: distinfo,v 1.4 2015/08/24 14:49:42 richard Exp $ -SHA1 (tryton-3.4/trytond_account_product-3.4.0.tar.gz) = 3fece6f1ced5d4b3874e682e56823d3b5bbdc4d0 -RMD160 (tryton-3.4/trytond_account_product-3.4.0.tar.gz) = 1ad4a4db4871a4a6d8d80753c2456c3e0660f8b9 -Size (tryton-3.4/trytond_account_product-3.4.0.tar.gz) = 27273 bytes +SHA1 (tryton-3.6/trytond_account_product-3.6.0.tar.gz) = 822980ccab1b0acc241f531e65fabac4f323e9b6 +RMD160 (tryton-3.6/trytond_account_product-3.6.0.tar.gz) = ece2bcd4bdca492cfd8a57570bb3d9fcf768a11f +Size (tryton-3.6/trytond_account_product-3.6.0.tar.gz) = 27324 bytes diff --git a/finance/py-trytond-account-statement/PLIST b/finance/py-trytond-account-statement/PLIST index 1f02d69a738..bc3bc3270e7 100644 --- a/finance/py-trytond-account-statement/PLIST +++ b/finance/py-trytond-account-statement/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2015/03/15 00:17:35 rodent Exp $ +@comment $NetBSD: PLIST,v 1.3 2015/08/24 14:49:42 richard Exp $ ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt ${PYSITELIB}/${EGG_INFODIR}/entry_points.txt ${PYSITELIB}/${EGG_INFODIR}/not-zip-safe @@ -41,6 +41,8 @@ ${PYSITELIB}/trytond/modules/account_statement/tests/test_account_statement.py ${PYSITELIB}/trytond/modules/account_statement/tests/test_account_statement.pyc ${PYSITELIB}/trytond/modules/account_statement/tests/test_account_statement.pyo ${PYSITELIB}/trytond/modules/account_statement/tryton.cfg +${PYSITELIB}/trytond/modules/account_statement/view/line_group_form.xml +${PYSITELIB}/trytond/modules/account_statement/view/line_group_list.xml ${PYSITELIB}/trytond/modules/account_statement/view/statement_form.xml ${PYSITELIB}/trytond/modules/account_statement/view/statement_journal_form.xml ${PYSITELIB}/trytond/modules/account_statement/view/statement_journal_tree.xml diff --git a/finance/py-trytond-account-statement/distinfo b/finance/py-trytond-account-statement/distinfo index 8685161aaa9..008633d0557 100644 --- a/finance/py-trytond-account-statement/distinfo +++ b/finance/py-trytond-account-statement/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.2 2015/03/15 00:17:35 rodent Exp $ +$NetBSD: distinfo,v 1.3 2015/08/24 14:49:42 richard Exp $ -SHA1 (tryton-3.4/trytond_account_statement-3.4.0.tar.gz) = fb9c57eee45ce0f954e1c44281cf6590ed71d3fe -RMD160 (tryton-3.4/trytond_account_statement-3.4.0.tar.gz) = 2d80d14762840eaf06d969794efc683085083489 -Size (tryton-3.4/trytond_account_statement-3.4.0.tar.gz) = 49744 bytes +SHA1 (tryton-3.6/trytond_account_statement-3.6.0.tar.gz) = 5fb3654214f089120dadac37f259f46e23fd7dca +RMD160 (tryton-3.6/trytond_account_statement-3.6.0.tar.gz) = 759c4c9ed89602904f8a942fb320a578c501dd42 +Size (tryton-3.6/trytond_account_statement-3.6.0.tar.gz) = 52142 bytes diff --git a/finance/py-trytond-account-stock-continental/DESCR b/finance/py-trytond-account-stock-continental/DESCR new file mode 100644 index 00000000000..2b7fc855d7d --- /dev/null +++ b/finance/py-trytond-account-stock-continental/DESCR @@ -0,0 +1 @@ +The account stock continental module of the Tryton application platform. diff --git a/finance/py-trytond-account-stock-continental/Makefile b/finance/py-trytond-account-stock-continental/Makefile new file mode 100644 index 00000000000..0a194581a40 --- /dev/null +++ b/finance/py-trytond-account-stock-continental/Makefile @@ -0,0 +1,22 @@ +# $NetBSD: Makefile,v 1.1 2015/08/24 14:49:42 richard Exp $ +TRYTON_MODULE_NAME= trytond_account_stock_continental +.include "../../devel/py-trytond/Makefile.common" +CATEGORIES= finance python + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://www.tryton.org/ +COMMENT= Account stock continental module of the Tryton platform +LICENSE= gnu-gpl-v3 + +DEPENDS+= ${PYPKGPREFIX}-trytond-account-[0-9]*:../../finance/py-trytond-account +DEPENDS+= ${PYPKGPREFIX}-trytond-account-product-[0-9]*:../../finance/py-trytond-account-product +DEPENDS+= ${PYPKGPREFIX}-trytond-stock-[0-9]*:../../misc/py-trytond-stock +DEPENDS+= ${PYPKGPREFIX}-trytond-[0-9]*:../../devel/py-trytond + +USE_LANGUAGES= # none + +REPLACE_PYTHON+= tests/test_account_stock_continental.py tests/tools.py + +.include "../../lang/python/application.mk" +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/finance/py-trytond-account-stock-continental/PLIST b/finance/py-trytond-account-stock-continental/PLIST new file mode 100644 index 00000000000..af318da7006 --- /dev/null +++ b/finance/py-trytond-account-stock-continental/PLIST @@ -0,0 +1,51 @@ +@comment $NetBSD: PLIST,v 1.1 2015/08/24 14:49:42 richard Exp $ +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/entry_points.txt +${PYSITELIB}/${EGG_INFODIR}/not-zip-safe +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/trytond/modules/account_stock_continental/__init__.py +${PYSITELIB}/trytond/modules/account_stock_continental/__init__.pyc +${PYSITELIB}/trytond/modules/account_stock_continental/__init__.pyo +${PYSITELIB}/trytond/modules/account_stock_continental/account.py +${PYSITELIB}/trytond/modules/account_stock_continental/account.pyc +${PYSITELIB}/trytond/modules/account_stock_continental/account.pyo +${PYSITELIB}/trytond/modules/account_stock_continental/account.xml +${PYSITELIB}/trytond/modules/account_stock_continental/locale/bg_BG.po +${PYSITELIB}/trytond/modules/account_stock_continental/locale/ca_ES.po +${PYSITELIB}/trytond/modules/account_stock_continental/locale/cs_CZ.po +${PYSITELIB}/trytond/modules/account_stock_continental/locale/de_DE.po +${PYSITELIB}/trytond/modules/account_stock_continental/locale/es_AR.po +${PYSITELIB}/trytond/modules/account_stock_continental/locale/es_CO.po +${PYSITELIB}/trytond/modules/account_stock_continental/locale/es_EC.po +${PYSITELIB}/trytond/modules/account_stock_continental/locale/es_ES.po +${PYSITELIB}/trytond/modules/account_stock_continental/locale/fr_FR.po +${PYSITELIB}/trytond/modules/account_stock_continental/locale/nl_NL.po +${PYSITELIB}/trytond/modules/account_stock_continental/locale/ru_RU.po +${PYSITELIB}/trytond/modules/account_stock_continental/locale/sl_SI.po +${PYSITELIB}/trytond/modules/account_stock_continental/product.py +${PYSITELIB}/trytond/modules/account_stock_continental/product.pyc +${PYSITELIB}/trytond/modules/account_stock_continental/product.pyo +${PYSITELIB}/trytond/modules/account_stock_continental/product.xml +${PYSITELIB}/trytond/modules/account_stock_continental/stock.py +${PYSITELIB}/trytond/modules/account_stock_continental/stock.pyc +${PYSITELIB}/trytond/modules/account_stock_continental/stock.pyo +${PYSITELIB}/trytond/modules/account_stock_continental/tests/__init__.py +${PYSITELIB}/trytond/modules/account_stock_continental/tests/__init__.pyc +${PYSITELIB}/trytond/modules/account_stock_continental/tests/__init__.pyo +${PYSITELIB}/trytond/modules/account_stock_continental/tests/scenario_account_stock_continental.rst +${PYSITELIB}/trytond/modules/account_stock_continental/tests/test_account_stock_continental.py +${PYSITELIB}/trytond/modules/account_stock_continental/tests/test_account_stock_continental.pyc +${PYSITELIB}/trytond/modules/account_stock_continental/tests/test_account_stock_continental.pyo +${PYSITELIB}/trytond/modules/account_stock_continental/tests/tools.py +${PYSITELIB}/trytond/modules/account_stock_continental/tests/tools.pyc +${PYSITELIB}/trytond/modules/account_stock_continental/tests/tools.pyo +${PYSITELIB}/trytond/modules/account_stock_continental/tryton.cfg +${PYSITELIB}/trytond/modules/account_stock_continental/view/category_form.xml +${PYSITELIB}/trytond/modules/account_stock_continental/view/configuration_form.xml +${PYSITELIB}/trytond/modules/account_stock_continental/view/fiscalyear_form.xml +${PYSITELIB}/trytond/modules/account_stock_continental/view/template_form.xml +${PYSITELIB}/trytond/modules/account_stock_continental/view/update_cost_price_ask_form.xml +${PYSITELIB}/trytond/modules/account_stock_continental/view/update_cost_price_show_move_form.xml diff --git a/finance/py-trytond-account-stock-continental/distinfo b/finance/py-trytond-account-stock-continental/distinfo new file mode 100644 index 00000000000..0d39b200ab5 --- /dev/null +++ b/finance/py-trytond-account-stock-continental/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2015/08/24 14:49:42 richard Exp $ + +SHA1 (tryton-3.6/trytond_account_stock_continental-3.6.0.tar.gz) = 4509c2321d771ef46c5cd67181f24449f9342c33 +RMD160 (tryton-3.6/trytond_account_stock_continental-3.6.0.tar.gz) = 4984d250ce63763aca7c6db71a3f85636361342c +Size (tryton-3.6/trytond_account_stock_continental-3.6.0.tar.gz) = 32529 bytes diff --git a/finance/py-trytond-account/Makefile b/finance/py-trytond-account/Makefile index 8ef0a9a6905..dfd8a37ba81 100644 --- a/finance/py-trytond-account/Makefile +++ b/finance/py-trytond-account/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2015/03/15 00:17:34 rodent Exp $ +# $NetBSD: Makefile,v 1.8 2015/08/24 14:49:41 richard Exp $ TRYTON_MODULE_NAME= trytond_account .include "../../devel/py-trytond/Makefile.common" CATEGORIES= finance python @@ -18,7 +18,7 @@ USE_LANGUAGES= # none PYTHON_VERSIONED_DEPENDENCIES= dateutil -REPLACE_PYTHON+= tests/test_account.py +REPLACE_PYTHON+= tests/test_account.py tests/tools.py .include "../../lang/python/application.mk" .include "../../lang/python/egg.mk" diff --git a/finance/py-trytond-account/PLIST b/finance/py-trytond-account/PLIST index 911ced41423..2ab44bc1976 100644 --- a/finance/py-trytond-account/PLIST +++ b/finance/py-trytond-account/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2015/03/15 00:17:34 rodent Exp $ +@comment $NetBSD: PLIST,v 1.3 2015/08/24 14:49:41 richard Exp $ ${PYSITELIB}/trytond/modules/account/__init__.py ${PYSITELIB}/trytond/modules/account/__init__.pyc ${PYSITELIB}/trytond/modules/account/__init__.pyo @@ -34,6 +34,10 @@ ${PYSITELIB}/trytond/modules/account/locale/fr_FR.po ${PYSITELIB}/trytond/modules/account/locale/nl_NL.po ${PYSITELIB}/trytond/modules/account/locale/ru_RU.po ${PYSITELIB}/trytond/modules/account/locale/sl_SI.po +${PYSITELIB}/trytond/modules/account/move_template.py +${PYSITELIB}/trytond/modules/account/move_template.pyc +${PYSITELIB}/trytond/modules/account/move_template.pyo +${PYSITELIB}/trytond/modules/account/move_template.xml ${PYSITELIB}/trytond/modules/account/move.py ${PYSITELIB}/trytond/modules/account/move.pyc ${PYSITELIB}/trytond/modules/account/move.pyo @@ -55,9 +59,14 @@ ${PYSITELIB}/trytond/modules/account/tests/__init__.pyc ${PYSITELIB}/trytond/modules/account/tests/__init__.pyo ${PYSITELIB}/trytond/modules/account/tests/scenario_account_reconciliation.rst ${PYSITELIB}/trytond/modules/account/tests/scenario_move_cancel.rst +${PYSITELIB}/trytond/modules/account/tests/scenario_move_template.rst +${PYSITELIB}/trytond/modules/account/tests/scenario_reports.rst ${PYSITELIB}/trytond/modules/account/tests/test_account.py ${PYSITELIB}/trytond/modules/account/tests/test_account.pyc ${PYSITELIB}/trytond/modules/account/tests/test_account.pyo +${PYSITELIB}/trytond/modules/account/tests/tools.py +${PYSITELIB}/trytond/modules/account/tests/tools.pyc +${PYSITELIB}/trytond/modules/account/tests/tools.pyo ${PYSITELIB}/trytond/modules/account/third_party_balance.odt ${PYSITELIB}/trytond/modules/account/trial_balance.odt ${PYSITELIB}/trytond/modules/account/tryton.cfg @@ -94,17 +103,27 @@ ${PYSITELIB}/trytond/modules/account/view/journal_tree.xml ${PYSITELIB}/trytond/modules/account/view/journal_type_form.xml ${PYSITELIB}/trytond/modules/account/view/journal_type_tree.xml ${PYSITELIB}/trytond/modules/account/view/journal_view_column_form.xml -${PYSITELIB}/trytond/modules/account/view/journal_view_column_list.xml ${PYSITELIB}/trytond/modules/account/view/journal_view_column_list_sequence.xml +${PYSITELIB}/trytond/modules/account/view/journal_view_column_list.xml ${PYSITELIB}/trytond/modules/account/view/journal_view_form.xml ${PYSITELIB}/trytond/modules/account/view/journal_view_tree.xml +${PYSITELIB}/trytond/modules/account/view/move_cancel_default_form.xml ${PYSITELIB}/trytond/modules/account/view/move_form.xml -${PYSITELIB}/trytond/modules/account/view/move_line_form.xml ${PYSITELIB}/trytond/modules/account/view/move_line_form_move.xml -${PYSITELIB}/trytond/modules/account/view/move_line_tree.xml +${PYSITELIB}/trytond/modules/account/view/move_line_form.xml +${PYSITELIB}/trytond/modules/account/view/move_line_list_payable_receivable.xml +${PYSITELIB}/trytond/modules/account/view/move_line_template_form.xml +${PYSITELIB}/trytond/modules/account/view/move_line_template_list.xml ${PYSITELIB}/trytond/modules/account/view/move_line_tree_move.xml +${PYSITELIB}/trytond/modules/account/view/move_line_tree.xml ${PYSITELIB}/trytond/modules/account/view/move_reconciliation_form.xml ${PYSITELIB}/trytond/modules/account/view/move_reconciliation_tree.xml +${PYSITELIB}/trytond/modules/account/view/move_template_create_template_form.xml +${PYSITELIB}/trytond/modules/account/view/move_template_form.xml +${PYSITELIB}/trytond/modules/account/view/move_template_keyword_form.xml +${PYSITELIB}/trytond/modules/account/view/move_template_keyword_list_sequence.xml +${PYSITELIB}/trytond/modules/account/view/move_template_keyword_list.xml +${PYSITELIB}/trytond/modules/account/view/move_template_list.xml ${PYSITELIB}/trytond/modules/account/view/move_tree.xml ${PYSITELIB}/trytond/modules/account/view/open_aged_balance_start_form.xml ${PYSITELIB}/trytond/modules/account/view/open_balance_sheet_start_form.xml @@ -132,14 +151,16 @@ ${PYSITELIB}/trytond/modules/account/view/tax_form.xml ${PYSITELIB}/trytond/modules/account/view/tax_group_form.xml ${PYSITELIB}/trytond/modules/account/view/tax_group_tree.xml ${PYSITELIB}/trytond/modules/account/view/tax_line_form.xml +${PYSITELIB}/trytond/modules/account/view/tax_line_template_form.xml +${PYSITELIB}/trytond/modules/account/view/tax_line_template_list.xml ${PYSITELIB}/trytond/modules/account/view/tax_line_tree.xml ${PYSITELIB}/trytond/modules/account/view/tax_list.xml ${PYSITELIB}/trytond/modules/account/view/tax_rule_form.xml ${PYSITELIB}/trytond/modules/account/view/tax_rule_line_form.xml ${PYSITELIB}/trytond/modules/account/view/tax_rule_line_template_form.xml ${PYSITELIB}/trytond/modules/account/view/tax_rule_line_template_tree.xml -${PYSITELIB}/trytond/modules/account/view/tax_rule_line_tree.xml ${PYSITELIB}/trytond/modules/account/view/tax_rule_line_tree_sequence.xml +${PYSITELIB}/trytond/modules/account/view/tax_rule_line_tree.xml ${PYSITELIB}/trytond/modules/account/view/tax_rule_template_form.xml ${PYSITELIB}/trytond/modules/account/view/tax_rule_template_tree.xml ${PYSITELIB}/trytond/modules/account/view/tax_rule_tree.xml diff --git a/finance/py-trytond-account/distinfo b/finance/py-trytond-account/distinfo index b5951a267ea..25c14a2453b 100644 --- a/finance/py-trytond-account/distinfo +++ b/finance/py-trytond-account/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.4 2015/03/15 00:17:34 rodent Exp $ +$NetBSD: distinfo,v 1.5 2015/08/24 14:49:41 richard Exp $ -SHA1 (tryton-3.4/trytond_account-3.4.1.tar.gz) = 019e4e194117d8ccc25e503726a3db64b37e2aad -RMD160 (tryton-3.4/trytond_account-3.4.1.tar.gz) = 8519af3741156ab8b5f4df32c5f460be128e4888 -Size (tryton-3.4/trytond_account-3.4.1.tar.gz) = 304615 bytes +SHA1 (tryton-3.6/trytond_account-3.6.1.tar.gz) = 9f8401cbe6cc7f49043effba9d676c3e6d1f0a24 +RMD160 (tryton-3.6/trytond_account-3.6.1.tar.gz) = 1b5b085458b7e767576f48f2a22ebaca80059610 +Size (tryton-3.6/trytond_account-3.6.1.tar.gz) = 386346 bytes diff --git a/finance/py-trytond-analytic-account/PLIST b/finance/py-trytond-analytic-account/PLIST index f13492d79e1..155de7a453d 100644 --- a/finance/py-trytond-analytic-account/PLIST +++ b/finance/py-trytond-analytic-account/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2015/03/15 00:17:35 rodent Exp $ +@comment $NetBSD: PLIST,v 1.3 2015/08/24 14:49:42 richard Exp $ ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt ${PYSITELIB}/${EGG_INFODIR}/entry_points.txt ${PYSITELIB}/${EGG_INFODIR}/not-zip-safe @@ -33,6 +33,7 @@ ${PYSITELIB}/trytond/modules/analytic_account/locale/sl_SI.po ${PYSITELIB}/trytond/modules/analytic_account/tests/__init__.py ${PYSITELIB}/trytond/modules/analytic_account/tests/__init__.pyc ${PYSITELIB}/trytond/modules/analytic_account/tests/__init__.pyo +${PYSITELIB}/trytond/modules/analytic_account/tests/scenario_analytic_account.rst ${PYSITELIB}/trytond/modules/analytic_account/tests/test_analytic_account.py ${PYSITELIB}/trytond/modules/analytic_account/tests/test_analytic_account.pyc ${PYSITELIB}/trytond/modules/analytic_account/tests/test_analytic_account.pyo @@ -41,6 +42,8 @@ ${PYSITELIB}/trytond/modules/analytic_account/view/account_form.xml ${PYSITELIB}/trytond/modules/analytic_account/view/account_list.xml ${PYSITELIB}/trytond/modules/analytic_account/view/account_tree.xml ${PYSITELIB}/trytond/modules/analytic_account/view/account_tree2.xml +${PYSITELIB}/trytond/modules/analytic_account/view/analytic_account_entry_form.xml +${PYSITELIB}/trytond/modules/analytic_account/view/analytic_account_entry_tree.xml ${PYSITELIB}/trytond/modules/analytic_account/view/line_form.xml ${PYSITELIB}/trytond/modules/analytic_account/view/line_tree.xml ${PYSITELIB}/trytond/modules/analytic_account/view/move_line_form.xml diff --git a/finance/py-trytond-analytic-account/distinfo b/finance/py-trytond-analytic-account/distinfo index 87bb044c89a..31b69cf69a4 100644 --- a/finance/py-trytond-analytic-account/distinfo +++ b/finance/py-trytond-analytic-account/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.2 2015/03/15 00:17:35 rodent Exp $ +$NetBSD: distinfo,v 1.3 2015/08/24 14:49:42 richard Exp $ -SHA1 (tryton-3.4/trytond_analytic_account-3.4.0.tar.gz) = c7ac50d1e9e60530cd39e2943aca4f28446ff608 -RMD160 (tryton-3.4/trytond_analytic_account-3.4.0.tar.gz) = 8eb15242c91a6f60e5013af265c57432ae540a5e -Size (tryton-3.4/trytond_analytic_account-3.4.0.tar.gz) = 34630 bytes +SHA1 (tryton-3.6/trytond_analytic_account-3.6.0.tar.gz) = ffda926f708bda4e75c64cf65d969b891140bb5d +RMD160 (tryton-3.6/trytond_analytic_account-3.6.0.tar.gz) = 560db6bde47ec3f1997a452c9b2e37ca84357430 +Size (tryton-3.6/trytond_analytic_account-3.6.0.tar.gz) = 35727 bytes diff --git a/finance/py-trytond-analytic-invoice/DESCR b/finance/py-trytond-analytic-invoice/DESCR new file mode 100644 index 00000000000..af960dc37a1 --- /dev/null +++ b/finance/py-trytond-analytic-invoice/DESCR @@ -0,0 +1 @@ +The analytic_invoice module of the Tryton application platform. diff --git a/finance/py-trytond-analytic-invoice/Makefile b/finance/py-trytond-analytic-invoice/Makefile new file mode 100644 index 00000000000..c3b83a5a590 --- /dev/null +++ b/finance/py-trytond-analytic-invoice/Makefile @@ -0,0 +1,21 @@ +# $NetBSD: Makefile,v 1.1 2015/08/24 14:49:42 richard Exp $ +TRYTON_MODULE_NAME= trytond_analytic_invoice +.include "../../devel/py-trytond/Makefile.common" +CATEGORIES= finance python + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://www.tryton.org/ +COMMENT= The analytic invoice module of the Tryton application platform +LICENSE= gnu-gpl-v3 + +DEPENDS+= ${PYPKGPREFIX}-trytond-account-invoice-[0-9]*:../../finance/py-trytond-account-invoice +DEPENDS+= ${PYPKGPREFIX}-trytond-analytic-account-[0-9]*:../../finance/py-trytond-analytic-account +DEPENDS+= ${PYPKGPREFIX}-trytond-[0-9]*:../../devel/py-trytond + +USE_LANGUAGES= # none + +REPLACE_PYTHON+= tests/test_analytic_invoice.py + +.include "../../lang/python/application.mk" +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/finance/py-trytond-analytic-invoice/PLIST b/finance/py-trytond-analytic-invoice/PLIST new file mode 100644 index 00000000000..6985d111998 --- /dev/null +++ b/finance/py-trytond-analytic-invoice/PLIST @@ -0,0 +1,36 @@ +@comment $NetBSD: PLIST,v 1.1 2015/08/24 14:49:42 richard Exp $ +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/entry_points.txt +${PYSITELIB}/${EGG_INFODIR}/not-zip-safe +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/trytond/modules/analytic_invoice/__init__.py +${PYSITELIB}/trytond/modules/analytic_invoice/__init__.pyc +${PYSITELIB}/trytond/modules/analytic_invoice/__init__.pyo +${PYSITELIB}/trytond/modules/analytic_invoice/invoice.py +${PYSITELIB}/trytond/modules/analytic_invoice/invoice.pyc +${PYSITELIB}/trytond/modules/analytic_invoice/invoice.pyo +${PYSITELIB}/trytond/modules/analytic_invoice/invoice.xml +${PYSITELIB}/trytond/modules/analytic_invoice/locale/bg_BG.po +${PYSITELIB}/trytond/modules/analytic_invoice/locale/ca_ES.po +${PYSITELIB}/trytond/modules/analytic_invoice/locale/cs_CZ.po +${PYSITELIB}/trytond/modules/analytic_invoice/locale/de_DE.po +${PYSITELIB}/trytond/modules/analytic_invoice/locale/es_AR.po +${PYSITELIB}/trytond/modules/analytic_invoice/locale/es_CO.po +${PYSITELIB}/trytond/modules/analytic_invoice/locale/es_EC.po +${PYSITELIB}/trytond/modules/analytic_invoice/locale/es_ES.po +${PYSITELIB}/trytond/modules/analytic_invoice/locale/fr_FR.po +${PYSITELIB}/trytond/modules/analytic_invoice/locale/nl_NL.po +${PYSITELIB}/trytond/modules/analytic_invoice/locale/ru_RU.po +${PYSITELIB}/trytond/modules/analytic_invoice/locale/sl_SI.po +${PYSITELIB}/trytond/modules/analytic_invoice/tests/__init__.py +${PYSITELIB}/trytond/modules/analytic_invoice/tests/__init__.pyc +${PYSITELIB}/trytond/modules/analytic_invoice/tests/__init__.pyo +${PYSITELIB}/trytond/modules/analytic_invoice/tests/scenario_analytic_invoice.rst +${PYSITELIB}/trytond/modules/analytic_invoice/tests/test_analytic_invoice.py +${PYSITELIB}/trytond/modules/analytic_invoice/tests/test_analytic_invoice.pyc +${PYSITELIB}/trytond/modules/analytic_invoice/tests/test_analytic_invoice.pyo +${PYSITELIB}/trytond/modules/analytic_invoice/tryton.cfg +${PYSITELIB}/trytond/modules/analytic_invoice/view/invoice_line_form.xml diff --git a/finance/py-trytond-analytic-invoice/distinfo b/finance/py-trytond-analytic-invoice/distinfo new file mode 100644 index 00000000000..2d985703537 --- /dev/null +++ b/finance/py-trytond-analytic-invoice/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2015/08/24 14:49:42 richard Exp $ + +SHA1 (tryton-3.6/trytond_analytic_invoice-3.6.0.tar.gz) = 68cb583b06b69db6e33eaa49743179ff9bb9f89c +RMD160 (tryton-3.6/trytond_analytic_invoice-3.6.0.tar.gz) = 94b4b016653686ed0c4dfcc7f5d2b713195f1298 +Size (tryton-3.6/trytond_analytic_invoice-3.6.0.tar.gz) = 20374 bytes diff --git a/finance/py-trytond-analytic-purchase/DESCR b/finance/py-trytond-analytic-purchase/DESCR new file mode 100644 index 00000000000..cc92fc05f91 --- /dev/null +++ b/finance/py-trytond-analytic-purchase/DESCR @@ -0,0 +1 @@ +The analytic_purchse module of the Tryton application platform. diff --git a/finance/py-trytond-analytic-purchase/Makefile b/finance/py-trytond-analytic-purchase/Makefile new file mode 100644 index 00000000000..0e707707b69 --- /dev/null +++ b/finance/py-trytond-analytic-purchase/Makefile @@ -0,0 +1,22 @@ +# $NetBSD: Makefile,v 1.1 2015/08/24 14:49:42 richard Exp $ +TRYTON_MODULE_NAME= trytond_analytic_purchase +.include "../../devel/py-trytond/Makefile.common" +CATEGORIES= finance python + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://www.tryton.org/ +COMMENT= The analytic purchase module of the Tryton application platform +LICENSE= gnu-gpl-v3 + +DEPENDS+= ${PYPKGPREFIX}-trytond-analytic-account-[0-9]*:../../finance/py-trytond-analytic-account +DEPENDS+= ${PYPKGPREFIX}-trytond-analytic-invoice-[0-9]*:../../finance/py-trytond-analytic-invoice +DEPENDS+= ${PYPKGPREFIX}-trytond-purchase-[0-9]*:../../finance/py-trytond-purchase +DEPENDS+= ${PYPKGPREFIX}-trytond-[0-9]*:../../devel/py-trytond + +USE_LANGUAGES= # none + +REPLACE_PYTHON+= tests/test_analytic_purchase.py + +.include "../../lang/python/application.mk" +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/finance/py-trytond-analytic-purchase/PLIST b/finance/py-trytond-analytic-purchase/PLIST new file mode 100644 index 00000000000..0af96da869f --- /dev/null +++ b/finance/py-trytond-analytic-purchase/PLIST @@ -0,0 +1,36 @@ +@comment $NetBSD: PLIST,v 1.1 2015/08/24 14:49:42 richard Exp $ +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/entry_points.txt +${PYSITELIB}/${EGG_INFODIR}/not-zip-safe +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/trytond/modules/analytic_purchase/__init__.py +${PYSITELIB}/trytond/modules/analytic_purchase/__init__.pyc +${PYSITELIB}/trytond/modules/analytic_purchase/__init__.pyo +${PYSITELIB}/trytond/modules/analytic_purchase/locale/bg_BG.po +${PYSITELIB}/trytond/modules/analytic_purchase/locale/ca_ES.po +${PYSITELIB}/trytond/modules/analytic_purchase/locale/cs_CZ.po +${PYSITELIB}/trytond/modules/analytic_purchase/locale/de_DE.po +${PYSITELIB}/trytond/modules/analytic_purchase/locale/es_AR.po +${PYSITELIB}/trytond/modules/analytic_purchase/locale/es_CO.po +${PYSITELIB}/trytond/modules/analytic_purchase/locale/es_EC.po +${PYSITELIB}/trytond/modules/analytic_purchase/locale/es_ES.po +${PYSITELIB}/trytond/modules/analytic_purchase/locale/fr_FR.po +${PYSITELIB}/trytond/modules/analytic_purchase/locale/nl_NL.po +${PYSITELIB}/trytond/modules/analytic_purchase/locale/ru_RU.po +${PYSITELIB}/trytond/modules/analytic_purchase/locale/sl_SI.po +${PYSITELIB}/trytond/modules/analytic_purchase/purchase.py +${PYSITELIB}/trytond/modules/analytic_purchase/purchase.pyc +${PYSITELIB}/trytond/modules/analytic_purchase/purchase.pyo +${PYSITELIB}/trytond/modules/analytic_purchase/purchase.xml +${PYSITELIB}/trytond/modules/analytic_purchase/tests/__init__.py +${PYSITELIB}/trytond/modules/analytic_purchase/tests/__init__.pyc +${PYSITELIB}/trytond/modules/analytic_purchase/tests/__init__.pyo +${PYSITELIB}/trytond/modules/analytic_purchase/tests/scenario_analytic_purchase.rst +${PYSITELIB}/trytond/modules/analytic_purchase/tests/test_analytic_purchase.py +${PYSITELIB}/trytond/modules/analytic_purchase/tests/test_analytic_purchase.pyc +${PYSITELIB}/trytond/modules/analytic_purchase/tests/test_analytic_purchase.pyo +${PYSITELIB}/trytond/modules/analytic_purchase/tryton.cfg +${PYSITELIB}/trytond/modules/analytic_purchase/view/purchase_line_form.xml diff --git a/finance/py-trytond-analytic-purchase/distinfo b/finance/py-trytond-analytic-purchase/distinfo new file mode 100644 index 00000000000..b1e9da94e3b --- /dev/null +++ b/finance/py-trytond-analytic-purchase/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2015/08/24 14:49:42 richard Exp $ + +SHA1 (tryton-3.6/trytond_analytic_purchase-3.6.0.tar.gz) = 266105c1c7de80302a4cd758dadd9f882b167dab +RMD160 (tryton-3.6/trytond_analytic_purchase-3.6.0.tar.gz) = d61218afa186897f35a1e51e284cc53a741ad7d2 +Size (tryton-3.6/trytond_analytic_purchase-3.6.0.tar.gz) = 22993 bytes diff --git a/finance/py-trytond-analytic-sale/DESCR b/finance/py-trytond-analytic-sale/DESCR new file mode 100644 index 00000000000..ce9589fe9e6 --- /dev/null +++ b/finance/py-trytond-analytic-sale/DESCR @@ -0,0 +1 @@ +The analytic_sale module of the Tryton application platform. diff --git a/finance/py-trytond-analytic-sale/Makefile b/finance/py-trytond-analytic-sale/Makefile new file mode 100644 index 00000000000..932d5b342dc --- /dev/null +++ b/finance/py-trytond-analytic-sale/Makefile @@ -0,0 +1,22 @@ +# $NetBSD: Makefile,v 1.1 2015/08/24 14:49:42 richard Exp $ +TRYTON_MODULE_NAME= trytond_analytic_sale +.include "../../devel/py-trytond/Makefile.common" +CATEGORIES= finance python + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://www.tryton.org/ +COMMENT= The analytic sale module of the Tryton application platform +LICENSE= gnu-gpl-v3 + +DEPENDS+= ${PYPKGPREFIX}-trytond-account-invoice-[0-9]*:../../finance/py-trytond-account-invoice +DEPENDS+= ${PYPKGPREFIX}-trytond-analytic-account-[0-9]*:../../finance/py-trytond-analytic-account +DEPENDS+= ${PYPKGPREFIX}-trytond-sale-[0-9]*:../../finance/py-trytond-sale +DEPENDS+= ${PYPKGPREFIX}-trytond-[0-9]*:../../devel/py-trytond + +USE_LANGUAGES= # none + +REPLACE_PYTHON+= tests/test_analytic_sale.py + +.include "../../lang/python/application.mk" +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/finance/py-trytond-analytic-sale/PLIST b/finance/py-trytond-analytic-sale/PLIST new file mode 100644 index 00000000000..3e8c787485b --- /dev/null +++ b/finance/py-trytond-analytic-sale/PLIST @@ -0,0 +1,36 @@ +@comment $NetBSD: PLIST,v 1.1 2015/08/24 14:49:42 richard Exp $ +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/entry_points.txt +${PYSITELIB}/${EGG_INFODIR}/not-zip-safe +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/trytond/modules/analytic_sale/__init__.py +${PYSITELIB}/trytond/modules/analytic_sale/__init__.pyc +${PYSITELIB}/trytond/modules/analytic_sale/__init__.pyo +${PYSITELIB}/trytond/modules/analytic_sale/locale/bg_BG.po +${PYSITELIB}/trytond/modules/analytic_sale/locale/ca_ES.po +${PYSITELIB}/trytond/modules/analytic_sale/locale/cs_CZ.po +${PYSITELIB}/trytond/modules/analytic_sale/locale/de_DE.po +${PYSITELIB}/trytond/modules/analytic_sale/locale/es_AR.po +${PYSITELIB}/trytond/modules/analytic_sale/locale/es_CO.po +${PYSITELIB}/trytond/modules/analytic_sale/locale/es_EC.po +${PYSITELIB}/trytond/modules/analytic_sale/locale/es_ES.po +${PYSITELIB}/trytond/modules/analytic_sale/locale/fr_FR.po +${PYSITELIB}/trytond/modules/analytic_sale/locale/nl_NL.po +${PYSITELIB}/trytond/modules/analytic_sale/locale/ru_RU.po +${PYSITELIB}/trytond/modules/analytic_sale/locale/sl_SI.po +${PYSITELIB}/trytond/modules/analytic_sale/sale.py +${PYSITELIB}/trytond/modules/analytic_sale/sale.pyc +${PYSITELIB}/trytond/modules/analytic_sale/sale.pyo +${PYSITELIB}/trytond/modules/analytic_sale/sale.xml +${PYSITELIB}/trytond/modules/analytic_sale/tests/__init__.py +${PYSITELIB}/trytond/modules/analytic_sale/tests/__init__.pyc +${PYSITELIB}/trytond/modules/analytic_sale/tests/__init__.pyo +${PYSITELIB}/trytond/modules/analytic_sale/tests/scenario_analytic_sale.rst +${PYSITELIB}/trytond/modules/analytic_sale/tests/test_analytic_sale.py +${PYSITELIB}/trytond/modules/analytic_sale/tests/test_analytic_sale.pyc +${PYSITELIB}/trytond/modules/analytic_sale/tests/test_analytic_sale.pyo +${PYSITELIB}/trytond/modules/analytic_sale/tryton.cfg +${PYSITELIB}/trytond/modules/analytic_sale/view/sale_line_form.xml diff --git a/finance/py-trytond-analytic-sale/distinfo b/finance/py-trytond-analytic-sale/distinfo new file mode 100644 index 00000000000..6dfea41441c --- /dev/null +++ b/finance/py-trytond-analytic-sale/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2015/08/24 14:49:42 richard Exp $ + +SHA1 (tryton-3.6/trytond_analytic_sale-3.6.0.tar.gz) = 995382d31d556141606ee2ed7985f451ad9ca6d4 +RMD160 (tryton-3.6/trytond_analytic_sale-3.6.0.tar.gz) = df0b6d14395470c9a2b4240c90eb0c4a914bc497 +Size (tryton-3.6/trytond_analytic_sale-3.6.0.tar.gz) = 20350 bytes diff --git a/finance/py-trytond-bank/distinfo b/finance/py-trytond-bank/distinfo index d05517f650b..468c1489887 100644 --- a/finance/py-trytond-bank/distinfo +++ b/finance/py-trytond-bank/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.2 2015/03/15 00:17:35 rodent Exp $ +$NetBSD: distinfo,v 1.3 2015/08/24 14:49:43 richard Exp $ -SHA1 (tryton-3.4/trytond_bank-3.4.0.tar.gz) = 71aa3541bd5f3014803ab8f0fdcc58b850d0c402 -RMD160 (tryton-3.4/trytond_bank-3.4.0.tar.gz) = 20a98d0b412f0b44f5ad918bcfbec91f77afd6ef -Size (tryton-3.4/trytond_bank-3.4.0.tar.gz) = 23858 bytes +SHA1 (tryton-3.6/trytond_bank-3.6.0.tar.gz) = 4fec94e5beff8ea1b42fd9b5bbff4fd602b9c9b7 +RMD160 (tryton-3.6/trytond_bank-3.6.0.tar.gz) = 556911aa854be3cedb766440db31b41e51fa01f3 +Size (tryton-3.6/trytond_bank-3.6.0.tar.gz) = 24133 bytes diff --git a/finance/py-trytond-currency/Makefile b/finance/py-trytond-currency/Makefile index bb5de7303b6..26aaea075af 100644 --- a/finance/py-trytond-currency/Makefile +++ b/finance/py-trytond-currency/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2015/03/15 00:17:35 rodent Exp $ +# $NetBSD: Makefile,v 1.7 2015/08/24 14:49:43 richard Exp $ TRYTON_MODULE_NAME= trytond_currency .include "../../devel/py-trytond/Makefile.common" CATEGORIES= finance python @@ -12,7 +12,7 @@ DEPENDS+= ${PYPKGPREFIX}-trytond-[0-9]*:../../devel/py-trytond USE_LANGUAGES= # none -REPLACE_PYTHON+= tests/test_currency.py +REPLACE_PYTHON+= tests/test_currency.py tests/tools.py .include "../../lang/python/application.mk" .include "../../lang/python/egg.mk" diff --git a/finance/py-trytond-currency/PLIST b/finance/py-trytond-currency/PLIST index ae721ccfd2d..ec372acea5a 100644 --- a/finance/py-trytond-currency/PLIST +++ b/finance/py-trytond-currency/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2015/03/15 00:17:35 rodent Exp $ +@comment $NetBSD: PLIST,v 1.3 2015/08/24 14:49:43 richard Exp $ ${PYSITELIB}/trytond/modules/currency/__init__.py ${PYSITELIB}/trytond/modules/currency/__init__.pyc ${PYSITELIB}/trytond/modules/currency/__init__.pyo @@ -12,8 +12,8 @@ ${PYSITELIB}/trytond/modules/currency/locale/ca_ES.po ${PYSITELIB}/trytond/modules/currency/locale/cs_CZ.po ${PYSITELIB}/trytond/modules/currency/locale/de_DE.po ${PYSITELIB}/trytond/modules/currency/locale/es_AR.po -${PYSITELIB}/trytond/modules/currency/locale/es_EC.po ${PYSITELIB}/trytond/modules/currency/locale/es_CO.po +${PYSITELIB}/trytond/modules/currency/locale/es_EC.po ${PYSITELIB}/trytond/modules/currency/locale/es_ES.po ${PYSITELIB}/trytond/modules/currency/locale/fr_FR.po ${PYSITELIB}/trytond/modules/currency/locale/lt_LT.po @@ -26,6 +26,9 @@ ${PYSITELIB}/trytond/modules/currency/tests/__init__.pyo ${PYSITELIB}/trytond/modules/currency/tests/test_currency.py ${PYSITELIB}/trytond/modules/currency/tests/test_currency.pyc ${PYSITELIB}/trytond/modules/currency/tests/test_currency.pyo +${PYSITELIB}/trytond/modules/currency/tests/tools.py +${PYSITELIB}/trytond/modules/currency/tests/tools.pyc +${PYSITELIB}/trytond/modules/currency/tests/tools.pyo ${PYSITELIB}/trytond/modules/currency/tryton.cfg ${PYSITELIB}/trytond/modules/currency/view/currency_form.xml ${PYSITELIB}/trytond/modules/currency/view/currency_rate_form.xml diff --git a/finance/py-trytond-currency/distinfo b/finance/py-trytond-currency/distinfo index 8ce060c9263..5beda4c62da 100644 --- a/finance/py-trytond-currency/distinfo +++ b/finance/py-trytond-currency/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.3 2015/03/15 00:17:35 rodent Exp $ +$NetBSD: distinfo,v 1.4 2015/08/24 14:49:43 richard Exp $ -SHA1 (tryton-3.4/trytond_currency-3.4.1.tar.gz) = 120919cf2129f5d852ff85a0a8c67ad2edf8ed78 -RMD160 (tryton-3.4/trytond_currency-3.4.1.tar.gz) = 2d8f7a8a994846e1cbdf06de974e6613b5c21144 -Size (tryton-3.4/trytond_currency-3.4.1.tar.gz) = 58587 bytes +SHA1 (tryton-3.6/trytond_currency-3.6.0.tar.gz) = a58030b6109cd93f1988a6dfb92bc8078b83ddce +RMD160 (tryton-3.6/trytond_currency-3.6.0.tar.gz) = 9df49281f64c59a5d9e4b7c25d19d7f992624b55 +Size (tryton-3.6/trytond_currency-3.6.0.tar.gz) = 59250 bytes diff --git a/finance/py-trytond-product-cost-fifo/DESCR b/finance/py-trytond-product-cost-fifo/DESCR new file mode 100644 index 00000000000..2350534c997 --- /dev/null +++ b/finance/py-trytond-product-cost-fifo/DESCR @@ -0,0 +1 @@ +The product cost FIFO module of the Tryton application platform. diff --git a/finance/py-trytond-product-cost-fifo/Makefile b/finance/py-trytond-product-cost-fifo/Makefile new file mode 100644 index 00000000000..a2e6155577b --- /dev/null +++ b/finance/py-trytond-product-cost-fifo/Makefile @@ -0,0 +1,21 @@ +# $NetBSD: Makefile,v 1.1 2015/08/24 14:49:43 richard Exp $ +TRYTON_MODULE_NAME= trytond_product_cost_fifo +.include "../../devel/py-trytond/Makefile.common" +CATEGORIES= finance python + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://www.tryton.org/ +COMMENT= The product cost FIFO module of the Tryton application platform +LICENSE= gnu-gpl-v3 + +DEPENDS+= ${PYPKGPREFIX}-trytond-product-[0-9]*:../../misc/py-trytond-product +DEPENDS+= ${PYPKGPREFIX}-trytond-stock-[0-9]*:../../misc/py-trytond-stock +DEPENDS+= ${PYPKGPREFIX}-trytond-[0-9]*:../../devel/py-trytond + +USE_LANGUAGES= # none + +REPLACE_PYTHON+= tests/test_product_cost_fifo.py + +.include "../../lang/python/application.mk" +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/finance/py-trytond-product-cost-fifo/PLIST b/finance/py-trytond-product-cost-fifo/PLIST new file mode 100644 index 00000000000..116da95a46c --- /dev/null +++ b/finance/py-trytond-product-cost-fifo/PLIST @@ -0,0 +1,30 @@ +@comment $NetBSD: PLIST,v 1.1 2015/08/24 14:49:43 richard Exp $ +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/entry_points.txt +${PYSITELIB}/${EGG_INFODIR}/not-zip-safe +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/trytond/modules/product_cost_fifo/__init__.py +${PYSITELIB}/trytond/modules/product_cost_fifo/__init__.pyc +${PYSITELIB}/trytond/modules/product_cost_fifo/__init__.pyo +${PYSITELIB}/trytond/modules/product_cost_fifo/locale/bg_BG.po +${PYSITELIB}/trytond/modules/product_cost_fifo/locale/ca_ES.po +${PYSITELIB}/trytond/modules/product_cost_fifo/locale/cs_CZ.po +${PYSITELIB}/trytond/modules/product_cost_fifo/locale/de_DE.po +${PYSITELIB}/trytond/modules/product_cost_fifo/locale/es_AR.po +${PYSITELIB}/trytond/modules/product_cost_fifo/locale/es_CO.po +${PYSITELIB}/trytond/modules/product_cost_fifo/locale/es_EC.po +${PYSITELIB}/trytond/modules/product_cost_fifo/locale/es_ES.po +${PYSITELIB}/trytond/modules/product_cost_fifo/locale/fr_FR.po +${PYSITELIB}/trytond/modules/product_cost_fifo/locale/nl_NL.po +${PYSITELIB}/trytond/modules/product_cost_fifo/locale/ru_RU.po +${PYSITELIB}/trytond/modules/product_cost_fifo/locale/sl_SI.po +${PYSITELIB}/trytond/modules/product_cost_fifo/move.py +${PYSITELIB}/trytond/modules/product_cost_fifo/move.pyc +${PYSITELIB}/trytond/modules/product_cost_fifo/move.pyo +${PYSITELIB}/trytond/modules/product_cost_fifo/product.py +${PYSITELIB}/trytond/modules/product_cost_fifo/product.pyc +${PYSITELIB}/trytond/modules/product_cost_fifo/product.pyo +${PYSITELIB}/trytond/modules/product_cost_fifo/tryton.cfg diff --git a/finance/py-trytond-product-cost-fifo/distinfo b/finance/py-trytond-product-cost-fifo/distinfo new file mode 100644 index 00000000000..39d7c72b962 --- /dev/null +++ b/finance/py-trytond-product-cost-fifo/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2015/08/24 14:49:43 richard Exp $ + +SHA1 (tryton-3.6/trytond_product_cost_fifo-3.6.0.tar.gz) = e297fa71ea39045176eba50c4d4d6ea9e85b7a0f +RMD160 (tryton-3.6/trytond_product_cost_fifo-3.6.0.tar.gz) = b2e676bf904defdec5989dd1e065813bec6a07f3 +Size (tryton-3.6/trytond_product_cost_fifo-3.6.0.tar.gz) = 20098 bytes diff --git a/finance/py-trytond-product-cost-history/DESCR b/finance/py-trytond-product-cost-history/DESCR new file mode 100644 index 00000000000..bae347ef569 --- /dev/null +++ b/finance/py-trytond-product-cost-history/DESCR @@ -0,0 +1 @@ +The product cost history module of the Tryton application platform. diff --git a/finance/py-trytond-product-cost-history/Makefile b/finance/py-trytond-product-cost-history/Makefile new file mode 100644 index 00000000000..08748e8d822 --- /dev/null +++ b/finance/py-trytond-product-cost-history/Makefile @@ -0,0 +1,21 @@ +# $NetBSD: Makefile,v 1.1 2015/08/24 14:49:43 richard Exp $ +TRYTON_MODULE_NAME= trytond_product_cost_history +.include "../../devel/py-trytond/Makefile.common" +CATEGORIES= finance python + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://www.tryton.org/ +COMMENT= The product cost history module of the Tryton application platform +LICENSE= gnu-gpl-v3 + +DEPENDS+= ${PYPKGPREFIX}-python-sql-[0-9]*:../../databases/py-python-sql +DEPENDS+= ${PYPKGPREFIX}-trytond-product-[0-9]*:../../misc/py-trytond-product +DEPENDS+= ${PYPKGPREFIX}-trytond-[0-9]*:../../devel/py-trytond + +USE_LANGUAGES= # none + +REPLACE_PYTHON+= tests/test_product_cost_history.py + +.include "../../lang/python/application.mk" +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/finance/py-trytond-product-cost-history/PLIST b/finance/py-trytond-product-cost-history/PLIST new file mode 100644 index 00000000000..af1e5c4af62 --- /dev/null +++ b/finance/py-trytond-product-cost-history/PLIST @@ -0,0 +1,39 @@ +@comment $NetBSD: PLIST,v 1.1 2015/08/24 14:49:43 richard Exp $ +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/entry_points.txt +${PYSITELIB}/${EGG_INFODIR}/not-zip-safe +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/trytond/modules/product_cost_history/__init__.py +${PYSITELIB}/trytond/modules/product_cost_history/__init__.pyc +${PYSITELIB}/trytond/modules/product_cost_history/__init__.pyo +${PYSITELIB}/trytond/modules/product_cost_history/ir.py +${PYSITELIB}/trytond/modules/product_cost_history/ir.pyc +${PYSITELIB}/trytond/modules/product_cost_history/ir.pyo +${PYSITELIB}/trytond/modules/product_cost_history/locale/bg_BG.po +${PYSITELIB}/trytond/modules/product_cost_history/locale/ca_ES.po +${PYSITELIB}/trytond/modules/product_cost_history/locale/cs_CZ.po +${PYSITELIB}/trytond/modules/product_cost_history/locale/de_DE.po +${PYSITELIB}/trytond/modules/product_cost_history/locale/es_AR.po +${PYSITELIB}/trytond/modules/product_cost_history/locale/es_CO.po +${PYSITELIB}/trytond/modules/product_cost_history/locale/es_EC.po +${PYSITELIB}/trytond/modules/product_cost_history/locale/es_ES.po +${PYSITELIB}/trytond/modules/product_cost_history/locale/fr_FR.po +${PYSITELIB}/trytond/modules/product_cost_history/locale/nl_NL.po +${PYSITELIB}/trytond/modules/product_cost_history/locale/ru_RU.po +${PYSITELIB}/trytond/modules/product_cost_history/locale/sl_SI.po +${PYSITELIB}/trytond/modules/product_cost_history/product.py +${PYSITELIB}/trytond/modules/product_cost_history/product.pyc +${PYSITELIB}/trytond/modules/product_cost_history/product.pyo +${PYSITELIB}/trytond/modules/product_cost_history/product.xml +${PYSITELIB}/trytond/modules/product_cost_history/tests/__init__.py +${PYSITELIB}/trytond/modules/product_cost_history/tests/__init__.pyc +${PYSITELIB}/trytond/modules/product_cost_history/tests/__init__.pyo +${PYSITELIB}/trytond/modules/product_cost_history/tests/test_product_cost_history.py +${PYSITELIB}/trytond/modules/product_cost_history/tests/test_product_cost_history.pyc +${PYSITELIB}/trytond/modules/product_cost_history/tests/test_product_cost_history.pyo +${PYSITELIB}/trytond/modules/product_cost_history/tryton.cfg +${PYSITELIB}/trytond/modules/product_cost_history/view/product_cost_history_graph.xml +${PYSITELIB}/trytond/modules/product_cost_history/view/product_cost_history_tree.xml diff --git a/finance/py-trytond-product-cost-history/distinfo b/finance/py-trytond-product-cost-history/distinfo new file mode 100644 index 00000000000..7f4598ceabe --- /dev/null +++ b/finance/py-trytond-product-cost-history/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2015/08/24 14:49:43 richard Exp $ + +SHA1 (tryton-3.6/trytond_product_cost_history-3.6.0.tar.gz) = 7a35d8bf81e8a17aa3ca7a0cd9c41c7a0d591921 +RMD160 (tryton-3.6/trytond_product_cost_history-3.6.0.tar.gz) = b2361b20506ecf1b5a4d5375adec75432a71b8c5 +Size (tryton-3.6/trytond_product_cost_history-3.6.0.tar.gz) = 20656 bytes diff --git a/finance/py-trytond-product-price-list/DESCR b/finance/py-trytond-product-price-list/DESCR new file mode 100644 index 00000000000..d3a67af7ed8 --- /dev/null +++ b/finance/py-trytond-product-price-list/DESCR @@ -0,0 +1 @@ +The product price list module of the Tryton application platform. diff --git a/finance/py-trytond-product-price-list/Makefile b/finance/py-trytond-product-price-list/Makefile new file mode 100644 index 00000000000..9de1c2ccb60 --- /dev/null +++ b/finance/py-trytond-product-price-list/Makefile @@ -0,0 +1,24 @@ +# $NetBSD: Makefile,v 1.1 2015/08/24 14:49:43 richard Exp $ +TRYTON_MODULE_NAME= trytond_product_price_list +.include "../../devel/py-trytond/Makefile.common" +CATEGORIES= finance python + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://www.tryton.org/ +COMMENT= The product price list module of the Tryton application platform +LICENSE= gnu-gpl-v3 + +DEPENDS+= ${PYPKGPREFIX}-python-sql-[0-9]*:../../databases/py-python-sql +DEPENDS+= ${PYPKGPREFIX}-simpleeval-[0-9]*:../../math/py-simpleeval +DEPENDS+= ${PYPKGPREFIX}-trytond-company-[0-9]*:../../misc/py-trytond-company +DEPENDS+= ${PYPKGPREFIX}-trytond-party-[0-9]*:../../misc/py-trytond-party +DEPENDS+= ${PYPKGPREFIX}-trytond-product-[0-9]*:../../misc/py-trytond-product +DEPENDS+= ${PYPKGPREFIX}-trytond-[0-9]*:../../devel/py-trytond + +USE_LANGUAGES= # none + +REPLACE_PYTHON+= tests/test_product_price_list.py + +.include "../../lang/python/application.mk" +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/finance/py-trytond-product-price-list/PLIST b/finance/py-trytond-product-price-list/PLIST new file mode 100644 index 00000000000..5d3c6dcafe2 --- /dev/null +++ b/finance/py-trytond-product-price-list/PLIST @@ -0,0 +1,39 @@ +@comment $NetBSD: PLIST,v 1.1 2015/08/24 14:49:43 richard Exp $ +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/entry_points.txt +${PYSITELIB}/${EGG_INFODIR}/not-zip-safe +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/trytond/modules/product_price_list/__init__.py +${PYSITELIB}/trytond/modules/product_price_list/__init__.pyc +${PYSITELIB}/trytond/modules/product_price_list/__init__.pyo +${PYSITELIB}/trytond/modules/product_price_list/locale/bg_BG.po +${PYSITELIB}/trytond/modules/product_price_list/locale/ca_ES.po +${PYSITELIB}/trytond/modules/product_price_list/locale/cs_CZ.po +${PYSITELIB}/trytond/modules/product_price_list/locale/de_DE.po +${PYSITELIB}/trytond/modules/product_price_list/locale/es_AR.po +${PYSITELIB}/trytond/modules/product_price_list/locale/es_CO.po +${PYSITELIB}/trytond/modules/product_price_list/locale/es_EC.po +${PYSITELIB}/trytond/modules/product_price_list/locale/es_ES.po +${PYSITELIB}/trytond/modules/product_price_list/locale/fr_FR.po +${PYSITELIB}/trytond/modules/product_price_list/locale/nl_NL.po +${PYSITELIB}/trytond/modules/product_price_list/locale/ru_RU.po +${PYSITELIB}/trytond/modules/product_price_list/locale/sl_SI.po +${PYSITELIB}/trytond/modules/product_price_list/price_list.py +${PYSITELIB}/trytond/modules/product_price_list/price_list.pyc +${PYSITELIB}/trytond/modules/product_price_list/price_list.pyo +${PYSITELIB}/trytond/modules/product_price_list/price_list.xml +${PYSITELIB}/trytond/modules/product_price_list/tests/__init__.py +${PYSITELIB}/trytond/modules/product_price_list/tests/__init__.pyc +${PYSITELIB}/trytond/modules/product_price_list/tests/__init__.pyo +${PYSITELIB}/trytond/modules/product_price_list/tests/test_product_price_list.py +${PYSITELIB}/trytond/modules/product_price_list/tests/test_product_price_list.pyc +${PYSITELIB}/trytond/modules/product_price_list/tests/test_product_price_list.pyo +${PYSITELIB}/trytond/modules/product_price_list/tryton.cfg +${PYSITELIB}/trytond/modules/product_price_list/view/price_list_form.xml +${PYSITELIB}/trytond/modules/product_price_list/view/price_list_line_form.xml +${PYSITELIB}/trytond/modules/product_price_list/view/price_list_line_tree_sequence.xml +${PYSITELIB}/trytond/modules/product_price_list/view/price_list_line_tree.xml +${PYSITELIB}/trytond/modules/product_price_list/view/price_list_tree.xml diff --git a/finance/py-trytond-product-price-list/distinfo b/finance/py-trytond-product-price-list/distinfo new file mode 100644 index 00000000000..e5dd9409e45 --- /dev/null +++ b/finance/py-trytond-product-price-list/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2015/08/24 14:49:43 richard Exp $ + +SHA1 (tryton-3.6/trytond_product_price_list-3.6.0.tar.gz) = de7a0d70d529f3ea7098a64ad5d2e4d1d7c736dc +RMD160 (tryton-3.6/trytond_product_price_list-3.6.0.tar.gz) = ab38931e3339b1a6cd25ad1aadea90da5a066b59 +Size (tryton-3.6/trytond_product_price_list-3.6.0.tar.gz) = 23579 bytes diff --git a/finance/py-trytond-purchase-invoice-line-standalone/DESCR b/finance/py-trytond-purchase-invoice-line-standalone/DESCR new file mode 100644 index 00000000000..c8495e1184c --- /dev/null +++ b/finance/py-trytond-purchase-invoice-line-standalone/DESCR @@ -0,0 +1 @@ +The purchase invoice line standalone module of the Tryton application platform. diff --git a/finance/py-trytond-purchase-invoice-line-standalone/Makefile b/finance/py-trytond-purchase-invoice-line-standalone/Makefile new file mode 100644 index 00000000000..90b381444f3 --- /dev/null +++ b/finance/py-trytond-purchase-invoice-line-standalone/Makefile @@ -0,0 +1,22 @@ +# $NetBSD: Makefile,v 1.1 2015/08/24 14:49:43 richard Exp $ +TRYTON_MODULE_NAME= trytond_purchase_invoice_line_standalone +.include "../../devel/py-trytond/Makefile.common" +CATEGORIES= finance python + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://www.tryton.org/ +COMMENT= Purchase invoice line standalone module of the Tryton platform +LICENSE= gnu-gpl-v3 + +DEPENDS+= ${PYPKGPREFIX}-python-sql-[0-9]*:../../databases/py-python-sql +DEPENDS+= ${PYPKGPREFIX}-trytond-account-invoice-line-standalone-[0-9]*:../../finance/py-trytond-account-invoice-line-standalone +DEPENDS+= ${PYPKGPREFIX}-trytond-purchase-[0-9]*:../../finance/py-trytond-purchase +DEPENDS+= ${PYPKGPREFIX}-trytond-[0-9]*:../../devel/py-trytond + +USE_LANGUAGES= # none + +REPLACE_PYTHON+= tests/test_purchase_invoice_line_standalone.py + +.include "../../lang/python/application.mk" +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/finance/py-trytond-purchase-invoice-line-standalone/PLIST b/finance/py-trytond-purchase-invoice-line-standalone/PLIST new file mode 100644 index 00000000000..cae83becc88 --- /dev/null +++ b/finance/py-trytond-purchase-invoice-line-standalone/PLIST @@ -0,0 +1,40 @@ +@comment $NetBSD: PLIST,v 1.1 2015/08/24 14:49:43 richard Exp $ +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/entry_points.txt +${PYSITELIB}/${EGG_INFODIR}/not-zip-safe +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/trytond/modules/purchase_invoice_line_standalone/__init__.py +${PYSITELIB}/trytond/modules/purchase_invoice_line_standalone/__init__.pyc +${PYSITELIB}/trytond/modules/purchase_invoice_line_standalone/__init__.pyo +${PYSITELIB}/trytond/modules/purchase_invoice_line_standalone/invoice.py +${PYSITELIB}/trytond/modules/purchase_invoice_line_standalone/invoice.pyc +${PYSITELIB}/trytond/modules/purchase_invoice_line_standalone/invoice.pyo +${PYSITELIB}/trytond/modules/purchase_invoice_line_standalone/locale/bg_BG.po +${PYSITELIB}/trytond/modules/purchase_invoice_line_standalone/locale/ca_ES.po +${PYSITELIB}/trytond/modules/purchase_invoice_line_standalone/locale/cs_CZ.po +${PYSITELIB}/trytond/modules/purchase_invoice_line_standalone/locale/de_DE.po +${PYSITELIB}/trytond/modules/purchase_invoice_line_standalone/locale/es_AR.po +${PYSITELIB}/trytond/modules/purchase_invoice_line_standalone/locale/es_CO.po +${PYSITELIB}/trytond/modules/purchase_invoice_line_standalone/locale/es_EC.po +${PYSITELIB}/trytond/modules/purchase_invoice_line_standalone/locale/es_ES.po +${PYSITELIB}/trytond/modules/purchase_invoice_line_standalone/locale/fr_FR.po +${PYSITELIB}/trytond/modules/purchase_invoice_line_standalone/locale/nl_NL.po +${PYSITELIB}/trytond/modules/purchase_invoice_line_standalone/locale/ru_RU.po +${PYSITELIB}/trytond/modules/purchase_invoice_line_standalone/locale/sl_SI.po +${PYSITELIB}/trytond/modules/purchase_invoice_line_standalone/purchase.py +${PYSITELIB}/trytond/modules/purchase_invoice_line_standalone/purchase.pyc +${PYSITELIB}/trytond/modules/purchase_invoice_line_standalone/purchase.pyo +${PYSITELIB}/trytond/modules/purchase_invoice_line_standalone/purchase.xml +${PYSITELIB}/trytond/modules/purchase_invoice_line_standalone/tests/__init__.py +${PYSITELIB}/trytond/modules/purchase_invoice_line_standalone/tests/__init__.pyc +${PYSITELIB}/trytond/modules/purchase_invoice_line_standalone/tests/__init__.pyo +${PYSITELIB}/trytond/modules/purchase_invoice_line_standalone/tests/scenario_purchase_invoice_line_standalone.rst +${PYSITELIB}/trytond/modules/purchase_invoice_line_standalone/tests/test_purchase_invoice_line_standalone.py +${PYSITELIB}/trytond/modules/purchase_invoice_line_standalone/tests/test_purchase_invoice_line_standalone.pyc +${PYSITELIB}/trytond/modules/purchase_invoice_line_standalone/tests/test_purchase_invoice_line_standalone.pyo +${PYSITELIB}/trytond/modules/purchase_invoice_line_standalone/tryton.cfg +${PYSITELIB}/trytond/modules/purchase_invoice_line_standalone/view/invoice_line_tree_invoice_type.xml +${PYSITELIB}/trytond/modules/purchase_invoice_line_standalone/view/purchase_form.xml diff --git a/finance/py-trytond-purchase-invoice-line-standalone/distinfo b/finance/py-trytond-purchase-invoice-line-standalone/distinfo new file mode 100644 index 00000000000..bdfb7bc60cb --- /dev/null +++ b/finance/py-trytond-purchase-invoice-line-standalone/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2015/08/24 14:49:43 richard Exp $ + +SHA1 (tryton-3.6/trytond_purchase_invoice_line_standalone-3.6.0.tar.gz) = b880fb5c145a3057f32515eb726ab51fbbe2b44b +RMD160 (tryton-3.6/trytond_purchase_invoice_line_standalone-3.6.0.tar.gz) = 26b1d830667ff8de586321b036e2dd4a5a024879 +Size (tryton-3.6/trytond_purchase_invoice_line_standalone-3.6.0.tar.gz) = 23575 bytes diff --git a/finance/py-trytond-purchase/DESCR b/finance/py-trytond-purchase/DESCR new file mode 100644 index 00000000000..5e183a068f7 --- /dev/null +++ b/finance/py-trytond-purchase/DESCR @@ -0,0 +1 @@ +The purchase module of the Tryton application platform. diff --git a/finance/py-trytond-purchase/Makefile b/finance/py-trytond-purchase/Makefile new file mode 100644 index 00000000000..2b2b0cd85a5 --- /dev/null +++ b/finance/py-trytond-purchase/Makefile @@ -0,0 +1,29 @@ +# $NetBSD: Makefile,v 1.1 2015/08/24 14:49:43 richard Exp $ +TRYTON_MODULE_NAME= trytond_purchase +.include "../../devel/py-trytond/Makefile.common" +CATEGORIES= finance python + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://www.tryton.org/ +COMMENT= Purchase module of the Tryton application platform +LICENSE= gnu-gpl-v3 + +DEPENDS+= ${PYPKGPREFIX}-python-sql-[0-9]*:../../databases/py-python-sql +DEPENDS+= ${PYPKGPREFIX}-trytond-company-[0-9]*:../../misc/py-trytond-company +DEPENDS+= ${PYPKGPREFIX}-trytond-party-[0-9]*:../../misc/py-trytond-party +DEPENDS+= ${PYPKGPREFIX}-trytond-product-[0-9]*:../../misc/py-trytond-product +DEPENDS+= ${PYPKGPREFIX}-trytond-stock-[0-9]*:../../misc/py-trytond-stock +DEPENDS+= ${PYPKGPREFIX}-trytond-account-[0-9]*:../../finance/py-trytond-account +DEPENDS+= ${PYPKGPREFIX}-trytond-account-invoice-[0-9]*:../../finance/py-trytond-account-invoice +DEPENDS+= ${PYPKGPREFIX}-trytond-account-invoice-stock-[0-9]*:../../finance/py-trytond-account-invoice-stock +DEPENDS+= ${PYPKGPREFIX}-trytond-account-product-[0-9]*:../../finance/py-trytond-account-product +DEPENDS+= ${PYPKGPREFIX}-trytond-currency-[0-9]*:../../finance/py-trytond-currency +DEPENDS+= ${PYPKGPREFIX}-trytond-[0-9]*:../../devel/py-trytond + +USE_LANGUAGES= # none + +REPLACE_PYTHON+= tests/test_purchase.py + +.include "../../lang/python/application.mk" +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/finance/py-trytond-purchase/PLIST b/finance/py-trytond-purchase/PLIST new file mode 100644 index 00000000000..ab9b9ef8582 --- /dev/null +++ b/finance/py-trytond-purchase/PLIST @@ -0,0 +1,71 @@ +@comment $NetBSD: PLIST,v 1.1 2015/08/24 14:49:43 richard Exp $ +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/entry_points.txt +${PYSITELIB}/${EGG_INFODIR}/not-zip-safe +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/trytond/modules/purchase/__init__.py +${PYSITELIB}/trytond/modules/purchase/__init__.pyc +${PYSITELIB}/trytond/modules/purchase/__init__.pyo +${PYSITELIB}/trytond/modules/purchase/configuration.py +${PYSITELIB}/trytond/modules/purchase/configuration.pyc +${PYSITELIB}/trytond/modules/purchase/configuration.pyo +${PYSITELIB}/trytond/modules/purchase/configuration.xml +${PYSITELIB}/trytond/modules/purchase/invoice.py +${PYSITELIB}/trytond/modules/purchase/invoice.pyc +${PYSITELIB}/trytond/modules/purchase/invoice.pyo +${PYSITELIB}/trytond/modules/purchase/locale/bg_BG.po +${PYSITELIB}/trytond/modules/purchase/locale/ca_ES.po +${PYSITELIB}/trytond/modules/purchase/locale/cs_CZ.po +${PYSITELIB}/trytond/modules/purchase/locale/de_DE.po +${PYSITELIB}/trytond/modules/purchase/locale/es_AR.po +${PYSITELIB}/trytond/modules/purchase/locale/es_CO.po +${PYSITELIB}/trytond/modules/purchase/locale/es_EC.po +${PYSITELIB}/trytond/modules/purchase/locale/es_ES.po +${PYSITELIB}/trytond/modules/purchase/locale/fr_FR.po +${PYSITELIB}/trytond/modules/purchase/locale/nl_NL.po +${PYSITELIB}/trytond/modules/purchase/locale/ru_RU.po +${PYSITELIB}/trytond/modules/purchase/locale/sl_SI.po +${PYSITELIB}/trytond/modules/purchase/party.xml +${PYSITELIB}/trytond/modules/purchase/product.py +${PYSITELIB}/trytond/modules/purchase/product.pyc +${PYSITELIB}/trytond/modules/purchase/product.pyo +${PYSITELIB}/trytond/modules/purchase/product.xml +${PYSITELIB}/trytond/modules/purchase/purchase.odt +${PYSITELIB}/trytond/modules/purchase/purchase.py +${PYSITELIB}/trytond/modules/purchase/purchase.pyc +${PYSITELIB}/trytond/modules/purchase/purchase.pyo +${PYSITELIB}/trytond/modules/purchase/purchase.xml +${PYSITELIB}/trytond/modules/purchase/stock.py +${PYSITELIB}/trytond/modules/purchase/stock.pyc +${PYSITELIB}/trytond/modules/purchase/stock.pyo +${PYSITELIB}/trytond/modules/purchase/stock.xml +${PYSITELIB}/trytond/modules/purchase/tests/__init__.py +${PYSITELIB}/trytond/modules/purchase/tests/__init__.pyc +${PYSITELIB}/trytond/modules/purchase/tests/__init__.pyo +${PYSITELIB}/trytond/modules/purchase/tests/scenario_purchase.rst +${PYSITELIB}/trytond/modules/purchase/tests/test_purchase.py +${PYSITELIB}/trytond/modules/purchase/tests/test_purchase.pyc +${PYSITELIB}/trytond/modules/purchase/tests/test_purchase.pyo +${PYSITELIB}/trytond/modules/purchase/tryton.cfg +${PYSITELIB}/trytond/modules/purchase/view/configuration_form.xml +${PYSITELIB}/trytond/modules/purchase/view/handle_invoice_exception_ask_form.xml +${PYSITELIB}/trytond/modules/purchase/view/handle_shipment_exception_ask_form.xml +${PYSITELIB}/trytond/modules/purchase/view/move_form.xml +${PYSITELIB}/trytond/modules/purchase/view/move_list_shipment.xml +${PYSITELIB}/trytond/modules/purchase/view/product_list_purchase_line.xml +${PYSITELIB}/trytond/modules/purchase/view/product_supplier_form.xml +${PYSITELIB}/trytond/modules/purchase/view/product_supplier_price_form.xml +${PYSITELIB}/trytond/modules/purchase/view/product_supplier_price_list_sequence.xml +${PYSITELIB}/trytond/modules/purchase/view/product_supplier_price_tree.xml +${PYSITELIB}/trytond/modules/purchase/view/product_supplier_tree_sequence.xml +${PYSITELIB}/trytond/modules/purchase/view/product_supplier_tree.xml +${PYSITELIB}/trytond/modules/purchase/view/purchase_form.xml +${PYSITELIB}/trytond/modules/purchase/view/purchase_line_form.xml +${PYSITELIB}/trytond/modules/purchase/view/purchase_line_tree_sequence.xml +${PYSITELIB}/trytond/modules/purchase/view/purchase_line_tree.xml +${PYSITELIB}/trytond/modules/purchase/view/purchase_tree.xml +${PYSITELIB}/trytond/modules/purchase/view/template_form.xml +${PYSITELIB}/trytond/modules/purchase/view/template_tree.xml diff --git a/finance/py-trytond-purchase/distinfo b/finance/py-trytond-purchase/distinfo new file mode 100644 index 00000000000..6cadf1f111c --- /dev/null +++ b/finance/py-trytond-purchase/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2015/08/24 14:49:43 richard Exp $ + +SHA1 (tryton-3.6/trytond_purchase-3.6.0.tar.gz) = 672d777d52e845c45ec8b4a66c73cd65517c62eb +RMD160 (tryton-3.6/trytond_purchase-3.6.0.tar.gz) = f4e2a95337f4a2e6ee92a7e43b60bc3839a962b1 +Size (tryton-3.6/trytond_purchase-3.6.0.tar.gz) = 83910 bytes diff --git a/finance/py-trytond-sale/DESCR b/finance/py-trytond-sale/DESCR new file mode 100644 index 00000000000..a7395952209 --- /dev/null +++ b/finance/py-trytond-sale/DESCR @@ -0,0 +1 @@ +The sale module of the Tryton application platform. diff --git a/finance/py-trytond-sale/Makefile b/finance/py-trytond-sale/Makefile new file mode 100644 index 00000000000..ab97e205e64 --- /dev/null +++ b/finance/py-trytond-sale/Makefile @@ -0,0 +1,29 @@ +# $NetBSD: Makefile,v 1.1 2015/08/24 14:49:43 richard Exp $ +TRYTON_MODULE_NAME= trytond_sale +.include "../../devel/py-trytond/Makefile.common" +CATEGORIES= finance python + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://www.tryton.org/ +COMMENT= Sale module of the Tryton application platform +LICENSE= gnu-gpl-v3 + +DEPENDS+= ${PYPKGPREFIX}-python-sql-[0-9]*:../../databases/py-python-sql +DEPENDS+= ${PYPKGPREFIX}-trytond-company-[0-9]*:../../misc/py-trytond-company +DEPENDS+= ${PYPKGPREFIX}-trytond-party-[0-9]*:../../misc/py-trytond-party +DEPENDS+= ${PYPKGPREFIX}-trytond-product-[0-9]*:../../misc/py-trytond-product +DEPENDS+= ${PYPKGPREFIX}-trytond-stock-[0-9]*:../../misc/py-trytond-stock +DEPENDS+= ${PYPKGPREFIX}-trytond-account-invoice-stock-[0-9]*:../../finance/py-trytond-account-invoice-stock +DEPENDS+= ${PYPKGPREFIX}-trytond-account-invoice-[0-9]*:../../finance/py-trytond-account-invoice +DEPENDS+= ${PYPKGPREFIX}-trytond-account-[0-9]*:../../finance/py-trytond-account +DEPENDS+= ${PYPKGPREFIX}-trytond-account-product-[0-9]*:../../finance/py-trytond-account-product +DEPENDS+= ${PYPKGPREFIX}-trytond-currency-[0-9]*:../../finance/py-trytond-currency +DEPENDS+= ${PYPKGPREFIX}-trytond-[0-9]*:../../devel/py-trytond + +USE_LANGUAGES= # none + +REPLACE_PYTHON+= tests/test_sale.py + +.include "../../lang/python/application.mk" +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/finance/py-trytond-sale/PLIST b/finance/py-trytond-sale/PLIST new file mode 100644 index 00000000000..df73b826559 --- /dev/null +++ b/finance/py-trytond-sale/PLIST @@ -0,0 +1,66 @@ +@comment $NetBSD: PLIST,v 1.1 2015/08/24 14:49:43 richard Exp $ +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/entry_points.txt +${PYSITELIB}/${EGG_INFODIR}/not-zip-safe +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/trytond/modules/sale/__init__.py +${PYSITELIB}/trytond/modules/sale/__init__.pyc +${PYSITELIB}/trytond/modules/sale/__init__.pyo +${PYSITELIB}/trytond/modules/sale/configuration.py +${PYSITELIB}/trytond/modules/sale/configuration.pyc +${PYSITELIB}/trytond/modules/sale/configuration.pyo +${PYSITELIB}/trytond/modules/sale/configuration.xml +${PYSITELIB}/trytond/modules/sale/invoice.py +${PYSITELIB}/trytond/modules/sale/invoice.pyc +${PYSITELIB}/trytond/modules/sale/invoice.pyo +${PYSITELIB}/trytond/modules/sale/locale/bg_BG.po +${PYSITELIB}/trytond/modules/sale/locale/ca_ES.po +${PYSITELIB}/trytond/modules/sale/locale/cs_CZ.po +${PYSITELIB}/trytond/modules/sale/locale/de_DE.po +${PYSITELIB}/trytond/modules/sale/locale/es_AR.po +${PYSITELIB}/trytond/modules/sale/locale/es_CO.po +${PYSITELIB}/trytond/modules/sale/locale/es_EC.po +${PYSITELIB}/trytond/modules/sale/locale/es_ES.po +${PYSITELIB}/trytond/modules/sale/locale/fr_FR.po +${PYSITELIB}/trytond/modules/sale/locale/nl_NL.po +${PYSITELIB}/trytond/modules/sale/locale/ru_RU.po +${PYSITELIB}/trytond/modules/sale/locale/sl_SI.po +${PYSITELIB}/trytond/modules/sale/party.xml +${PYSITELIB}/trytond/modules/sale/product.py +${PYSITELIB}/trytond/modules/sale/product.pyc +${PYSITELIB}/trytond/modules/sale/product.pyo +${PYSITELIB}/trytond/modules/sale/product.xml +${PYSITELIB}/trytond/modules/sale/sale.odt +${PYSITELIB}/trytond/modules/sale/sale.py +${PYSITELIB}/trytond/modules/sale/sale.pyc +${PYSITELIB}/trytond/modules/sale/sale.pyo +${PYSITELIB}/trytond/modules/sale/sale.xml +${PYSITELIB}/trytond/modules/sale/stock.py +${PYSITELIB}/trytond/modules/sale/stock.pyc +${PYSITELIB}/trytond/modules/sale/stock.pyo +${PYSITELIB}/trytond/modules/sale/stock.xml +${PYSITELIB}/trytond/modules/sale/tests/__init__.py +${PYSITELIB}/trytond/modules/sale/tests/__init__.pyc +${PYSITELIB}/trytond/modules/sale/tests/__init__.pyo +${PYSITELIB}/trytond/modules/sale/tests/scenario_sale.rst +${PYSITELIB}/trytond/modules/sale/tests/test_sale.py +${PYSITELIB}/trytond/modules/sale/tests/test_sale.pyc +${PYSITELIB}/trytond/modules/sale/tests/test_sale.pyo +${PYSITELIB}/trytond/modules/sale/tryton.cfg +${PYSITELIB}/trytond/modules/sale/view/configuration_form.xml +${PYSITELIB}/trytond/modules/sale/view/handle_invoice_exception_ask_form.xml +${PYSITELIB}/trytond/modules/sale/view/handle_shipment_exception_ask_form.xml +${PYSITELIB}/trytond/modules/sale/view/move_list_shipment.xml +${PYSITELIB}/trytond/modules/sale/view/party_form.xml +${PYSITELIB}/trytond/modules/sale/view/product_list_sale_line.xml +${PYSITELIB}/trytond/modules/sale/view/return_sale_start_form.xml +${PYSITELIB}/trytond/modules/sale/view/sale_form.xml +${PYSITELIB}/trytond/modules/sale/view/sale_line_form.xml +${PYSITELIB}/trytond/modules/sale/view/sale_line_tree_sequence.xml +${PYSITELIB}/trytond/modules/sale/view/sale_line_tree.xml +${PYSITELIB}/trytond/modules/sale/view/sale_tree.xml +${PYSITELIB}/trytond/modules/sale/view/template_form.xml +${PYSITELIB}/trytond/modules/sale/view/template_tree.xml diff --git a/finance/py-trytond-sale/distinfo b/finance/py-trytond-sale/distinfo new file mode 100644 index 00000000000..aff8b9d7729 --- /dev/null +++ b/finance/py-trytond-sale/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2015/08/24 14:49:43 richard Exp $ + +SHA1 (tryton-3.6/trytond_sale-3.6.0.tar.gz) = 12d533aa784c592cbd8a5990dab26563e258b7c6 +RMD160 (tryton-3.6/trytond_sale-3.6.0.tar.gz) = de5a2b2164865e83463db4ae4e1d058647ebd032 +Size (tryton-3.6/trytond_sale-3.6.0.tar.gz) = 78103 bytes diff --git a/finance/py-trytond-stock-supply/DESCR b/finance/py-trytond-stock-supply/DESCR new file mode 100644 index 00000000000..cce1ffb94b5 --- /dev/null +++ b/finance/py-trytond-stock-supply/DESCR @@ -0,0 +1 @@ +The stock supply module of the Tryton application platform. diff --git a/finance/py-trytond-stock-supply/Makefile b/finance/py-trytond-stock-supply/Makefile new file mode 100644 index 00000000000..ff7c743ea1d --- /dev/null +++ b/finance/py-trytond-stock-supply/Makefile @@ -0,0 +1,24 @@ +# $NetBSD: Makefile,v 1.1 2015/08/24 14:49:43 richard Exp $ +TRYTON_MODULE_NAME= trytond_stock_supply +.include "../../devel/py-trytond/Makefile.common" +CATEGORIES= finance python + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://www.tryton.org/ +COMMENT= Stock supply module of the Tryton application platform +LICENSE= gnu-gpl-v3 + +DEPENDS+= ${PYPKGPREFIX}-python-sql-[0-9]*:../../databases/py-python-sql +DEPENDS+= ${PYPKGPREFIX}-trytond-party-[0-9]*:../../misc/py-trytond-party +DEPENDS+= ${PYPKGPREFIX}-trytond-product-[0-9]*:../../misc/py-trytond-product +DEPENDS+= ${PYPKGPREFIX}-trytond-stock-[0-9]*:../../misc/py-trytond-stock +DEPENDS+= ${PYPKGPREFIX}-trytond-purchase-[0-9]*:../../finance/py-trytond-purchase +DEPENDS+= ${PYPKGPREFIX}-trytond-[0-9]*:../../devel/py-trytond + +USE_LANGUAGES= # none + +REPLACE_PYTHON+= tests/test_stock_supply.py + +.include "../../lang/python/application.mk" +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/finance/py-trytond-stock-supply/PLIST b/finance/py-trytond-stock-supply/PLIST new file mode 100644 index 00000000000..5caae40800e --- /dev/null +++ b/finance/py-trytond-stock-supply/PLIST @@ -0,0 +1,53 @@ +@comment $NetBSD: PLIST,v 1.1 2015/08/24 14:49:43 richard Exp $ +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/entry_points.txt +${PYSITELIB}/${EGG_INFODIR}/not-zip-safe +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/trytond/modules/stock_supply/__init__.py +${PYSITELIB}/trytond/modules/stock_supply/__init__.pyc +${PYSITELIB}/trytond/modules/stock_supply/__init__.pyo +${PYSITELIB}/trytond/modules/stock_supply/locale/bg_BG.po +${PYSITELIB}/trytond/modules/stock_supply/locale/ca_ES.po +${PYSITELIB}/trytond/modules/stock_supply/locale/cs_CZ.po +${PYSITELIB}/trytond/modules/stock_supply/locale/de_DE.po +${PYSITELIB}/trytond/modules/stock_supply/locale/es_AR.po +${PYSITELIB}/trytond/modules/stock_supply/locale/es_CO.po +${PYSITELIB}/trytond/modules/stock_supply/locale/es_EC.po +${PYSITELIB}/trytond/modules/stock_supply/locale/es_ES.po +${PYSITELIB}/trytond/modules/stock_supply/locale/fr_FR.po +${PYSITELIB}/trytond/modules/stock_supply/locale/nl_NL.po +${PYSITELIB}/trytond/modules/stock_supply/locale/ru_RU.po +${PYSITELIB}/trytond/modules/stock_supply/locale/sl_SI.po +${PYSITELIB}/trytond/modules/stock_supply/order_point.py +${PYSITELIB}/trytond/modules/stock_supply/order_point.pyc +${PYSITELIB}/trytond/modules/stock_supply/order_point.pyo +${PYSITELIB}/trytond/modules/stock_supply/order_point.xml +${PYSITELIB}/trytond/modules/stock_supply/product.py +${PYSITELIB}/trytond/modules/stock_supply/product.pyc +${PYSITELIB}/trytond/modules/stock_supply/product.pyo +${PYSITELIB}/trytond/modules/stock_supply/purchase_request.py +${PYSITELIB}/trytond/modules/stock_supply/purchase_request.pyc +${PYSITELIB}/trytond/modules/stock_supply/purchase_request.pyo +${PYSITELIB}/trytond/modules/stock_supply/purchase_request.xml +${PYSITELIB}/trytond/modules/stock_supply/shipment.py +${PYSITELIB}/trytond/modules/stock_supply/shipment.pyc +${PYSITELIB}/trytond/modules/stock_supply/shipment.pyo +${PYSITELIB}/trytond/modules/stock_supply/shipment.xml +${PYSITELIB}/trytond/modules/stock_supply/tests/__init__.py +${PYSITELIB}/trytond/modules/stock_supply/tests/__init__.pyc +${PYSITELIB}/trytond/modules/stock_supply/tests/__init__.pyo +${PYSITELIB}/trytond/modules/stock_supply/tests/scenario_stock_internal_supply.rst +${PYSITELIB}/trytond/modules/stock_supply/tests/test_stock_supply.py +${PYSITELIB}/trytond/modules/stock_supply/tests/test_stock_supply.pyc +${PYSITELIB}/trytond/modules/stock_supply/tests/test_stock_supply.pyo +${PYSITELIB}/trytond/modules/stock_supply/tryton.cfg +${PYSITELIB}/trytond/modules/stock_supply/view/order_point_form.xml +${PYSITELIB}/trytond/modules/stock_supply/view/order_point_tree.xml +${PYSITELIB}/trytond/modules/stock_supply/view/purchase_request_create_purchase_ask_party_form.xml +${PYSITELIB}/trytond/modules/stock_supply/view/purchase_request_create_start_form.xml +${PYSITELIB}/trytond/modules/stock_supply/view/purchase_request_form.xml +${PYSITELIB}/trytond/modules/stock_supply/view/purchase_request_tree.xml +${PYSITELIB}/trytond/modules/stock_supply/view/stock_shipment_internal_create_start_form.xml diff --git a/finance/py-trytond-stock-supply/distinfo b/finance/py-trytond-stock-supply/distinfo new file mode 100644 index 00000000000..f8b1bae5515 --- /dev/null +++ b/finance/py-trytond-stock-supply/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2015/08/24 14:49:43 richard Exp $ + +SHA1 (tryton-3.6/trytond_stock_supply-3.6.0.tar.gz) = 1d8b45fccc59a769a543f8dcc74b73512f4f5fbf +RMD160 (tryton-3.6/trytond_stock_supply-3.6.0.tar.gz) = ed375eafeb2921879952fc4b2118b3e9f73ae4fa +Size (tryton-3.6/trytond_stock_supply-3.6.0.tar.gz) = 43630 bytes |