This commit is contained in:
@@ -235,6 +235,17 @@ TODO: 1 BETA DOCS:
|
||||
|
||||
|
||||
- 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 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
|
||||
|
||||
@@ -13,7 +13,12 @@
|
||||
<v-btn v-if="!readonly" icon class="ml-n1 mr-2">
|
||||
<v-icon>$ayiEdit</v-icon>
|
||||
</v-btn>
|
||||
<img class="grey lighten-5" height="40px" :src="imgUrl" />
|
||||
<img
|
||||
class="grey lighten-5"
|
||||
width="100px"
|
||||
height="50px"
|
||||
:src="imgUrl"
|
||||
/>
|
||||
</v-row>
|
||||
</div>
|
||||
</template>
|
||||
@@ -54,12 +59,27 @@
|
||||
}}</span>
|
||||
</div>
|
||||
</template>
|
||||
<vueSignature
|
||||
ref="sigCtrl"
|
||||
:sig-option="sigOption"
|
||||
:disabled="disabled || imgUrl != null"
|
||||
:default-url="imgUrl"
|
||||
></vueSignature>
|
||||
<v-sheet v-if="$vuetify.breakpoint.xs" width="275px" height="137px">
|
||||
<vueSignature
|
||||
ref="sigCtrl"
|
||||
:sig-option="sigOption"
|
||||
:disabled="disabled || imgUrl != null"
|
||||
: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 }}
|
||||
<template v-if="variant == 'customer'">
|
||||
<div
|
||||
|
||||
Reference in New Issue
Block a user