This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script setup> | |
import { ref, inject, onMounted } from 'vue'; | |
import { formatRFC3339, uuidv4 } from "assetlink-plugin-api"; | |
import { useRouter } from 'vue-router' | |
const router = useRouter(); | |
const assetLink = inject('assetLink'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script setup> | |
import { ref, computed } from 'vue'; | |
import { useDialogPluginComponent, date } from 'quasar' | |
const props = defineProps({ | |
asset: { | |
type: Object, | |
required: true, | |
}, | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script setup> | |
import { ref, inject } from 'vue'; | |
import { formatRFC3339, uuidv4 } from "assetlink-plugin-api"; | |
const assetLink = inject('assetLink'); | |
const loadingUnitTerm = ref(true); | |
let inchesUnitTerm = undefined; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script setup> | |
import { computed, inject, ref, onMounted, onUnmounted } from 'vue'; | |
import { currentEpochSecond, parseJSONDate } from "assetlink-plugin-api"; | |
import { useRouter } from 'vue-router' | |
const router = useRouter(); | |
const props = defineProps({ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script setup> | |
import { inject, ref, watch } from 'vue'; | |
const props = defineProps({ | |
asset: { | |
type: Object, | |
required: false, | |
}, | |
}); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"plugins": [ | |
{ | |
"url": "https://gist.githubusercontent.com/symbioquine/370e0a2b6797564a3a3f3985b099aa2c/raw/77470fc15b3caccffc142809337f2efd5d943553/AddNewBalesToInventory.alink.vue" | |
}, | |
{ | |
"url": "https://gist.githubusercontent.com/symbioquine/7f1d67f504ab427c5d7e673baee01c65/raw/5a219422aa18709bab6bc71f9af4c1cfaae66577/RecordEggHarvestAssetActionProvider.alink.vue" | |
}, | |
{ | |
"url": "https://gist.githubusercontent.com/symbioquine/9a6921914a70f56792e04056b5fc0ce1/raw/6cd1246dd7bce4059d7d12470d5515aa71162620/LogChangedEquipmentOil.alink.act.json" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script setup> | |
import { ref } from 'vue'; | |
import { useDialogPluginComponent } from 'quasar' | |
const props = defineProps({ | |
asset: { | |
type: Object, | |
required: true, | |
}, | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script setup> | |
import { ref } from 'vue'; | |
import { useDialogPluginComponent } from 'quasar' | |
const props = defineProps({ | |
asset: { | |
type: Object, | |
required: true, | |
}, | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"AssetLinkPluginFormat": "com.example.farmos_asset_link.plugin_format.v0.basic_asset_log", | |
"id": "log_changed_equipment_oil", | |
"name": "Log: Changed oil", | |
"appliesTo": { | |
"type": "asset--equipment", | |
"attributes.archived": "$null" | |
}, | |
"createLog": { | |
"type": "log--activity", |
NewerOlder