This commit is contained in:
2021-12-14 20:52:32 +00:00
parent bedaeb01cf
commit 370f779a6c
2 changed files with 38 additions and 7 deletions

View File

@@ -235,6 +235,17 @@ TODO: 1 BETA DOCS:
- 1 todo: update all front end dependencies - 1 todo: update all front end dependencies
- 1 bugbug: after client dependency update in beta2 signature pad broken in wo
it's wierdly size and can only draw in upper left corner
no reports of issues
works in beta 1 rendered like this:
<canvas id="canvas405" data-uid="canvas405" class="canvas" style="touch-action: none;" width="690" height="150"></canvas>
Failed in beta 2 rendered like this:
<canvas id="canvas341" data-uid="canvas341" class="canvas" style="touch-action: none;" width="125" height="125"></canvas>
- 1 bugbug?:open vendor, print report, go back it shows as savable all of a sudden despite no changes made in UI, also does not give dirty save prompt when leave it even though save icon is showing enabled bold - 1 bugbug?:open vendor, print report, go back it shows as savable all of a sudden despite no changes made in UI, also does not give dirty save prompt when leave it even though save icon is showing enabled bold
- 1 fixed?? changed to attachment files path : for some reason user files path is blank in server settings under ops in ayanova app on linux desktop when using the single data path folder, check in windows - 1 fixed?? changed to attachment files path : for some reason user files path is blank in server settings under ops in ayanova app on linux desktop when using the single data path folder, check in windows
- 1 todo: First print if it's downloading or will need to download chromium it should state there will be a delay while it attempts to download and install chromium render engine - 1 todo: First print if it's downloading or will need to download chromium it should state there will be a delay while it attempts to download and install chromium render engine

View File

@@ -13,7 +13,12 @@
<v-btn v-if="!readonly" icon class="ml-n1 mr-2"> <v-btn v-if="!readonly" icon class="ml-n1 mr-2">
<v-icon>$ayiEdit</v-icon> <v-icon>$ayiEdit</v-icon>
</v-btn> </v-btn>
<img class="grey lighten-5" height="40px" :src="imgUrl" /> <img
class="grey lighten-5"
width="100px"
height="50px"
:src="imgUrl"
/>
</v-row> </v-row>
</div> </div>
</template> </template>
@@ -54,12 +59,27 @@
}}</span> }}</span>
</div> </div>
</template> </template>
<vueSignature <v-sheet v-if="$vuetify.breakpoint.xs" width="275px" height="137px">
ref="sigCtrl" <vueSignature
:sig-option="sigOption" ref="sigCtrl"
:disabled="disabled || imgUrl != null" :sig-option="sigOption"
:default-url="imgUrl" :disabled="disabled || imgUrl != null"
></vueSignature> :default-url="imgUrl"
:w="'275px'"
:h="'137px'"
></vueSignature>
</v-sheet>
<v-sheet v-else width="500px" height="250px">
<vueSignature
ref="sigCtrl"
:sig-option="sigOption"
:disabled="disabled || imgUrl != null"
:default-url="imgUrl"
:w="'500px'"
:h="'250px'"
></vueSignature>
</v-sheet>
{{ sigDateLocalized }} {{ sigDateLocalized }}
<template v-if="variant == 'customer'"> <template v-if="variant == 'customer'">
<div <div