2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-04-28 19:46:46 +00:00

Added context variables for address (#5807)

* Corrected report mixin example

* Remove unused file

* Added context variables for company and address

* Repair link in file

* Repair link in file

* Repair link in file

* Removed blank
This commit is contained in:
Michael 2023-10-29 12:07:21 +01:00 committed by GitHub
parent 3c5e2a3541
commit 4cd4a84bac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 20 additions and 9 deletions

Binary file not shown.

View File

@ -161,18 +161,19 @@ Each part object has access to a lot of context variables about the part. The fo
### Suppliers ### Suppliers
#### Supplier #### Company
| Variable | Description | | Variable | Description |
|----------|-------------| |----------|-------------|
| name | Name of the company | | name | Name of the company |
| description | Longer form description | | description | Longer form description |
| website | URL for the company website | | website | URL for the company website |
| address | Postal address | | primary_address | [Address](./context_variables.md#address) object that is marked as primary address |
| contact | Contace Name | | address | String format of the primary address |
| contact | Contact Name |
| phone | Contact phone number | | phone | Contact phone number |
| email | Contact email address | | email | Contact email address |
| link | A second econdary URL to the company (Actually only accessible in the admin interface) | | link | A second URL to the company (Actually only accessible in the admin interface) |
| notes | Extra notes about the company (Actually only accessible in the admin interface) | | notes | Extra notes about the company (Actually only accessible in the admin interface) |
| is_customer | Boolean value, is this company a customer | | is_customer | Boolean value, is this company a customer |
| is_supplier | Boolean value, is this company a supplier | | is_supplier | Boolean value, is this company a supplier |
@ -180,13 +181,23 @@ Each part object has access to a lot of context variables about the part. The fo
| currency_code | Default currency for the company | | currency_code | Default currency for the company |
| parts | Query set with all parts that the company supplies | | parts | Query set with all parts that the company supplies |
#### Address
| Variable | Description |
|----------|-------------|
| line1 | First line of the postal address |
| line2 | Second line of the postal address |
| postal_code | ZIP code of the city |
| postal_city | City name |
| country | Country name |
#### SupplierPart #### SupplierPart
| Variable | Description | | Variable | Description |
|----------|-------------| |----------|-------------|
| part | Link to the master Part (Obsolete) | | part | Link to the master Part (Obsolete) |
| source_item | The sourcing [StockItem](./context_variables.md#stockitem) linked to this [SupplierPart](./context_variables.md#supplierpart) instance | | source_item | The sourcing [StockItem](./context_variables.md#stockitem) linked to this [SupplierPart](./context_variables.md#supplierpart) instance |
| supplier | [Supplier](./context_variables.md#supplier) that supplies this part | | supplier | [Company](./context_variables.md#company) that supplies this part |
| SKU | Stock keeping unit (supplier part number) | | SKU | Stock keeping unit (supplier part number) |
| link | Link to external website for this supplier part | | link | Link to external website for this supplier part |
| description | Descriptive notes field | | description | Descriptive notes field |