This commit is contained in:
2023-07-26 09:39:15 +02:00
parent 3a2926e6fc
commit b485e159eb
2 changed files with 6 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
<script setup lang="ts"> <script setup lang="ts">
import { iskFormat } from '@/utils'; import { iskFormater } from '@/utils';
import { ref } from 'vue'; import { ref } from 'vue';
import ReprocessInput from './ReprocessInput.vue'; import ReprocessInput from './ReprocessInput.vue';
import { ReprocessItemValues, reprocess } from './reprocess'; import { ReprocessItemValues, reprocess } from './reprocess';
@@ -42,10 +42,10 @@ const send = async () => result.value = await reprocess(items.value, minerals.va
<tbody> <tbody>
<tr v-for="r in result" :key="r.typeID" :class="{'bg-green-200': r.buy_reprocess >= r.sell}"> <tr v-for="r in result" :key="r.typeID" :class="{'bg-green-200': r.buy_reprocess >= r.sell}">
<td class="border px-1">{{ r.typeID }}</td> <td class="border px-1">{{ r.typeID }}</td>
<td class="border text-right px-1">{{ iskFormat(r.buy) }}</td> <td class="border text-right px-1">{{ iskFormater.format(r.buy) }}</td>
<td class="border text-right px-1">{{ iskFormat(r.buy_reprocess) }}</td> <td class="border text-right px-1">{{ iskFormater.format(r.buy_reprocess) }}</td>
<td class="border text-right px-1">{{ iskFormat(r.sell) }}</td> <td class="border text-right px-1">{{ iskFormater.format(r.sell) }}</td>
<td class="border text-right px-1">{{ iskFormat(r.sell_reprocess) }}</td> <td class="border text-right px-1">{{ iskFormater.format(r.sell_reprocess) }}</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>

View File

@@ -1,7 +1,5 @@
const iskFormater = new Intl.NumberFormat("is-IS", { export const iskFormater = new Intl.NumberFormat("is-IS", {
style: "currency", style: "currency",
currency: "ISK", currency: "ISK",
minimumFractionDigits: 2, minimumFractionDigits: 2,
}); });
export const iskFormat = iskFormater.format;