diff options
| author | CoprDistGit <infra@openeuler.org> | 2023-05-18 04:22:30 +0000 |
|---|---|---|
| committer | CoprDistGit <infra@openeuler.org> | 2023-05-18 04:22:30 +0000 |
| commit | 4ee708a405088433d142d1592ca7b024c16243f2 (patch) | |
| tree | 78c7b1e2227e904f3898467bc041c13398e433ee | |
| parent | b425e77607cd4a41b1efc621eb1830037ec1e059 (diff) | |
automatic import of python-trytond-account-stock-anglo-saxon
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-trytond-account-stock-anglo-saxon.spec | 154 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 156 insertions, 0 deletions
@@ -0,0 +1 @@ +/trytond_account_stock_anglo_saxon-6.8.0.tar.gz diff --git a/python-trytond-account-stock-anglo-saxon.spec b/python-trytond-account-stock-anglo-saxon.spec new file mode 100644 index 0000000..8c338f9 --- /dev/null +++ b/python-trytond-account-stock-anglo-saxon.spec @@ -0,0 +1,154 @@ +%global _empty_manifest_terminate_build 0 +Name: python-trytond-account-stock-anglo-saxon +Version: 6.8.0 +Release: 1 +Summary: Tryton module for anglo-saxon real-time stock valuation +License: GPL-3 +URL: http://www.tryton.org/ +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/28/d7/94cf0280a5ec5233fa16733739ebbb355bf708a34c827fa1ff286e860a71/trytond_account_stock_anglo_saxon-6.8.0.tar.gz +BuildArch: noarch + +Requires: python3-trytond-account +Requires: python3-trytond-account-invoice +Requires: python3-trytond-account-invoice-stock +Requires: python3-trytond-account-product +Requires: python3-trytond-account-stock-continental +Requires: python3-trytond +Requires: python3-proteus +Requires: python3-trytond-sale-supply-drop-shipment +Requires: python3-trytond-sale +Requires: python3-trytond-purchase + +%description +Account Stock Anglo-Saxon Module +################################ + +The account_stock_anglo_saxon module adds anglo-saxon accounting model for +stock valuation. + +A new field is added to Accounting categories: + +- Account Cost of Goods Sold: The account which is used to record cost of goods + sold. + +The Account Moves of Invoices are modified for fiscal year with the account +stock method set. + +On Supplier Invoice, the cost of the Product at reception is debited on the +Account Stock IN and only the difference is debited to the Account +Expense. +If the reception is not yet done then the cost is the amount on the invoice. +The opposite is done on Supplier Credit Note. + +On Invoice, the cost of the Product at delivery is credited from the Account +Stock OUT and is debited to the Account Cost of Goods Sold. +If the delivery is not yet done then the current cost is used. +The opposite is done on Credit Note. + + +%package -n python3-trytond-account-stock-anglo-saxon +Summary: Tryton module for anglo-saxon real-time stock valuation +Provides: python-trytond-account-stock-anglo-saxon +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-trytond-account-stock-anglo-saxon +Account Stock Anglo-Saxon Module +################################ + +The account_stock_anglo_saxon module adds anglo-saxon accounting model for +stock valuation. + +A new field is added to Accounting categories: + +- Account Cost of Goods Sold: The account which is used to record cost of goods + sold. + +The Account Moves of Invoices are modified for fiscal year with the account +stock method set. + +On Supplier Invoice, the cost of the Product at reception is debited on the +Account Stock IN and only the difference is debited to the Account +Expense. +If the reception is not yet done then the cost is the amount on the invoice. +The opposite is done on Supplier Credit Note. + +On Invoice, the cost of the Product at delivery is credited from the Account +Stock OUT and is debited to the Account Cost of Goods Sold. +If the delivery is not yet done then the current cost is used. +The opposite is done on Credit Note. + + +%package help +Summary: Development documents and examples for trytond-account-stock-anglo-saxon +Provides: python3-trytond-account-stock-anglo-saxon-doc +%description help +Account Stock Anglo-Saxon Module +################################ + +The account_stock_anglo_saxon module adds anglo-saxon accounting model for +stock valuation. + +A new field is added to Accounting categories: + +- Account Cost of Goods Sold: The account which is used to record cost of goods + sold. + +The Account Moves of Invoices are modified for fiscal year with the account +stock method set. + +On Supplier Invoice, the cost of the Product at reception is debited on the +Account Stock IN and only the difference is debited to the Account +Expense. +If the reception is not yet done then the cost is the amount on the invoice. +The opposite is done on Supplier Credit Note. + +On Invoice, the cost of the Product at delivery is credited from the Account +Stock OUT and is debited to the Account Cost of Goods Sold. +If the delivery is not yet done then the current cost is used. +The opposite is done on Credit Note. + + +%prep +%autosetup -n trytond-account-stock-anglo-saxon-6.8.0 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-trytond-account-stock-anglo-saxon -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Thu May 18 2023 Python_Bot <Python_Bot@openeuler.org> - 6.8.0-1 +- Package Spec generated @@ -0,0 +1 @@ +7ba6ac364b3ad8f758c00f881d710ae5 trytond_account_stock_anglo_saxon-6.8.0.tar.gz |
