forked from mirrors/homebox
fix: csv-importer (#10)
* update item fields to support import_ref * add additional rows to CSV importer * add CSV import documentation * update readme * update readme * fix failed test
This commit is contained in:
parent
90813abf76
commit
ca36e3b080
21 changed files with 447 additions and 135 deletions
|
@ -1,5 +1,5 @@
|
|||
[data-md-color-scheme="homebox"] {
|
||||
--md-primary-fg-color: #5d5656;
|
||||
--md-primary-fg-color: #5b7f67;
|
||||
--md-primary-fg-color--light: #5b7f67;
|
||||
--md-primary-fg-color--dark: #90030c;
|
||||
}
|
||||
|
|
|
@ -1,28 +1,41 @@
|
|||
# CSV Imports
|
||||
|
||||
This document outlines the CSV import feature of Homebox and how to use it.
|
||||
|
||||
## Quick Start
|
||||
|
||||
Using the CSV import is the recommended way for adding items to the database. It is always going to be the fastest way to import any large amount of items and provides the most flexibility when it comes to adding items.
|
||||
|
||||
**Limitations**
|
||||
- Currently only supports importing items
|
||||
|
||||
- Currently only supports importing items, locations, and labels
|
||||
- Does not support attachments. Attachments must be uploaded after import
|
||||
|
||||
**Template**
|
||||
|
||||
You can use this snippet as the headers for your CSV. Copy and paste it into your spreadsheet editor of choice and fill in the value.
|
||||
|
||||
```csv
|
||||
Import RefLocation Labels Quantity Name Description Insured Serial Number Model Number Manufacturer Notes Purchase From Purchased Price Purchased Time Lifetime Warranty Warranty Expires Warranty Details Sold To Sold Price Sold Time Sold Notes
|
||||
```
|
||||
|
||||
!!! tip "Column Order"
|
||||
Column headers are just there for reference, the important thing is that the order is correct. You can change the headers to anything you like.
|
||||
|
||||
|
||||
## CSV Reference
|
||||
|
||||
| Column Heading | Type | Description |
|
||||
| Column | Type | Description |
|
||||
| ----------------- | -------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
|
||||
| ImportRef | String (100) | Future |
|
||||
| Location | String | This is the location of the item that will be created. These are de-duplicated and won't create another instance when reused. |
|
||||
| Labels | `;` Separated String | List of labels to apply to the item seperated by a `;`, can be existing or new |
|
||||
| Labels | `;` Separated String | List of labels to apply to the item separated by a `;`, can be existing or new |
|
||||
| Quantity | Integer | The quantity of items to create |
|
||||
| Name | String | Name of the item |
|
||||
| Description | String | Description of the item |
|
||||
| Insured | Boolean | Whether or not the item is insured |
|
||||
| Serial Number | String | Serial number of the item |
|
||||
| Model Number | String | Model of the item |
|
||||
| Manufacturer | String | Manufacturer of the item |
|
||||
| Notes | String | General notes about the product |
|
||||
| Notes | String (1000) | General notes about the product |
|
||||
| Purchase From | String | Name of the place the item was purchased from |
|
||||
| Purchase Price | Float64 | |
|
||||
| Purchase At | Date | Date the item was purchased |
|
||||
|
@ -32,10 +45,12 @@ Using the CSV import is the recommended way for adding items to the database. It
|
|||
| Sold To | String | Name of the person the item was sold to |
|
||||
| Sold At | Date | Date the item was sold |
|
||||
| Sold Price | Float64 | |
|
||||
| Sold Notes | String (1000) | |
|
||||
|
||||
**Type Key**
|
||||
|
||||
| Type | Format |
|
||||
| ------ | ------------------ |
|
||||
| String | Max 255 Characters |
|
||||
| Date | YYYY-MM-DD |
|
||||
| Type | Format |
|
||||
| ------- | --------------------------------------------------- |
|
||||
| String | Max 255 Characters unless otherwise specified |
|
||||
| Date | YYYY-MM-DD |
|
||||
| Boolean | true or false, yes or no, 1 or 0 - case insensitive |
|
||||
|
|
|
@ -27,3 +27,17 @@ theme:
|
|||
|
||||
extra_css:
|
||||
- assets/stylesheets/extras.css
|
||||
|
||||
markdown_extensions:
|
||||
- pymdownx.emoji:
|
||||
emoji_index: !!python/name:materialx.emoji.twemoji
|
||||
emoji_generator: !!python/name:materialx.emoji.to_svg
|
||||
- def_list
|
||||
- pymdownx.highlight
|
||||
- pymdownx.superfences
|
||||
- pymdownx.tasklist:
|
||||
custom_checkbox: true
|
||||
- admonition
|
||||
- attr_list
|
||||
- pymdownx.tabbed
|
||||
- pymdownx.superfences
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue