-
-
Notifications
You must be signed in to change notification settings - Fork 527
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add an option to control whether "in-kind value" of each item should be added in export of donations and distributions #4897
base: main
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
class AddIncludeInKindValuesInExportedFilesToOrganizations < ActiveRecord::Migration[7.2] | ||
def change | ||
add_column :organizations, :include_in_kind_values_in_exported_files, :boolean | ||
change_column_default :organizations, :include_in_kind_values_in_exported_files, false | ||
end | ||
end |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
class BackfillAddIncludeInKindValuesInExportedFilesToOrganizations < ActiveRecord::Migration[7.2] | ||
disable_ddl_transaction! | ||
def change | ||
Organization.unscoped.in_batches do |relation| | ||
relation.update_all include_in_kind_values_in_exported_files: false | ||
sleep(0.01) | ||
end | ||
end | ||
end |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -129,6 +129,12 @@ For each of the distributions in the filtered list: | |
|
||
[!NOTE] This includes inactive Items as well as active ones. | ||
|
||
### Add In-Kind Value for each item | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please add something like "The default export includes the number of items exported, but not the values. If you want to also have the export include the in-kind value for each item in the distributions, you can set that option." before the instructions. And after, please add a "[!NOTE] Setting this affects both the donation and distribution exports." There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. OK. |
||
The default export includes the number of items exported, but not the values. If you want to also have the export include the in-kind value for each item in the distributions, you can set that option. | ||
Click "My Organization" in the left hand menu. Click "Edit" button. Set the "Include in-kind value in donation and distribution exports?" to "yes", then click "Save". | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. to "yes", then click "Save". |
||
[!NOTE] Setting this affects both the donation and distribution exports. | ||
|
||
## Donations | ||
|
||
### Navigating to export Donations | ||
|
@@ -157,6 +163,12 @@ For each of the Donations in the filtered list: | |
- Comments, | ||
- and the quantity of each of your organization's Items in the Donations. | ||
|
||
### Add In-Kind Value for each item | ||
The default export includes the number of items exported, but not the values. If you want to also have the export include the in-kind value for each item in the distributions, you can set that option. | ||
Click "My Organization" in the left hand menu. Click "Edit" button. Set the "Include in-kind value in donation and distribution exports?" to "yes", then click "Save". | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please add similar text as noted above in the distribution section. |
||
[!NOTE] Setting this affects both the donation and distribution exports. | ||
|
||
## Donation Sites | ||
### Navigating to export Donation Sites | ||
Click "Community", then "Donation Sites" in the left hand menu. Then click "Export Donation Sites" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be NOT NULL. Otherwise it's got three values, true false and null. :)