Skip to content

Commit

Permalink
Release V1.0 (#63)
Browse files Browse the repository at this point in the history
* remove duplicated items by bad merge

* add security tier

* change pass move token controller, change tokencontroller to authcontroller

* Corrige Bug al gueardar seeds

* Backend CheckLists

* Backend Signatures, Report COnfiguration repository, queires checklist, domain events

* Uploads service & Storage helper class, paths on settings

* solve typo in Shared proyect reference

* Fix Bug Querying CheckLists

* Ignore some local files

* Optional items in  query

* update dev branch  (#21)

* Pipelines Build & Deploy test (#20)

* remove duplicated items by bad merge

* add security tier

* change pass move token controller, change tokencontroller to authcontroller

* Corrige Bug al gueardar seeds

* Backend CheckLists

* Backend Signatures, Report COnfiguration repository, queires checklist, domain events

* Uploads service & Storage helper class, paths on settings

* solve typo in Shared proyect reference

* Fix Bug Querying CheckLists

* Ignore some local files

* Optional items in  query

* update pipeline

f

* fix publish route

* Update dotnet-core.yml

* build path

* Add test url to readme

* add demo credentials

* Solves Signature add and update bug

* simplify api routes

* Quering and DTO mappin for signatures

* Backend Reports Configurations

* Backend Reports Config

* preparing project to deploy

* updates composition api package version

* change to npm

* disable husky

* binds to 0.0.0.0

* Update dotnet-core.yml

* delete web.config

* dispatch pipelines

* solves vuetify failling in Production Stage

* upload pending file

* review indexjs

* updates dev branch from master (#40)

* pending file (#37)

* remove duplicated items by bad merge

* add security tier

* change pass move token controller, change tokencontroller to authcontroller

* Corrige Bug al gueardar seeds

* Backend CheckLists

* Backend Signatures, Report COnfiguration repository, queires checklist, domain events

* Uploads service & Storage helper class, paths on settings

* solve typo in Shared proyect reference

* Fix Bug Querying CheckLists

* Ignore some local files

* Optional items in  query

* update dev branch  (#21)

* Pipelines Build & Deploy test (#20)

* remove duplicated items by bad merge

* add security tier

* change pass move token controller, change tokencontroller to authcontroller

* Corrige Bug al gueardar seeds

* Backend CheckLists

* Backend Signatures, Report COnfiguration repository, queires checklist, domain events

* Uploads service & Storage helper class, paths on settings

* solve typo in Shared proyect reference

* Fix Bug Querying CheckLists

* Ignore some local files

* Optional items in  query

* update pipeline

f

* fix publish route

* Update dotnet-core.yml

* build path

* Add test url to readme

* add demo credentials

* Solves Signature add and update bug

* simplify api routes

* Quering and DTO mappin for signatures

* Backend Reports Configurations

* Backend Reports Config

* preparing project to deploy

* updates composition api package version

* change to npm

* disable husky

* binds to 0.0.0.0

* Update dotnet-core.yml

* delete web.config

* dispatch pipelines

* solves vuetify failling in Production Stage

* upload pending file

* fix index js

* Update package.json

* bugs review

* Rename Reports Feature

* Data Model Adjustmnets for adding support to reports aggregate

* Configure Test Seed, add editorconfig, fix queries bugs que null o 0 in totals

* adjustments call with jesus

* update gitignore, configure containers

* Creating new REports based on selected configuration, add new fields to report entity

* New Project structure, adds login

* Maquetado app macro and menus

* Pages titles

* Grids Checklist & reports Configs, stores, creates types, Authentication flow complete

* remove title

* startup poge must reports

* Create pending types

* Deletes duplicated type

* resolve some warnings

* Backend Adjustments

* New Grids: Signatures, reports, Create new Reports, all grids now can filter, remove, modales, adds messageDialogs

* organize login view, adds logo in toolbar

* organize code

* Include items in checks query

* mostrar items de checks

* mostrar error al inciar sesion

* Solver some bugs creating reports, add advanced filter to checkl;ists and signatures, adds idea for a dashbord with charts and some sorta valuable info

* missing packages and delete reports

* delete signatures

* Configura Forms Validations

* AddEdit Signatures

* update nuxt version, organize pages folder, change mode to spa

* cahnge redirection to options

* add edit Checklist & itmes back and UI

* componentes for reports editing

* reports checks tab

* dynamic signatures in report, some stayles changes

* Recover DeleteReportCommand

* Disable dropzone deployment error

* Use Input for uploads and remove dropzone, back add/edit/update photos

* bugsfix, edit photos, update checklists from report, update signatures, report validation when completed and available to close, udpate notes

* Block edit report when closed

* Block signatures edition when completed, prevent delete reports and signatures when closed

* Completes Cruds Operation, Reports Configurations and Reports Generations, Only Printing i spending

* Export Report as Pdf

* allow all  CORS origin for pictures

* Create PhotoRecords PDFs

* Fixes Las Review Bugs
  • Loading branch information
ivaneliasoo authored Jul 6, 2020
1 parent 9445948 commit 2f1bfb6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,25 +76,5 @@ private List<Signature> PrepareForConfiguration(List<Signature> signatures)
}
return result;
}

private List<CheckList> PrepareForConfiguration(List<CheckList> checks)
{
var result = new List<CheckList>();
foreach (CheckList check in checks)
{
result.Add(check.CloneForReportConfiguration());
}
return result;
}

private List<Signature> PrepareForConfiguration(List<Signature> signatures)
{
var result = new List<Signature>();
foreach (Signature signature in signatures)
{
result.Add(signature.PreparteForNewReportConfiguration());
}
return result;
}
}
}
1 change: 1 addition & 0 deletions src/ClientApp/pages/Configurations/_id/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ export default class AddEditReportConiguration extends Vue{
else
this.$router.push({ name: 'Configurations-id', params: { id: resp } })
})
}
async asyncData({ store, params }: any) {
Expand Down
3 changes: 2 additions & 1 deletion src/ClientApp/pages/index.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@

<script lang="ts">
import Vue from 'vue'
export default Vue.extend({
})
</script>
</script>

0 comments on commit 2f1bfb6

Please sign in to comment.