add missing config table reports
parent
8efea8d739
commit
9501f30b23
|
|
@ -17,6 +17,7 @@ const simpleReports = {
|
|||
from Cemeteries
|
||||
where recordDelete_timeMillis is null
|
||||
order by cemeteryName`,
|
||||
'committalTypes-all': 'select * from CommittalTypes',
|
||||
'contractComments-all': 'select * from ContractComments',
|
||||
'contractFees-all': 'select * from ContractFees',
|
||||
'contractFields-all': 'select * from ContractFields',
|
||||
|
|
@ -24,6 +25,7 @@ const simpleReports = {
|
|||
'contracts-all': 'select * from Contracts',
|
||||
'contractTransactions-all': 'select * from ContractTransactions',
|
||||
'contractTypeFields-all': 'select * from ContractTypeFields',
|
||||
'contractTypePrints-all': 'select * from ContractTypePrints',
|
||||
'contractTypes-all': 'select * from ContractTypes',
|
||||
'feeCategories-all': 'select * from FeeCategories',
|
||||
'fees-all': 'select * from Fees',
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@ const simpleReports: Record<`${string}-all` | `${string}-formatted`, string> = {
|
|||
where recordDelete_timeMillis is null
|
||||
order by cemeteryName`,
|
||||
|
||||
'committalTypes-all': 'select * from CommittalTypes',
|
||||
'contractComments-all': 'select * from ContractComments',
|
||||
'contractFees-all': 'select * from ContractFees',
|
||||
'contractFields-all': 'select * from ContractFields',
|
||||
|
|
@ -36,6 +37,7 @@ const simpleReports: Record<`${string}-all` | `${string}-formatted`, string> = {
|
|||
'contracts-all': 'select * from Contracts',
|
||||
'contractTransactions-all': 'select * from ContractTransactions',
|
||||
'contractTypeFields-all': 'select * from ContractTypeFields',
|
||||
'contractTypePrints-all': 'select * from ContractTypePrints',
|
||||
'contractTypes-all': 'select * from ContractTypes',
|
||||
|
||||
'feeCategories-all': 'select * from FeeCategories',
|
||||
|
|
@ -51,7 +53,7 @@ const simpleReports: Record<`${string}-all` | `${string}-formatted`, string> = {
|
|||
where recordDelete_timeMillis is null`,
|
||||
|
||||
'intermentContainerTypes-all': 'select * from IntermentContainerTypes',
|
||||
|
||||
|
||||
'workOrderBurialSites-all': 'select * from WorkOrderBurialSites',
|
||||
'workOrderComments-all': 'select * from WorkOrderComments',
|
||||
'workOrderMilestones-all': 'select * from WorkOrderMilestones',
|
||||
|
|
|
|||
|
|
@ -597,6 +597,17 @@
|
|||
<h3 class="title is-5 is-marginless">Contract Type Fields</h3>
|
||||
</div>
|
||||
</a>
|
||||
<a class="panel-block align-items-flex-start" href="<%= urlPrefix %>/reports/contractTypePrints-all" download>
|
||||
<div class="has-text-centered my-2 ml-2 mr-3">
|
||||
<span class="icon has-text-info">
|
||||
<i class="fas fa-2x fa-table" aria-hidden="true"></i>
|
||||
</span><br />
|
||||
<span class="tag is-info">CSV</span>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="title is-5 is-marginless">Contract Type Prints</h3>
|
||||
</div>
|
||||
</a>
|
||||
<a class="panel-block align-items-flex-start" href="<%= urlPrefix %>/reports/intermentContainerTypes-all" download>
|
||||
<div class="has-text-centered my-2 ml-2 mr-3">
|
||||
<span class="icon has-text-info">
|
||||
|
|
@ -608,6 +619,17 @@
|
|||
<h3 class="title is-5 is-marginless">Interment Container Types</h3>
|
||||
</div>
|
||||
</a>
|
||||
<a class="panel-block align-items-flex-start" href="<%= urlPrefix %>/reports/committalTypes-all" download>
|
||||
<div class="has-text-centered my-2 ml-2 mr-3">
|
||||
<span class="icon has-text-info">
|
||||
<i class="fas fa-2x fa-table" aria-hidden="true"></i>
|
||||
</span><br />
|
||||
<span class="tag is-info">CSV</span>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="title is-5 is-marginless">Committal Types</h3>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="panel">
|
||||
<h2 class="panel-heading">Work Order Tables</h2>
|
||||
|
|
|
|||
Loading…
Reference in New Issue