You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+12-4Lines changed: 12 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,17 @@ All notable changes to this project will be documented in this file (starting wi
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
-
## [Unreleased] - yyyy-mm-dd (in UTC)
8
+
## Unreleased - YYYY-MM-DD
9
+
10
+
### Added
11
+
12
+
- Adds "Category" columns to BOM and Build Item tables and APIs in [#10722](https://github.com/inventree/InvenTree/pull/10772)
13
+
14
+
### Changed
15
+
16
+
### Removed
17
+
18
+
## 1.1.0 - 2025-11-02
9
19
10
20
### Added
11
21
@@ -30,10 +40,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
30
40
- Changed site URL check to allow protocol mismatches if `INVENTREE_SITE_LAX_PROTOCOL` is set to `True` (default) in [#10454](https://github.com/inventree/InvenTree/pull/10454)
31
41
- Changed call signature of `get_global_setting` to use `environment_key` instead of `enviroment_key` in [#10557](https://github.com/inventree/InvenTree/pull/10557)
32
42
33
-
### Removed
34
-
35
43
36
-
## [1.0.0] - 2025-09-15
44
+
## 1.0.0 - 2025-09-15
37
45
38
46
The first "stable" release following semver but not extensively other than the previous releases. The use of 1.0 indicates the stability that users already expect from InvenTree.
Copy file name to clipboardExpand all lines: docs/docs/report/helpers.md
+13-4Lines changed: 13 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -273,7 +273,7 @@ To convert a currency value from one currency to another, use the `convert_curre
273
273
!!! info "Data Types"
274
274
The `money` parameter must be `Money` class instance. If not, an error will be raised.
275
275
276
-
####create_currency
276
+
### create_currency
277
277
278
278
Create a `currency` instance using the `create_currency` helper function. This returns a `Money` class instance based on the provided amount and currency type.
279
279
@@ -286,40 +286,49 @@ Create a `currency` instance using the `create_currency` helper function. This r
286
286
287
287
Simple mathematical operators are available, as demonstrated in the example template below. These operators can be used to perform basic arithmetic operations within the report template.
288
288
289
-
### Input Types
290
-
291
-
These mathematical functions accept inputs of various input types, and attempt to perform the operation accordingly. Note that any inputs which are provided as strings or numbers will be converted to `Decimal` class types before the operation is performed.
289
+
!!! info "Input Types"
290
+
These mathematical functions accept inputs of various input types, and attempt to perform the operation accordingly. Note that any inputs which are provided as strings or numbers will be converted to `Decimal` class types before the operation is performed.
292
291
293
292
### add
294
293
294
+
Add two numbers together using the `add` helper function:
295
+
295
296
::: report.templatetags.report.add
296
297
options:
297
298
show_docstring_description: false
298
299
show_source: False
299
300
300
301
### subtract
301
302
303
+
Subtract one number from another using the `subtract` helper function:
304
+
302
305
::: report.templatetags.report.subtract
303
306
options:
304
307
show_docstring_description: false
305
308
show_source: False
306
309
307
310
### multiply
308
311
312
+
Multiply two numbers together using the `multiply` helper function:
313
+
309
314
::: report.templatetags.report.multiply
310
315
options:
311
316
show_docstring_description: false
312
317
show_source: False
313
318
314
319
### divide
315
320
321
+
Divide one number by another using the `divide` helper function:
322
+
316
323
::: report.templatetags.report.divide
317
324
options:
318
325
show_docstring_description: false
319
326
show_source: False
320
327
321
328
### modulo
322
329
330
+
Perform a modulo operation using the `modulo` helper function:
0 commit comments