summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--python-trytond-sale-supply-drop-shipment.spec195
-rw-r--r--sources1
3 files changed, 197 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..9ff75c0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/trytond_sale_supply_drop_shipment-6.8.0.tar.gz
diff --git a/python-trytond-sale-supply-drop-shipment.spec b/python-trytond-sale-supply-drop-shipment.spec
new file mode 100644
index 0000000..d66684d
--- /dev/null
+++ b/python-trytond-sale-supply-drop-shipment.spec
@@ -0,0 +1,195 @@
+%global _empty_manifest_terminate_build 0
+Name: python-trytond-sale-supply-drop-shipment
+Version: 6.8.0
+Release: 1
+Summary: Tryton module for sale supply drop shipment
+License: GPL-3
+URL: http://www.tryton.org/
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/f7/e7/14ebcddf6be68d55ab2407002abe8601868de875c89f6da7c46de04fdaae/trytond_sale_supply_drop_shipment-6.8.0.tar.gz
+BuildArch: noarch
+
+Requires: python3-trytond-company
+Requires: python3-trytond-product
+Requires: python3-trytond-purchase
+Requires: python3-trytond-purchase-request
+Requires: python3-trytond-sale
+Requires: python3-trytond-sale-supply
+Requires: python3-trytond-stock
+Requires: python3-trytond
+Requires: python3-proteus
+
+%description
+Sale Supply Drop Shipment Model
+###############################
+
+The Sale Supply Drop Shipment module adds a drop shipment option on product
+supplier if "supply on request" is selected.
+When selected, the purchase request and the linked purchase have the address of
+customer as Delivery Address; at the confirmation of the purchase a drop
+shipment is created and linked to both the purchase and the sale.
+
+Drop Shipment
+*************
+
+A drop shipment is used when products are sent directly from the supplier to
+the customer without going through the warehouse.
+It is mainly composed of a supplier, a customer and a list of moves.
+
+The drop shipment can be in one of this states:
+
+* Draft
+
+ All moves are in draft.
+
+* Waiting
+
+ All moves are in draft, the synchronization between the moves of the supplier
+ and the moves to the customer has occurred.
+
+* Shipped
+
+ All moves from the supplier are done.
+
+* Done
+
+ All moves are in state Done.
+
+* Cancelled
+
+ All moves are cancelled.
+
+
+%package -n python3-trytond-sale-supply-drop-shipment
+Summary: Tryton module for sale supply drop shipment
+Provides: python-trytond-sale-supply-drop-shipment
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-trytond-sale-supply-drop-shipment
+Sale Supply Drop Shipment Model
+###############################
+
+The Sale Supply Drop Shipment module adds a drop shipment option on product
+supplier if "supply on request" is selected.
+When selected, the purchase request and the linked purchase have the address of
+customer as Delivery Address; at the confirmation of the purchase a drop
+shipment is created and linked to both the purchase and the sale.
+
+Drop Shipment
+*************
+
+A drop shipment is used when products are sent directly from the supplier to
+the customer without going through the warehouse.
+It is mainly composed of a supplier, a customer and a list of moves.
+
+The drop shipment can be in one of this states:
+
+* Draft
+
+ All moves are in draft.
+
+* Waiting
+
+ All moves are in draft, the synchronization between the moves of the supplier
+ and the moves to the customer has occurred.
+
+* Shipped
+
+ All moves from the supplier are done.
+
+* Done
+
+ All moves are in state Done.
+
+* Cancelled
+
+ All moves are cancelled.
+
+
+%package help
+Summary: Development documents and examples for trytond-sale-supply-drop-shipment
+Provides: python3-trytond-sale-supply-drop-shipment-doc
+%description help
+Sale Supply Drop Shipment Model
+###############################
+
+The Sale Supply Drop Shipment module adds a drop shipment option on product
+supplier if "supply on request" is selected.
+When selected, the purchase request and the linked purchase have the address of
+customer as Delivery Address; at the confirmation of the purchase a drop
+shipment is created and linked to both the purchase and the sale.
+
+Drop Shipment
+*************
+
+A drop shipment is used when products are sent directly from the supplier to
+the customer without going through the warehouse.
+It is mainly composed of a supplier, a customer and a list of moves.
+
+The drop shipment can be in one of this states:
+
+* Draft
+
+ All moves are in draft.
+
+* Waiting
+
+ All moves are in draft, the synchronization between the moves of the supplier
+ and the moves to the customer has occurred.
+
+* Shipped
+
+ All moves from the supplier are done.
+
+* Done
+
+ All moves are in state Done.
+
+* Cancelled
+
+ All moves are cancelled.
+
+
+%prep
+%autosetup -n trytond-sale-supply-drop-shipment-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-sale-supply-drop-shipment -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Wed May 10 2023 Python_Bot <Python_Bot@openeuler.org> - 6.8.0-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..952ecf1
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+70583c1ab79943a27402a07b64f3abf1 trytond_sale_supply_drop_shipment-6.8.0.tar.gz