This commit is contained in:
2020-10-23 22:37:41 +00:00
parent 48e65f5f92
commit da9b64c355
3 changed files with 12 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
# EXPORT EXTENSION
The Export extension can be used to export selected records from AyaNova.
Formats available are .json and .csv (comma separated values).
.json is most appropriate for preserving the original structure of the data being exported and a good "round trip" format as it's most compatible with importing back into AyaNova. JSON format is becoming more widely accepted and you should choose this format where possible.
.csv is more widely compatible with 3rd party applications than JSON but CSV is a "flat" file format that will lose some of the structure of the source data so some adaptations need to be made to the data during export and it may not be directly importable back into AyaNova again.

View File

@@ -87,6 +87,7 @@ nav:
- 'Report editor': 'form-ay-report-edit.md'
- Extensions:
- 'Tags extension': 'ay-ex-tags.md'
- 'Export extension': 'ay-ex-export.md'
- Customer:
- 'Workorders': 'form-customer-workorders.md'
- 'Customer service requests': 'form-customer-csr-list.md'

View File

@@ -94,7 +94,7 @@ namespace AyaNova.Biz
// when disposed if either commands fails
await transaction.CommitAsync();
}
catch (Exception ex)
catch
{
throw;
}