How To Install tryton-modules-purchase-requisition on Debian 12

Learn how to install tryton-modules-purchase-requisition on Debian 12 with this tutorial. tryton-modules-purchase-requisition is Tryton application platform - purchase requisition module The description of the purchase requisition. The description of the product to request.

Introduction

In this tutorial we learn how to install tryton-modules-purchase-requisition on Debian 12.

What is tryton-modules-purchase-requisition

tryton-modules-purchase-requisition is:

Tryton is a high-level general purpose application platform. It is the base of a complete business solution as well as a comprehensive health and hospital information system (GNUHealth).

The Purchase Requisition module allows users to create their purchase requisitions. Those requisitions will be approved or rejected by the Approval group. On approval, purchase requests will be created.

Requisition


  • Employee: The requester.

  • Description: The description of the purchase requisition.

  • Supply Date: The expected date to supply.

  • Currency: define the currency to use for this requisition. All product prices will be computed accordingly.

  • Warehouse: Define the warehouse where the shipment will be made.

  • Purchase Requisition Lines:

  • Supplier: The supplier.

  • Product: An optional reference to the product to request.

  • Description: The description of the product to request.

  • Quantity: The quantity to request.

  • Unit: The unit of measure in which is expressed the quantity.

  • Unit Price: The unit price of the product expressed in the currency of the purchase requisition.

  • Amount: The amount of the current line (Unit Price multiplied by Quantity).

  • Total: The total amount.

  • State: The state of the purchase requisition. May take one of the following values: Draft, Waiting, Rejected, Processing, Done, Cancelled.

  • Company: The company which issue the purchase requisition.

There are three methods to install tryton-modules-purchase-requisition on Debian 12. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install tryton-modules-purchase-requisition Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install tryton-modules-purchase-requisition using apt-get by running the following command:

sudo apt-get -y install tryton-modules-purchase-requisition

Install tryton-modules-purchase-requisition Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install tryton-modules-purchase-requisition using apt by running the following command:

sudo apt -y install tryton-modules-purchase-requisition

Install tryton-modules-purchase-requisition Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install tryton-modules-purchase-requisition using aptitude by running the following command:

sudo aptitude -y install tryton-modules-purchase-requisition

How To Uninstall tryton-modules-purchase-requisition on Debian 12

To uninstall only the tryton-modules-purchase-requisition package we can use the following command:

sudo apt-get remove tryton-modules-purchase-requisition

Uninstall tryton-modules-purchase-requisition And Its Dependencies

To uninstall tryton-modules-purchase-requisition and its dependencies that are no longer needed by Debian 12, we can use the command below:

sudo apt-get -y autoremove tryton-modules-purchase-requisition

Remove tryton-modules-purchase-requisition Configurations and Data

To remove tryton-modules-purchase-requisition configuration and data from Debian 12 we can use the following command:

sudo apt-get -y purge tryton-modules-purchase-requisition

Remove tryton-modules-purchase-requisition configuration, data, and all of its dependencies

We can use the following command to remove tryton-modules-purchase-requisition configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge tryton-modules-purchase-requisition

Dependencies

tryton-modules-purchase-requisition have the following dependencies:

References

Summary

In this tutorial we learn how to install tryton-modules-purchase-requisition package on Debian 12 using different package management tools: apt, apt-get and aptitude.