Compare commits
36 Commits
feat/langu
...
v0.0.5
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3c89e75a34 | ||
|
|
5594356166 | ||
|
|
cea08a59be | ||
|
|
f16ed1a39f | ||
|
|
66032fcf55 | ||
|
|
34a9d56726 | ||
|
|
a0880ad5b6 | ||
|
|
17e8e5914e | ||
|
|
a14f298822 | ||
|
|
afe4078897 | ||
|
|
01f9b455cf | ||
|
|
c9c06f865c | ||
|
|
e2c14afc99 | ||
|
|
415d0abc83 | ||
|
|
d32fd8073d | ||
|
|
d6eab70ca6 | ||
|
|
cc82536970 | ||
|
|
094cf0d7c9 | ||
|
|
24f295c632 | ||
|
|
e9812e7e27 | ||
|
|
785ff9a089 | ||
|
|
b99c3921d7 | ||
|
|
d64777dca6 | ||
|
|
5208437ec2 | ||
|
|
654087b990 | ||
|
|
d294db34fc | ||
|
|
9f9f90fd1d | ||
|
|
051e3476a7 | ||
|
|
845dcb242a | ||
|
|
df165dae6e | ||
|
|
e389a9ac2a | ||
|
|
e2e4169787 | ||
|
|
2a8325c6ce | ||
|
|
cd2e9ebc61 | ||
|
|
1ac3a8b31b | ||
|
|
f07922763b |
@@ -1,4 +1,4 @@
|
|||||||
ARG GO_VERSION=1.16.2
|
ARG GO_VERSION=1.20.6
|
||||||
FROM golang:${GO_VERSION}-alpine AS builder
|
FROM golang:${GO_VERSION}-alpine AS builder
|
||||||
RUN apk update && apk add alpine-sdk git && rm -rf /var/cache/apk/*
|
RUN apk update && apk add alpine-sdk git && rm -rf /var/cache/apk/*
|
||||||
RUN mkdir -p /api
|
RUN mkdir -p /api
|
||||||
@@ -9,7 +9,7 @@ RUN go mod download
|
|||||||
COPY ./server .
|
COPY ./server .
|
||||||
RUN go build -o ./app ./main.go
|
RUN go build -o ./app ./main.go
|
||||||
|
|
||||||
FROM node:14 as build-stage
|
FROM node:16-alpine as build-stage
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY ./ui/package*.json ./
|
COPY ./ui/package*.json ./
|
||||||
RUN npm install
|
RUN npm install
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
<p align="center">
|
<p align="center">
|
||||||
<h1 align="center" style="margin-bottom:0">Hammond</h1>
|
<h1 align="center" style="margin-bottom:0">Hammond</h1>
|
||||||
<p align="center">Current Version - 2022.07.06</p>
|
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
A self-hosted vehicle expense tracking system with support for multiple users.
|
A self-hosted vehicle expense tracking system with support for multiple users.
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import (
|
|||||||
"net/http"
|
"net/http"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
|
||||||
|
"hammond/models"
|
||||||
"hammond/service"
|
"hammond/service"
|
||||||
|
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
@@ -12,6 +13,7 @@ import (
|
|||||||
func RegisteImportController(router *gin.RouterGroup) {
|
func RegisteImportController(router *gin.RouterGroup) {
|
||||||
router.POST("/import/fuelly", fuellyImport)
|
router.POST("/import/fuelly", fuellyImport)
|
||||||
router.POST("/import/drivvo", drivvoImport)
|
router.POST("/import/drivvo", drivvoImport)
|
||||||
|
router.POST("/import/generic", genericImport)
|
||||||
}
|
}
|
||||||
|
|
||||||
func fuellyImport(c *gin.Context) {
|
func fuellyImport(c *gin.Context) {
|
||||||
@@ -52,3 +54,21 @@ func drivvoImport(c *gin.Context) {
|
|||||||
}
|
}
|
||||||
c.JSON(http.StatusOK, gin.H{})
|
c.JSON(http.StatusOK, gin.H{})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func genericImport(c *gin.Context) {
|
||||||
|
var json models.ImportData
|
||||||
|
if err := c.ShouldBindJSON(&json); err != nil {
|
||||||
|
c.JSON(http.StatusBadRequest, gin.H{"error": err.Error()})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if json.VehicleId == "" {
|
||||||
|
c.JSON(http.StatusUnprocessableEntity, "Missing Vehicle ID")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
errors := service.GenericImport(json, c.MustGet("userId").(string))
|
||||||
|
if len(errors) > 0 {
|
||||||
|
c.JSON(http.StatusUnprocessableEntity, gin.H{"errors": errors})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
c.JSON(http.StatusOK, gin.H{})
|
||||||
|
}
|
||||||
|
|||||||
@@ -19,7 +19,6 @@ func RegisterAnonMasterConroller(router *gin.RouterGroup) {
|
|||||||
"distanceUnits": db.DistanceUnitDetails,
|
"distanceUnits": db.DistanceUnitDetails,
|
||||||
"roles": db.RoleDetails,
|
"roles": db.RoleDetails,
|
||||||
"currencies": models.GetCurrencyMasterList(),
|
"currencies": models.GetCurrencyMasterList(),
|
||||||
"languages": models.GetLanguageMastersList(),
|
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@@ -53,7 +52,7 @@ func udpateSettings(c *gin.Context) {
|
|||||||
func udpateMySettings(c *gin.Context) {
|
func udpateMySettings(c *gin.Context) {
|
||||||
var model models.UpdateSettingModel
|
var model models.UpdateSettingModel
|
||||||
if err := c.ShouldBind(&model); err == nil {
|
if err := c.ShouldBind(&model); err == nil {
|
||||||
err := service.UpdateUserSettings(c.MustGet("userId").(string), model.Currency, *model.DistanceUnit, model.DateFormat, model.Language)
|
err := service.UpdateUserSettings(c.MustGet("userId").(string), model.Currency, *model.DistanceUnit, model.DateFormat)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
c.JSON(http.StatusUnprocessableEntity, common.NewError("udpateMySettings", err))
|
c.JSON(http.StatusUnprocessableEntity, common.NewError("udpateMySettings", err))
|
||||||
return
|
return
|
||||||
|
|||||||
@@ -19,7 +19,6 @@ type User struct {
|
|||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
Vehicles []Vehicle `gorm:"many2many:user_vehicles;" json:"vehicles"`
|
Vehicles []Vehicle `gorm:"many2many:user_vehicles;" json:"vehicles"`
|
||||||
IsDisabled bool `json:"isDisabled"`
|
IsDisabled bool `json:"isDisabled"`
|
||||||
Language string `json:"language"`
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (b *User) MarshalJSON() ([]byte, error) {
|
func (b *User) MarshalJSON() ([]byte, error) {
|
||||||
|
|||||||
@@ -27,10 +27,6 @@ var migrations = []localMigration{
|
|||||||
Name: "2022_03_08_13_16_AddVIN",
|
Name: "2022_03_08_13_16_AddVIN",
|
||||||
Query: "ALTER TABLE vehicles ADD COLUMN vin text",
|
Query: "ALTER TABLE vehicles ADD COLUMN vin text",
|
||||||
},
|
},
|
||||||
{
|
|
||||||
Name: "2023_02_26_13_42_AddLanguage",
|
|
||||||
Query: "ALTER TABLE users ADD COLUMN language text default 'en'",
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func RunMigrations() {
|
func RunMigrations() {
|
||||||
|
|||||||
22
server/models/import.go
Normal file
22
server/models/import.go
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
package models
|
||||||
|
|
||||||
|
type ImportData struct {
|
||||||
|
Data []ImportFillup `json:"data" binding:"required"`
|
||||||
|
VehicleId string `json:"vehicleId" binding:"required"`
|
||||||
|
TimeZone string `json:"timezone" binding:"required"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type ImportFillup struct {
|
||||||
|
VehicleID string `json:"vehicleId"`
|
||||||
|
FuelQuantity float32 `json:"fuelQuantity"`
|
||||||
|
PerUnitPrice float32 `json:"perUnitPrice"`
|
||||||
|
TotalAmount float32 `json:"totalAmount"`
|
||||||
|
OdoReading int `json:"odoReading"`
|
||||||
|
IsTankFull *bool `json:"isTankFull"`
|
||||||
|
HasMissedFillup *bool `json:"hasMissedFillup"`
|
||||||
|
Comments string `json:"comments"`
|
||||||
|
FillingStation string `json:"fillingStation"`
|
||||||
|
UserID string `json:"userId"`
|
||||||
|
Date string `json:"date"`
|
||||||
|
FuelSubType string `json:"fuelSubType"`
|
||||||
|
}
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
package models
|
|
||||||
|
|
||||||
type LanguageModel struct {
|
|
||||||
Emoji string `json:"emoji"`
|
|
||||||
Name string `json:"name"`
|
|
||||||
NameNative string `json:"nameNative"`
|
|
||||||
Shorthand string `json:"shorthand"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func GetLanguageMastersList() []LanguageModel {
|
|
||||||
return []LanguageModel{
|
|
||||||
{
|
|
||||||
Emoji: "🇬🇧",
|
|
||||||
Name: "English",
|
|
||||||
NameNative: "English",
|
|
||||||
Shorthand: "en",
|
|
||||||
}, {
|
|
||||||
Emoji: "🇩🇪",
|
|
||||||
Name: "German",
|
|
||||||
NameNative: "Deutsch",
|
|
||||||
Shorthand: "de",
|
|
||||||
},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -6,7 +6,6 @@ type UpdateSettingModel struct {
|
|||||||
Currency string `json:"currency" form:"currency" query:"currency"`
|
Currency string `json:"currency" form:"currency" query:"currency"`
|
||||||
DateFormat string `json:"dateFormat" form:"dateFormat" query:"dateFormat"`
|
DateFormat string `json:"dateFormat" form:"dateFormat" query:"dateFormat"`
|
||||||
DistanceUnit *db.DistanceUnit `json:"distanceUnit" form:"distanceUnit" query:"distanceUnit" `
|
DistanceUnit *db.DistanceUnit `json:"distanceUnit" form:"distanceUnit" query:"distanceUnit" `
|
||||||
Language string `json:"language" form:"language" query:"language"`
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type ClarksonMigrationModel struct {
|
type ClarksonMigrationModel struct {
|
||||||
|
|||||||
47
server/service/genericImportService.go
Normal file
47
server/service/genericImportService.go
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
package service
|
||||||
|
|
||||||
|
import (
|
||||||
|
"hammond/db"
|
||||||
|
"hammond/models"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
func GenericParseRefuelings(content []models.ImportFillup, user *db.User, vehicle *db.Vehicle, timezone string) ([]db.Fillup, []string) {
|
||||||
|
var errors []string
|
||||||
|
var fillups []db.Fillup
|
||||||
|
dateLayout := "2006-01-02T15:04:05.000Z"
|
||||||
|
loc, _ := time.LoadLocation(timezone)
|
||||||
|
for _, record := range content {
|
||||||
|
date, err := time.ParseInLocation(dateLayout, record.Date, loc)
|
||||||
|
if err != nil {
|
||||||
|
date = time.Date(2000, time.December, 0, 0, 0, 0, 0, loc)
|
||||||
|
}
|
||||||
|
|
||||||
|
var missedFillup bool
|
||||||
|
if record.HasMissedFillup == nil {
|
||||||
|
missedFillup = false
|
||||||
|
} else {
|
||||||
|
missedFillup = *record.HasMissedFillup
|
||||||
|
}
|
||||||
|
|
||||||
|
fillups = append(fillups, db.Fillup{
|
||||||
|
VehicleID: vehicle.ID,
|
||||||
|
UserID: user.ID,
|
||||||
|
Date: date,
|
||||||
|
IsTankFull: record.IsTankFull,
|
||||||
|
HasMissedFillup: &missedFillup,
|
||||||
|
FuelQuantity: float32(record.FuelQuantity),
|
||||||
|
PerUnitPrice: float32(record.PerUnitPrice),
|
||||||
|
FillingStation: record.FillingStation,
|
||||||
|
OdoReading: record.OdoReading,
|
||||||
|
TotalAmount: float32(record.TotalAmount),
|
||||||
|
FuelUnit: vehicle.FuelUnit,
|
||||||
|
Currency: user.Currency,
|
||||||
|
DistanceUnit: user.DistanceUnit,
|
||||||
|
Comments: record.Comments,
|
||||||
|
Source: "Generic Import",
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
return fillups, errors
|
||||||
|
}
|
||||||
@@ -4,6 +4,7 @@ import (
|
|||||||
"bytes"
|
"bytes"
|
||||||
|
|
||||||
"hammond/db"
|
"hammond/db"
|
||||||
|
"hammond/models"
|
||||||
)
|
)
|
||||||
|
|
||||||
func WriteToDB(fillups []db.Fillup, expenses []db.Expense) []string {
|
func WriteToDB(fillups []db.Fillup, expenses []db.Expense) []string {
|
||||||
@@ -105,3 +106,27 @@ func FuellyImport(content []byte, userId string) []string {
|
|||||||
|
|
||||||
return WriteToDB(fillups, expenses)
|
return WriteToDB(fillups, expenses)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func GenericImport(content models.ImportData, userId string) []string {
|
||||||
|
var errors []string
|
||||||
|
user, err := GetUserById(userId)
|
||||||
|
if err != nil {
|
||||||
|
errors = append(errors, err.Error())
|
||||||
|
return errors
|
||||||
|
}
|
||||||
|
|
||||||
|
vehicle, err := GetVehicleById(content.VehicleId)
|
||||||
|
if err != nil {
|
||||||
|
errors = append(errors, err.Error())
|
||||||
|
return errors
|
||||||
|
}
|
||||||
|
|
||||||
|
var fillups []db.Fillup
|
||||||
|
fillups, errors = GenericParseRefuelings(content.Data, user, vehicle, content.TimeZone)
|
||||||
|
|
||||||
|
if len(errors) != 0 {
|
||||||
|
return errors
|
||||||
|
}
|
||||||
|
|
||||||
|
return WriteToDB(fillups, nil)
|
||||||
|
}
|
||||||
@@ -1,9 +1,7 @@
|
|||||||
package service
|
package service
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"errors"
|
|
||||||
"hammond/db"
|
"hammond/db"
|
||||||
"hammond/models"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func CanInitializeSystem() (bool, error) {
|
func CanInitializeSystem() (bool, error) {
|
||||||
@@ -16,30 +14,15 @@ func UpdateSettings(currency string, distanceUnit db.DistanceUnit) error {
|
|||||||
setting.DistanceUnit = distanceUnit
|
setting.DistanceUnit = distanceUnit
|
||||||
return db.UpdateSettings(setting)
|
return db.UpdateSettings(setting)
|
||||||
}
|
}
|
||||||
func UpdateUserSettings(userId, currency string, distanceUnit db.DistanceUnit, dateFormat string, language string) error {
|
func UpdateUserSettings(userId, currency string, distanceUnit db.DistanceUnit, dateFormat string) error {
|
||||||
user, err := db.GetUserById(userId)
|
user, err := db.GetUserById(userId)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: Pull into function
|
|
||||||
languageExists := false
|
|
||||||
languages := models.GetLanguageMastersList();
|
|
||||||
for _, lang := range languages {
|
|
||||||
if (language == lang.Shorthand){
|
|
||||||
languageExists = true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!languageExists) {
|
|
||||||
return errors.New("Language not in masters list")
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
user.Currency = currency
|
user.Currency = currency
|
||||||
user.DistanceUnit = distanceUnit
|
user.DistanceUnit = distanceUnit
|
||||||
user.DateFormat = dateFormat
|
user.DateFormat = dateFormat
|
||||||
user.Language = language
|
|
||||||
return db.UpdateUser(user)
|
return db.UpdateUser(user)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -36,6 +36,7 @@
|
|||||||
"node-gyp": "^9.3.1",
|
"node-gyp": "^9.3.1",
|
||||||
"normalize.css": "^8.0.1",
|
"normalize.css": "^8.0.1",
|
||||||
"nprogress": "^0.2.0",
|
"nprogress": "^0.2.0",
|
||||||
|
"papaparse": "^5.4.1",
|
||||||
"vue": "^2.6.11",
|
"vue": "^2.6.11",
|
||||||
"vue-chartjs": "^3.5.1",
|
"vue-chartjs": "^3.5.1",
|
||||||
"vue-i18n": "^8.28.2",
|
"vue-i18n": "^8.28.2",
|
||||||
|
|||||||
@@ -137,7 +137,7 @@
|
|||||||
"dontimportagain": "Achte darauf, dass du die Datei nicht erneut importierst, da dies zu mehrfachen Einträgen führen würde.",
|
"dontimportagain": "Achte darauf, dass du die Datei nicht erneut importierst, da dies zu mehrfachen Einträgen führen würde.",
|
||||||
"checkpointsimportcsv": "Wenn du alle diese Punkte überprüft hast kannst du unten die CSV importieren.",
|
"checkpointsimportcsv": "Wenn du alle diese Punkte überprüft hast kannst du unten die CSV importieren.",
|
||||||
"importhintunits": "Vergewissere dich ebenfalls, dass die <u>Kraftstoffeinheit</u> und der <u>Kraftstofftyp</u> im Fahrzeug richtig eingestellt sind.",
|
"importhintunits": "Vergewissere dich ebenfalls, dass die <u>Kraftstoffeinheit</u> und der <u>Kraftstofftyp</u> im Fahrzeug richtig eingestellt sind.",
|
||||||
"importhintcurrdist": "Stelle sicher, dass die <u>Währung</u> und die <u>Entfernungseinheit</u> in Hammond korrekt eingestellt sind. Der Import erkennt die Währung nicht automatisch aus der CSV-Datei, sondern verwendet die für den Benutzer eingestellte Währung.",
|
"importhintcurrdist": "Stelle sicher, dass die <u>Währung</u> und die <u>Entfernungseinheit</u> in Hammond korrekt eingestellt sind. Der Import erkennt die Währung nicht automatisch aus der datei, sondern verwendet die für den Benutzer eingestellte Währung.",
|
||||||
"importhintnickname": "Vergewissere dich, dass der Fahrzeugname in Hammond genau mit dem Namen in der Fuelly-CSV-Datei übereinstimmt, sonst funktioniert der Import nicht.",
|
"importhintnickname": "Vergewissere dich, dass der Fahrzeugname in Hammond genau mit dem Namen in der Fuelly-CSV-Datei übereinstimmt, sonst funktioniert der Import nicht.",
|
||||||
"importhintvehiclecreated": "Vergewissere dich, dass du die Fahrzeuge bereits in Hammond erstellt hast.",
|
"importhintvehiclecreated": "Vergewissere dich, dass du die Fahrzeuge bereits in Hammond erstellt hast.",
|
||||||
"importhintcreatecsv": "Exportiere deine Daten aus {name} im CSV-Format. Die Schritte dazu findest du",
|
"importhintcreatecsv": "Exportiere deine Daten aus {name} im CSV-Format. Die Schritte dazu findest du",
|
||||||
|
|||||||
@@ -43,15 +43,15 @@
|
|||||||
"createnow": "Create Now",
|
"createnow": "Create Now",
|
||||||
"yourvehicles": "Your Vehicles",
|
"yourvehicles": "Your Vehicles",
|
||||||
"menu": {
|
"menu": {
|
||||||
"quickentries": "Quick Entries",
|
"quickentries": "Quick Entries",
|
||||||
"logout": "Log out",
|
"logout": "Log out",
|
||||||
"import": "Import",
|
"import": "Import",
|
||||||
"home": "Home",
|
"home": "Home",
|
||||||
"settings": "Settings",
|
"settings": "Settings",
|
||||||
"admin": "Admin",
|
"admin": "Admin",
|
||||||
"sitesettings": "Site Settings",
|
"sitesettings": "Site Settings",
|
||||||
"users": "Users",
|
"users": "Users",
|
||||||
"login": "Log in"
|
"login": "Log in"
|
||||||
},
|
},
|
||||||
"enterusername": "Enter your username",
|
"enterusername": "Enter your username",
|
||||||
"enterpassword": "Enter your password",
|
"enterpassword": "Enter your password",
|
||||||
@@ -81,34 +81,34 @@
|
|||||||
"quantity": "Quantity",
|
"quantity": "Quantity",
|
||||||
"gasstation": "Gas Station",
|
"gasstation": "Gas Station",
|
||||||
"fuel": {
|
"fuel": {
|
||||||
"petrol": "Petrol",
|
"petrol": "Petrol",
|
||||||
"diesel": "Diesel",
|
"diesel": "Diesel",
|
||||||
"cng": "CNG",
|
"cng": "CNG",
|
||||||
"lpg": "LPG",
|
"lpg": "LPG",
|
||||||
"electric": "Electric",
|
"electric": "Electric",
|
||||||
"ethanol": "Ethanol"
|
"ethanol": "Ethanol"
|
||||||
},
|
},
|
||||||
"unit": {
|
"unit": {
|
||||||
"long": {
|
"long": {
|
||||||
"litre": "Litre",
|
"litre": "Litre",
|
||||||
"gallon": "Gallon",
|
"gallon": "Gallon",
|
||||||
"kilowatthour": "Kilowatt Hour",
|
"kilowatthour": "Kilowatt Hour",
|
||||||
"kilogram": "Kilogram",
|
"kilogram": "Kilogram",
|
||||||
"usgallon": "US Gallon",
|
"usgallon": "US Gallon",
|
||||||
"minutes": "Minutes",
|
"minutes": "Minutes",
|
||||||
"kilometers": "Kilometers",
|
"kilometers": "Kilometers",
|
||||||
"miles": "Miles"
|
"miles": "Miles"
|
||||||
},
|
},
|
||||||
"short": {
|
"short": {
|
||||||
"litre": "Lt",
|
"litre": "Lt",
|
||||||
"gallon": "Gal",
|
"gallon": "Gal",
|
||||||
"kilowatthour": "KwH",
|
"kilowatthour": "KwH",
|
||||||
"kilogram": "Kg",
|
"kilogram": "Kg",
|
||||||
"usgallon": "US Gal",
|
"usgallon": "US Gal",
|
||||||
"minutes": "Mins",
|
"minutes": "Mins",
|
||||||
"kilometers": "Km",
|
"kilometers": "Km",
|
||||||
"miles": "Mi"
|
"miles": "Mi"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"avgfillupqty": "Avg Fillup Qty",
|
"avgfillupqty": "Avg Fillup Qty",
|
||||||
"avgfillupexpense": "Avg Fillup Expense",
|
"avgfillupexpense": "Avg Fillup Expense",
|
||||||
@@ -117,7 +117,9 @@
|
|||||||
"price": "Price",
|
"price": "Price",
|
||||||
"total": "Total",
|
"total": "Total",
|
||||||
"fulltank": "Tank Full",
|
"fulltank": "Tank Full",
|
||||||
|
"partialfillup": "Partial Fillup",
|
||||||
"getafulltank": "Did you get a full tank?",
|
"getafulltank": "Did you get a full tank?",
|
||||||
|
"tankpartialfull": "Which do you track?",
|
||||||
"by": "By",
|
"by": "By",
|
||||||
"expenses": "Expenses",
|
"expenses": "Expenses",
|
||||||
"expensetype": "Expense Type",
|
"expensetype": "Expense Type",
|
||||||
@@ -130,6 +132,8 @@
|
|||||||
"importdatadesc": "Choose from the following options to import data into Hammond",
|
"importdatadesc": "Choose from the following options to import data into Hammond",
|
||||||
"import": "Import",
|
"import": "Import",
|
||||||
"importcsv": "If you have been using {name} to store your vehicle data, export the CSV file from {name} and click here to import.",
|
"importcsv": "If you have been using {name} to store your vehicle data, export the CSV file from {name} and click here to import.",
|
||||||
|
"importgeneric": "Generic Fillups Import",
|
||||||
|
"importgenericdesc": "Fillups CSV import.",
|
||||||
"choosecsv": "Choose CSV",
|
"choosecsv": "Choose CSV",
|
||||||
"choosephoto": "Choose Photo",
|
"choosephoto": "Choose Photo",
|
||||||
"importsuccessfull": "Data Imported Successfully",
|
"importsuccessfull": "Data Imported Successfully",
|
||||||
@@ -137,13 +141,15 @@
|
|||||||
"importfrom": "Import from {0}",
|
"importfrom": "Import from {0}",
|
||||||
"stepstoimport": "Steps to import data from {name}",
|
"stepstoimport": "Steps to import data from {name}",
|
||||||
"choosecsvimport": "Choose the {name} CSV and press the import button.",
|
"choosecsvimport": "Choose the {name} CSV and press the import button.",
|
||||||
|
"choosedatafile": "Choose the CSV file and then press the import button.",
|
||||||
"dontimportagain": "Make sure that you do not import the file again because that will create repeat entries.",
|
"dontimportagain": "Make sure that you do not import the file again because that will create repeat entries.",
|
||||||
"checkpointsimportcsv": "Once you have checked all these points, just import the CSV below.",
|
"checkpointsimportcsv": "Once you have checked all these points, just import the CSV below.",
|
||||||
"importhintunits": "Similiarly, make sure that the <u>Fuel Unit</u> and <u>Fuel Type</u> are correctly set in the Vehicle.",
|
"importhintunits": "Similiarly, make sure that the <u>Fuel Unit</u> and <u>Fuel Type</u> are correctly set in the Vehicle.",
|
||||||
"importhintcurrdist": "Make sure that the <u>Currency</u> and <u>Distance Unit</u> are set correctly in Hammond. Import will not autodetect Currency from the CSV but use the one set for the user.",
|
"importhintcurrdist": "Make sure that the <u>Currency</u> and <u>Distance Unit</u> are set correctly in Hammond. Import will not autodetect Currency from the file but use the one set for the user.",
|
||||||
"importhintnickname": "Make sure that the Vehicle nickname in Hammond is exactly the same as the name on Fuelly CSV or the import will not work.",
|
"importhintnickname": "Make sure that the Vehicle nickname in Hammond is exactly the same as the name on Fuelly CSV or the import will not work.",
|
||||||
"importhintvehiclecreated": "Make sure that you have already created the vehicles in Hammond platform.",
|
"importhintvehiclecreated": "Make sure that you have already created the vehicles in Hammond platform.",
|
||||||
"importhintcreatecsv": "Export your data from {name} in the CSV format. Steps to do that can be found",
|
"importhintcreatecsv": "Export your data from {name} in the CSV format. Steps to do that can be found",
|
||||||
|
"importgenerichintdata": "Data must be in CSV format.",
|
||||||
"here": "here",
|
"here": "here",
|
||||||
"unprocessedquickentries": "You have one quick entry to be processed. | You have {0} quick entries pending to be processed.",
|
"unprocessedquickentries": "You have one quick entry to be processed. | You have {0} quick entries pending to be processed.",
|
||||||
"show": "Show",
|
"show": "Show",
|
||||||
@@ -178,6 +184,7 @@
|
|||||||
"fillingstation": "Filling Station Name",
|
"fillingstation": "Filling Station Name",
|
||||||
"comments": "Comments",
|
"comments": "Comments",
|
||||||
"missfillupbefore": "Did you miss the fillup entry before this one?",
|
"missfillupbefore": "Did you miss the fillup entry before this one?",
|
||||||
|
"missedfillup": "Missed Fillup",
|
||||||
"fillupdate": "Fillup Date",
|
"fillupdate": "Fillup Date",
|
||||||
"fillupsavedsuccessfully": "Fillup Saved Successfully",
|
"fillupsavedsuccessfully": "Fillup Saved Successfully",
|
||||||
"expensesavedsuccessfully": "Expense Saved Successfully",
|
"expensesavedsuccessfully": "Expense Saved Successfully",
|
||||||
@@ -195,25 +202,25 @@
|
|||||||
"testconn": "Test Connection",
|
"testconn": "Test Connection",
|
||||||
"migrate": "Migrate",
|
"migrate": "Migrate",
|
||||||
"init": {
|
"init": {
|
||||||
"migrateclarkson": "Migrate from Clarkson",
|
"migrateclarkson": "Migrate from Clarkson",
|
||||||
"migrateclarksondesc": "If you have an existing Clarkson deployment and you want to migrate your data from that, press the following button.",
|
"migrateclarksondesc": "If you have an existing Clarkson deployment and you want to migrate your data from that, press the following button.",
|
||||||
"freshinstall": "Fresh Install",
|
"freshinstall": "Fresh Install",
|
||||||
"freshinstalldesc": "If you want a fresh install of Hammond, press the following button.",
|
"freshinstalldesc": "If you want a fresh install of Hammond, press the following button.",
|
||||||
"clarkson": {
|
"clarkson": {
|
||||||
"desc": "<p>You need to make sure that this deployment of Hammond can access the MySQL database used by Clarkson.</p><p>If that is not directly possible, you can make a copy of that database somewhere accessible from this instance.</p><p>Once that is done, enter the connection string to the MySQL instance in the following format.</p><p>All the users imported from Clarkson will have their username as their email in Clarkson database and pasword set to<span class='' style='font-weight:bold'>hammond</span></p><code>user:pass@tcp(127.0.0.1:3306)/dbname?charset=utf8mb4&parseTime=True&loc=Local</code><br/><br/>",
|
"desc": "<p>You need to make sure that this deployment of Hammond can access the MySQL database used by Clarkson.</p><p>If that is not directly possible, you can make a copy of that database somewhere accessible from this instance.</p><p>Once that is done, enter the connection string to the MySQL instance in the following format.</p><p>All the users imported from Clarkson will have their username as their email in Clarkson database and pasword set to<span class='' style='font-weight:bold'>hammond</span></p><code>user:pass@tcp(127.0.0.1:3306)/dbname?charset=utf8mb4&parseTime=True&loc=Local</code><br/><br/>",
|
||||||
"success": "We have successfully migrated the data from Clarkson. You will be redirected to the login screen shortly where you can login using your existing email and password : hammond"
|
"success": "We have successfully migrated the data from Clarkson. You will be redirected to the login screen shortly where you can login using your existing email and password : hammond"
|
||||||
},
|
},
|
||||||
"fresh": {
|
"fresh": {
|
||||||
"setupadminuser": "Setup Admin Users",
|
"setupadminuser": "Setup Admin Users",
|
||||||
"yourpassword": "Your Password",
|
"yourpassword": "Your Password",
|
||||||
"youremail": "Your Email",
|
"youremail": "Your Email",
|
||||||
"yourname": "Your Name",
|
"yourname": "Your Name",
|
||||||
"success": "You have been registered successfully. You will be redirected to the login screen shortly where you can login and start using the system."
|
"success": "You have been registered successfully. You will be redirected to the login screen shortly where you can login and start using the system."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"roles": {
|
"roles": {
|
||||||
"ADMIN": "ADMIN",
|
"ADMIN": "ADMIN",
|
||||||
"USER": "USER"
|
"USER": "USER"
|
||||||
},
|
},
|
||||||
"profile": "Profile",
|
"profile": "Profile",
|
||||||
"processedon": "Processed on",
|
"processedon": "Processed on",
|
||||||
@@ -221,4 +228,4 @@
|
|||||||
"disable": "Disable",
|
"disable": "Disable",
|
||||||
"confirm": "Go Ahead",
|
"confirm": "Go Ahead",
|
||||||
"labelforfile": "Label for this file"
|
"labelforfile": "Label for this file"
|
||||||
}
|
}
|
||||||
@@ -7,6 +7,7 @@ import {
|
|||||||
faCheck,
|
faCheck,
|
||||||
faTimes,
|
faTimes,
|
||||||
faArrowUp,
|
faArrowUp,
|
||||||
|
faArrowRotateLeft,
|
||||||
faAngleLeft,
|
faAngleLeft,
|
||||||
faAngleRight,
|
faAngleRight,
|
||||||
faCalendar,
|
faCalendar,
|
||||||
@@ -38,6 +39,7 @@ library.add(
|
|||||||
faCheck,
|
faCheck,
|
||||||
faTimes,
|
faTimes,
|
||||||
faArrowUp,
|
faArrowUp,
|
||||||
|
faArrowRotateLeft,
|
||||||
faAngleLeft,
|
faAngleLeft,
|
||||||
faAngleRight,
|
faAngleRight,
|
||||||
faCalendar,
|
faCalendar,
|
||||||
|
|||||||
@@ -419,6 +419,15 @@ export default [
|
|||||||
},
|
},
|
||||||
props: (route) => ({ user: store.state.auth.currentUser || {} }),
|
props: (route) => ({ user: store.state.auth.currentUser || {} }),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: '/import/generic',
|
||||||
|
name: 'import-generic',
|
||||||
|
component: () => lazyLoadView(import('@views/import-generic.vue')),
|
||||||
|
meta: {
|
||||||
|
authRequired: true,
|
||||||
|
},
|
||||||
|
props: (route) => ({ user: store.state.auth.currentUser || {} }),
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: '/logout',
|
path: '/logout',
|
||||||
name: 'logout',
|
name: 'logout',
|
||||||
|
|||||||
@@ -76,6 +76,9 @@ export default {
|
|||||||
this.fetchVehicleFuelSubTypes()
|
this.fetchVehicleFuelSubTypes()
|
||||||
if (!this.fillup.id) {
|
if (!this.fillup.id) {
|
||||||
this.fillupModel = this.getEmptyFillup()
|
this.fillupModel = this.getEmptyFillup()
|
||||||
|
if (this.vehicle.fillups.length > 0) {
|
||||||
|
this.fillupModel.odoReading = this.vehicle.fillups[0].odoReading
|
||||||
|
}
|
||||||
this.fillupModel.userId = this.me.id
|
this.fillupModel.userId = this.me.id
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -277,7 +280,15 @@ export default {
|
|||||||
</b-field>
|
</b-field>
|
||||||
<br />
|
<br />
|
||||||
<b-field>
|
<b-field>
|
||||||
<b-button tag="button" native-type="submit" :disabled="tryingToCreate" type="is-primary" :value="$t('save')" :label="$t('createfillup')" expanded/>
|
<b-button
|
||||||
|
tag="button"
|
||||||
|
native-type="submit"
|
||||||
|
:disabled="tryingToCreate"
|
||||||
|
type="is-primary"
|
||||||
|
:value="$t('save')"
|
||||||
|
:label="$t('createfillup')"
|
||||||
|
expanded
|
||||||
|
/>
|
||||||
<p v-if="authError">
|
<p v-if="authError">
|
||||||
There was an error logging in to your account.
|
There was an error logging in to your account.
|
||||||
</p>
|
</p>
|
||||||
|
|||||||
7
ui/src/router/views/import-generic.unit.js
Normal file
7
ui/src/router/views/import-generic.unit.js
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
import ImportGeneric from './import-generic'
|
||||||
|
|
||||||
|
describe('@views/import-generic', () => {
|
||||||
|
it('is a valid view', () => {
|
||||||
|
expect(ImportGeneric).toBeAViewComponent()
|
||||||
|
})
|
||||||
|
})
|
||||||
411
ui/src/router/views/import-generic.vue
Normal file
411
ui/src/router/views/import-generic.vue
Normal file
@@ -0,0 +1,411 @@
|
|||||||
|
<script>
|
||||||
|
import Layout from '@layouts/main.vue'
|
||||||
|
import { mapState } from 'vuex'
|
||||||
|
import axios from 'axios'
|
||||||
|
import Papa from 'papaparse'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
page: {
|
||||||
|
title: 'Generic Import',
|
||||||
|
meta: [{ name: 'description', content: 'The Generic Import page.' }],
|
||||||
|
},
|
||||||
|
components: { Layout },
|
||||||
|
props: {
|
||||||
|
user: {
|
||||||
|
type: Object,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data: function () {
|
||||||
|
return {
|
||||||
|
file: null,
|
||||||
|
tryingToCreate: false,
|
||||||
|
errors: [],
|
||||||
|
papaConfig: { dynamicTyping: true, skipEmptyLines: true, complete: this.assignResults },
|
||||||
|
fileData: null,
|
||||||
|
fileHeadings: null,
|
||||||
|
myVehicles: [],
|
||||||
|
selectedVehicle: null,
|
||||||
|
invertFullTank: null,
|
||||||
|
filledValueString: '',
|
||||||
|
notFilledValueString: '',
|
||||||
|
isFullTankString: false,
|
||||||
|
fileHeadingMap: {
|
||||||
|
fuelQuantity: null,
|
||||||
|
perUnitPrice: null,
|
||||||
|
totalAmount: null,
|
||||||
|
odoReading: null,
|
||||||
|
isTankFull: null,
|
||||||
|
hasMissedFillup: null,
|
||||||
|
comments: [], // [int]
|
||||||
|
fillingStation: null,
|
||||||
|
date: null,
|
||||||
|
fuelSubType: null,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
...mapState('utils', ['isMobile']),
|
||||||
|
...mapState('vehicles', ['vehicles']),
|
||||||
|
uploadButtonLabel() {
|
||||||
|
if (this.isMobile) {
|
||||||
|
if (this.file == null) {
|
||||||
|
return this.$t('choosephoto')
|
||||||
|
} else {
|
||||||
|
return ''
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (this.file == null) {
|
||||||
|
return this.$t('choosefile')
|
||||||
|
} else {
|
||||||
|
return ''
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.myVehicles = this.vehicles
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
assignResults(results, file) {
|
||||||
|
this.fileData = results.data
|
||||||
|
this.fileHeadings = results.data[0]
|
||||||
|
},
|
||||||
|
parseCSV() {
|
||||||
|
if (this.file == null) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
this.errorMessage = ''
|
||||||
|
Papa.parse(this.file, this.papaConfig)
|
||||||
|
},
|
||||||
|
getUsedHeadings() {
|
||||||
|
return Object.keys(this.fileHeadingMap).filter((k) => this.fileHeadingMap[k] != null) // filter non-null properties
|
||||||
|
},
|
||||||
|
getTimezone() {
|
||||||
|
return Intl.DateTimeFormat().resolvedOptions().timeZone
|
||||||
|
},
|
||||||
|
csvToJson() {
|
||||||
|
const data = []
|
||||||
|
const headings = this.getUsedHeadings().reduce((a, k) => ({ ...a, [k]: this.fileHeadingMap[k] }), {}) // create new object from filter
|
||||||
|
const comments = (row) => {
|
||||||
|
return this.fileHeadingMap.comments.reduce((a, fi) => {
|
||||||
|
// TODO: sanitize to prevent XSS
|
||||||
|
return `${a}${this.fileHeadings[fi]}: ${row[fi]}\n`
|
||||||
|
}, '')
|
||||||
|
}
|
||||||
|
const calculateTotal = (row) => {
|
||||||
|
return this.fileHeadingMap.totalAmount === -1
|
||||||
|
? row[this.fileHeadingMap.fuelQuantity] * row[this.fileHeadingMap.perUnitPrice]
|
||||||
|
: row[this.fileHeadingMap.totalAmount]
|
||||||
|
}
|
||||||
|
|
||||||
|
const setFullTank = (row) => {
|
||||||
|
if (row[this.fileHeadingMap.isTankFull].toLowerCase() === this.filledValueString.toLowerCase()) {
|
||||||
|
return true
|
||||||
|
} else if (row[this.fileHeadingMap.isTankFull].toLowerCase() === this.notFilledValueString.toLowerCase()) {
|
||||||
|
return false
|
||||||
|
} else {
|
||||||
|
// TODO: need to handle errors better
|
||||||
|
throw Error
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for (let r = 1; r < this.fileData.length; r++) {
|
||||||
|
const row = this.fileData[r]
|
||||||
|
const item = {}
|
||||||
|
Object.keys(headings).forEach((k) => {
|
||||||
|
if (k === 'comments') {
|
||||||
|
item[k] = comments(row)
|
||||||
|
} else if (k === 'totalAmount') {
|
||||||
|
item[k] = calculateTotal(row)
|
||||||
|
} else if (k === 'isTankFull') {
|
||||||
|
if (this.isFullTankString) {
|
||||||
|
item[k] = setFullTank(row)
|
||||||
|
} else {
|
||||||
|
if (this.invertFullTank) {
|
||||||
|
item[k] = Boolean(!row[headings[k]])
|
||||||
|
} else {
|
||||||
|
item[k] = Boolean(row[headings[k]])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else if (k === 'hasMissedFillup') {
|
||||||
|
// TODO: need to account for this field being a string
|
||||||
|
item[k] = Boolean(row[headings[k]])
|
||||||
|
} else if (k === 'date') {
|
||||||
|
item[k] = new Date(row[headings[k]]).toISOString()
|
||||||
|
} else {
|
||||||
|
item[k] = row[headings[k]]
|
||||||
|
}
|
||||||
|
})
|
||||||
|
data.push(item)
|
||||||
|
}
|
||||||
|
return data
|
||||||
|
},
|
||||||
|
importData() {
|
||||||
|
if (this.errors.length === 0) {
|
||||||
|
try {
|
||||||
|
const content = {
|
||||||
|
data: this.csvToJson(),
|
||||||
|
vehicleId: this.selectedVehicle.id,
|
||||||
|
timezone: this.getTimezone(),
|
||||||
|
}
|
||||||
|
axios
|
||||||
|
.post('/api/import/generic', content)
|
||||||
|
.then((data) => {
|
||||||
|
this.$buefy.toast.open({
|
||||||
|
message: this.$t('importsuccessfull'),
|
||||||
|
type: 'is-success',
|
||||||
|
duration: 3000,
|
||||||
|
})
|
||||||
|
setTimeout(() => this.$router.push({ name: 'home' }), 1000)
|
||||||
|
})
|
||||||
|
.catch((ex) => {
|
||||||
|
this.$buefy.toast.open({
|
||||||
|
duration: 5000,
|
||||||
|
message: this.$t('importerror'),
|
||||||
|
position: 'is-bottom',
|
||||||
|
type: 'is-danger',
|
||||||
|
})
|
||||||
|
console.log(ex)
|
||||||
|
if (ex.response && ex.response.data.error) {
|
||||||
|
this.errors.push(ex.response.data.error)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
} catch (e) {
|
||||||
|
// TODO: handle error
|
||||||
|
this.errors.push(e)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
this.errors.push('fix errors')
|
||||||
|
}
|
||||||
|
},
|
||||||
|
checkFieldString() {
|
||||||
|
const tankFull = this.fileData[1][this.fileHeadingMap.isTankFull]
|
||||||
|
if (typeof tankFull !== 'boolean' && typeof tankFull === 'string') {
|
||||||
|
this.isFullTankString = true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
clearHeadingProperty(property) {
|
||||||
|
if (property === 'comments') {
|
||||||
|
this.fileHeadingMap[property] = []
|
||||||
|
} else {
|
||||||
|
this.fileHeadingMap[property] = null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<Layout>
|
||||||
|
<div class="columns box">
|
||||||
|
<div class="column">
|
||||||
|
<h1 class="title">{{ $t('importgeneric') }}</h1>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<br />
|
||||||
|
<div v-if="fileData === null" class="columns">
|
||||||
|
<div class="column">
|
||||||
|
<p class="subtitle"> {{ $t('stepstoimport', { name: 'CSV' }) }}</p>
|
||||||
|
<ol>
|
||||||
|
<!-- <li>{{ $t('importhintcreatecsv', { 'name': 'Fuelly' }) }} <a href="http://docs.fuelly.com/acar-import-export-center" target="_nofollow">{{ $t('here') }}</a>.</li> -->
|
||||||
|
<li>{{ $t('importgenerichintdata') }}</li>
|
||||||
|
<li>{{ $t('importhintvehiclecreated') }}</li>
|
||||||
|
<li v-html="$t('importhintcurrdist')"></li>
|
||||||
|
<li v-html="$t('importhintunits')"></li>
|
||||||
|
<li>
|
||||||
|
<b>{{ $t('dontimportagain') }}</b>
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div v-if="fileData === null" class="section box">
|
||||||
|
<div class="columns">
|
||||||
|
<div class="column is-two-thirds">
|
||||||
|
<p class="subtitle">{{ $t('choosedatafile') }}</p>
|
||||||
|
</div>
|
||||||
|
<div class="column is-one-third is-flex is-align-content-center">
|
||||||
|
<form @submit.prevent="parseCSV">
|
||||||
|
<div class="columns">
|
||||||
|
<div class="column">
|
||||||
|
<b-field class="file is-primary" :class="{ 'has-name': !!file }">
|
||||||
|
<b-upload v-model="file" class="file-label" accept=".csv" required>
|
||||||
|
<span class="file-cta">
|
||||||
|
<b-icon class="file-icon" icon="upload"></b-icon>
|
||||||
|
<span class="file-label">{{ uploadButtonLabel }}</span>
|
||||||
|
</span>
|
||||||
|
<span v-if="file" class="file-name" :class="isMobile ? 'file-name-mobile' : 'file-name-desktop'">
|
||||||
|
{{ file.name }}
|
||||||
|
</span>
|
||||||
|
</b-upload>
|
||||||
|
</b-field>
|
||||||
|
</div>
|
||||||
|
<div class="column">
|
||||||
|
<b-button tag="button" native-type="submit" type="is-primary" class="control">
|
||||||
|
{{ $t('import') }}
|
||||||
|
</b-button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div v-else class="columns">
|
||||||
|
<div class="column">
|
||||||
|
<p class="subtitle">Map Fields</p>
|
||||||
|
<form class="" @submit.prevent="importData">
|
||||||
|
<b-field :label="$t('selectvehicle')">
|
||||||
|
<b-select v-model="selectedVehicle" :placeholder="$t('vehicle')" required expanded>
|
||||||
|
<option v-for="option in myVehicles" :key="option.id" :value="option">
|
||||||
|
{{ option.nickname }}
|
||||||
|
</option>
|
||||||
|
</b-select>
|
||||||
|
</b-field>
|
||||||
|
<span v-if="selectedVehicle !== null">
|
||||||
|
<b-field :label="$t('fillupdate')">
|
||||||
|
<b-select v-model="fileHeadingMap.date" required expanded>
|
||||||
|
<option v-for="(option, index) in fileHeadings" :key="index" :value="index">
|
||||||
|
{{ option }}
|
||||||
|
</option>
|
||||||
|
</b-select>
|
||||||
|
</b-field>
|
||||||
|
<b-field>
|
||||||
|
<template v-slot:label>
|
||||||
|
{{ $t('fuelsubtype') }}
|
||||||
|
<b-tooltip type="is-dark" label="Clear selection">
|
||||||
|
<b-button
|
||||||
|
type="is-ghost"
|
||||||
|
size="is-small"
|
||||||
|
icon-pack="fas"
|
||||||
|
icon-right="arrow-rotate-left"
|
||||||
|
@click="clearHeadingProperty('fuelSubType')"
|
||||||
|
></b-button>
|
||||||
|
</b-tooltip>
|
||||||
|
</template>
|
||||||
|
<b-select v-model="fileHeadingMap.fuelSubType" expanded>
|
||||||
|
<option v-for="(option, index) in fileHeadings" :key="index" :value="index">
|
||||||
|
{{ option }}
|
||||||
|
</option>
|
||||||
|
</b-select>
|
||||||
|
</b-field>
|
||||||
|
<b-field :label="$t('quantity')">
|
||||||
|
<b-select v-model="fileHeadingMap.fuelQuantity" expanded required>
|
||||||
|
<option v-for="(option, index) in fileHeadings" :key="index" :value="index">
|
||||||
|
{{ option }}
|
||||||
|
</option>
|
||||||
|
</b-select>
|
||||||
|
</b-field>
|
||||||
|
<b-field :label="$t('per', { '0': $t('price'), '1': $t('unit.short.' + selectedVehicle.fuelUnitDetail.key) })">
|
||||||
|
<b-select v-model.number="fileHeadingMap.perUnitPrice" type="number" min="0" step=".001" expanded required>
|
||||||
|
<option v-for="(option, index) in fileHeadings" :key="index" :value="index">
|
||||||
|
{{ option }}
|
||||||
|
</option>
|
||||||
|
</b-select>
|
||||||
|
</b-field>
|
||||||
|
<b-field :label="$t('totalamountpaid')">
|
||||||
|
<b-select v-model.number="fileHeadingMap.totalAmount" expanded required>
|
||||||
|
<option value="-1">Calculated</option>
|
||||||
|
<option v-for="(option, index) in fileHeadings" :key="index" :value="index">
|
||||||
|
{{ option }}
|
||||||
|
</option>
|
||||||
|
</b-select>
|
||||||
|
</b-field>
|
||||||
|
<b-field :label="$t('odometer')">
|
||||||
|
<b-select v-model.number="fileHeadingMap.odoReading" expanded required>
|
||||||
|
<option v-for="(option, index) in fileHeadings" :key="index" :value="index">
|
||||||
|
{{ option }}
|
||||||
|
</option>
|
||||||
|
</b-select>
|
||||||
|
</b-field>
|
||||||
|
<b-field :label="$t('tankpartialfull')">
|
||||||
|
<b-radio-button v-model="invertFullTank" native-value="false">{{ $t('fulltank') }}</b-radio-button>
|
||||||
|
<b-radio-button v-model="invertFullTank" native-value="true">{{ $t('partialfillup') }}</b-radio-button>
|
||||||
|
</b-field>
|
||||||
|
<b-field>
|
||||||
|
<b-select v-model="fileHeadingMap.isTankFull" required @input="checkFieldString">
|
||||||
|
<option v-for="(option, index) in fileHeadings" :key="index" :value="index">
|
||||||
|
{{ option }}
|
||||||
|
</option>
|
||||||
|
</b-select>
|
||||||
|
</b-field>
|
||||||
|
<span v-if="isFullTankString === true" required>
|
||||||
|
<b-field label="Value when tank is filled">
|
||||||
|
<b-input v-model="filledValueString"></b-input>
|
||||||
|
</b-field>
|
||||||
|
<b-field label="Value when tank was not completely filled">
|
||||||
|
<b-input v-model="notFilledValueString"></b-input>
|
||||||
|
</b-field>
|
||||||
|
</span>
|
||||||
|
<b-field>
|
||||||
|
<template v-slot:label>
|
||||||
|
{{ $t('missedfillup') }}
|
||||||
|
<b-tooltip type="is-dark" label="Clear selection">
|
||||||
|
<b-button
|
||||||
|
type="is-ghost"
|
||||||
|
size="is-small"
|
||||||
|
icon-pack="fas"
|
||||||
|
icon-right="arrow-rotate-left"
|
||||||
|
@click="clearHeadingProperty('hasMissedFillup')"
|
||||||
|
></b-button>
|
||||||
|
</b-tooltip>
|
||||||
|
</template>
|
||||||
|
<b-select v-model="fileHeadingMap.hasMissedFillup">
|
||||||
|
<option v-for="(option, index) in fileHeadings" :key="index" :value="index">
|
||||||
|
{{ option }}
|
||||||
|
</option>
|
||||||
|
</b-select>
|
||||||
|
</b-field>
|
||||||
|
<b-field>
|
||||||
|
<template v-slot:label>
|
||||||
|
{{ $t('fillingstation') }}
|
||||||
|
<b-tooltip type="is-dark" label="Clear selection">
|
||||||
|
<b-button
|
||||||
|
type="is-ghost"
|
||||||
|
size="is-small"
|
||||||
|
icon-pack="fas"
|
||||||
|
icon-right="arrow-rotate-left"
|
||||||
|
@click="clearHeadingProperty('fillingStation')"
|
||||||
|
></b-button>
|
||||||
|
</b-tooltip>
|
||||||
|
</template>
|
||||||
|
<b-select v-model="fileHeadingMap.fillingStation">
|
||||||
|
<option v-for="(option, index) in fileHeadings" :key="index" :value="index">
|
||||||
|
{{ option }}
|
||||||
|
</option>
|
||||||
|
</b-select>
|
||||||
|
</b-field>
|
||||||
|
<b-field>
|
||||||
|
<template v-slot:label>
|
||||||
|
{{ $t('comments') }}
|
||||||
|
<b-tooltip type="is-dark" label="Clear selection">
|
||||||
|
<b-button
|
||||||
|
type="is-ghost"
|
||||||
|
size="is-small"
|
||||||
|
icon-pack="fas"
|
||||||
|
icon-right="arrow-rotate-left"
|
||||||
|
@click="clearHeadingProperty('comments')"
|
||||||
|
></b-button>
|
||||||
|
</b-tooltip>
|
||||||
|
</template>
|
||||||
|
<b-select v-model="fileHeadingMap.comments" type="textarea" multiple expanded>
|
||||||
|
<option v-for="(option, index) in fileHeadings" :key="index" :value="index">
|
||||||
|
{{ option }}
|
||||||
|
</option>
|
||||||
|
</b-select>
|
||||||
|
</b-field>
|
||||||
|
<br />
|
||||||
|
<b-field>
|
||||||
|
<b-button tag="button" native-type="submit" type="is-primary" :value="$t('save')" :label="$t('import')" expanded />
|
||||||
|
<p v-if="authError"> There was an error logging in to your account. </p>
|
||||||
|
</b-field>
|
||||||
|
</span>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<b-message v-if="errors.length" type="is-danger">
|
||||||
|
<ul>
|
||||||
|
<li v-for="error in errors" :key="error">{{ error }}</li>
|
||||||
|
</ul>
|
||||||
|
</b-message>
|
||||||
|
</Layout>
|
||||||
|
</template>
|
||||||
@@ -18,18 +18,19 @@ export default {
|
|||||||
|
|
||||||
<template>
|
<template>
|
||||||
<Layout>
|
<Layout>
|
||||||
<div class="columns box"
|
<div class="columns box">
|
||||||
><div class="column">
|
<div class="column">
|
||||||
<h1 class="title">{{ $t('importdata') }}</h1>
|
<h1 class="title">{{ $t('importdata') }}</h1>
|
||||||
<p class="subtitle">{{ $t('importdatadesc') }}</p>
|
<p class="subtitle">{{ $t('importdatadesc') }}</p>
|
||||||
</div></div
|
</div>
|
||||||
>
|
</div>
|
||||||
<br />
|
<br />
|
||||||
<div class="columns">
|
<div class="columns">
|
||||||
<div class="column is-one-third">
|
<div class="column is-one-third">
|
||||||
<div class="box">
|
<div class="box">
|
||||||
<h1 class="title">Fuelly</h1>
|
<h1 class="title">Fuelly</h1>
|
||||||
<p>If you have been using Fuelly to store your vehicle data, export the CSV file from Fuelly and click here to import.</p>
|
<p>If you have been using Fuelly to store your vehicle data, export the CSV file from Fuelly and click here to
|
||||||
|
import.</p>
|
||||||
<br />
|
<br />
|
||||||
<b-button type="is-primary" tag="router-link" to="/import/fuelly">{{ $t('import') }}</b-button>
|
<b-button type="is-primary" tag="router-link" to="/import/fuelly">{{ $t('import') }}</b-button>
|
||||||
</div>
|
</div>
|
||||||
@@ -43,6 +44,16 @@ export default {
|
|||||||
<b-button type="is-primary" tag="router-link" to="/import/drivvo">{{ $t('import') }}</b-button>
|
<b-button type="is-primary" tag="router-link" to="/import/drivvo">{{ $t('import') }}</b-button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="column is-one-third" to="/import-generic">
|
||||||
|
<div class="box">
|
||||||
|
<h1 class="title">{{ $t('importgeneric') }}</h1>
|
||||||
|
<p>{{ $t('importgenericdesc') }}</p>
|
||||||
|
<br />
|
||||||
|
<b-button type="is-primary" tag="router-link" to="/import/generic">{{ $t('import') }}</b-button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</Layout>
|
</Layout>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -22,13 +22,11 @@ export default {
|
|||||||
data: function() {
|
data: function() {
|
||||||
return {
|
return {
|
||||||
settingsModel: {
|
settingsModel: {
|
||||||
language: this.me.language,
|
|
||||||
currency: this.me.currency,
|
currency: this.me.currency,
|
||||||
distanceUnit: this.me.distanceUnit,
|
distanceUnit: this.me.distanceUnit,
|
||||||
dateFormat: this.me.dateFormat,
|
dateFormat: this.me.dateFormat,
|
||||||
},
|
},
|
||||||
tryingToSave: false,
|
tryingToSave: false,
|
||||||
selectedLanguage: "",
|
|
||||||
changePassModel: {
|
changePassModel: {
|
||||||
old: '',
|
old: '',
|
||||||
new: '',
|
new: '',
|
||||||
@@ -38,7 +36,7 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
...mapState('masters', ['currencyMasters', 'languageMasters', 'distanceUnitMasters']),
|
...mapState('vehicles', ['currencyMasters', 'distanceUnitMasters']),
|
||||||
passwordValid() {
|
passwordValid() {
|
||||||
if (this.changePassModel.new === '' || this.changePassModel.renew === '') {
|
if (this.changePassModel.new === '' || this.changePassModel.renew === '') {
|
||||||
return true
|
return true
|
||||||
@@ -61,9 +59,6 @@ export default {
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
mounted() {
|
|
||||||
this.selectedLanguage = this.formatLanguage(this.languageMasters.filter(x => x.shorthand === this.me.language)[0])
|
|
||||||
},
|
|
||||||
methods: {
|
methods: {
|
||||||
changePassword() {
|
changePassword() {
|
||||||
if (!this.passwordValid) {
|
if (!this.passwordValid) {
|
||||||
@@ -115,7 +110,6 @@ export default {
|
|||||||
type: 'is-success',
|
type: 'is-success',
|
||||||
duration: 3000,
|
duration: 3000,
|
||||||
})
|
})
|
||||||
this.$i18n.locale = this.settingsModel.language
|
|
||||||
})
|
})
|
||||||
.catch((ex) => {
|
.catch((ex) => {
|
||||||
this.$buefy.toast.open({
|
this.$buefy.toast.open({
|
||||||
@@ -132,9 +126,6 @@ export default {
|
|||||||
formatCurrency(option) {
|
formatCurrency(option) {
|
||||||
return `${option.namePlural} (${option.code})`
|
return `${option.namePlural} (${option.code})`
|
||||||
},
|
},
|
||||||
formatLanguage(option) {
|
|
||||||
return `${option.nameNative} ${option.emoji}`
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
@@ -145,18 +136,9 @@ export default {
|
|||||||
<div class="columns"
|
<div class="columns"
|
||||||
><div class="column">
|
><div class="column">
|
||||||
<form class="box " @submit.prevent="saveSettings">
|
<form class="box " @submit.prevent="saveSettings">
|
||||||
<b-field :label="$t('language')">
|
<h1 class="subtitle">
|
||||||
<b-autocomplete
|
{{ $t('settingdesc') }}
|
||||||
v-model="selectedLanguage"
|
</h1>
|
||||||
:placeholder="$t('language')"
|
|
||||||
:keep-first="true"
|
|
||||||
:custom-formatter="formatLanguage"
|
|
||||||
:data="languageMasters"
|
|
||||||
:open-on-focus="true"
|
|
||||||
required
|
|
||||||
@select="(option) => (settingsModel.language = option.shorthand)"
|
|
||||||
/>
|
|
||||||
</b-field>
|
|
||||||
<b-field :label="$t('currency')">
|
<b-field :label="$t('currency')">
|
||||||
<b-autocomplete
|
<b-autocomplete
|
||||||
v-model="settingsModel.currency"
|
v-model="settingsModel.currency"
|
||||||
|
|||||||
@@ -1,52 +0,0 @@
|
|||||||
import axios from 'axios'
|
|
||||||
|
|
||||||
export const state = {
|
|
||||||
languageMasters: [],
|
|
||||||
fuelUnitMasters: [],
|
|
||||||
distanceUnitMasters: [],
|
|
||||||
currencyMasters: [],
|
|
||||||
fuelTypeMasters: [],
|
|
||||||
roleMasters: [],
|
|
||||||
}
|
|
||||||
export const mutations = {
|
|
||||||
CACHE_LANGUAGE_MASTERS(state, masters) {
|
|
||||||
state.languageMasters = masters
|
|
||||||
},
|
|
||||||
CACHE_FUEL_UNIT_MASTERS(state, masters) {
|
|
||||||
state.fuelUnitMasters = masters
|
|
||||||
},
|
|
||||||
CACHE_DISTANCE_UNIT_MASTERS(state, masters) {
|
|
||||||
state.distanceUnitMasters = masters
|
|
||||||
},
|
|
||||||
CACHE_FUEL_TYPE_MASTERS(state, masters) {
|
|
||||||
state.fuelTypeMasters = masters
|
|
||||||
},
|
|
||||||
CACHE_CURRENCY_MASTERS(state, masters) {
|
|
||||||
state.currencyMasters = masters
|
|
||||||
},
|
|
||||||
CACHE_ROLE_MASTERS(state, roles) {
|
|
||||||
state.roleMasters = roles
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
export const getters = {}
|
|
||||||
|
|
||||||
export const actions = {
|
|
||||||
init({ dispatch, rootState }) {
|
|
||||||
const { currentUser } = rootState.auth
|
|
||||||
if (currentUser) {
|
|
||||||
dispatch('fetchMasters')
|
|
||||||
}
|
|
||||||
},
|
|
||||||
fetchMasters({ commit, state, rootState }) {
|
|
||||||
return axios.get('/api/masters').then((response) => {
|
|
||||||
commit('CACHE_LANGUAGE_MASTERS', response.data.languages)
|
|
||||||
commit('CACHE_FUEL_UNIT_MASTERS', response.data.fuelUnits)
|
|
||||||
commit('CACHE_FUEL_TYPE_MASTERS', response.data.fuelTypes)
|
|
||||||
commit('CACHE_CURRENCY_MASTERS', response.data.currencies)
|
|
||||||
commit('CACHE_DISTANCE_UNIT_MASTERS', response.data.distanceUnits)
|
|
||||||
commit('CACHE_ROLE_MASTERS', response.data.roles)
|
|
||||||
return response.data
|
|
||||||
})
|
|
||||||
},
|
|
||||||
}
|
|
||||||
@@ -4,6 +4,11 @@ import { filter } from 'lodash'
|
|||||||
import parseISO from 'date-fns/parseISO'
|
import parseISO from 'date-fns/parseISO'
|
||||||
export const state = {
|
export const state = {
|
||||||
vehicles: [],
|
vehicles: [],
|
||||||
|
roleMasters: [],
|
||||||
|
fuelUnitMasters: [],
|
||||||
|
distanceUnitMasters: [],
|
||||||
|
currencyMasters: [],
|
||||||
|
fuelTypeMasters: [],
|
||||||
quickEntries: [],
|
quickEntries: [],
|
||||||
vehicleStats: new Map(),
|
vehicleStats: new Map(),
|
||||||
}
|
}
|
||||||
@@ -24,9 +29,24 @@ export const mutations = {
|
|||||||
CACHE_VEHICLE_STATS(state, stats) {
|
CACHE_VEHICLE_STATS(state, stats) {
|
||||||
state.vehicleStats.set(stats.vehicleId, stats)
|
state.vehicleStats.set(stats.vehicleId, stats)
|
||||||
},
|
},
|
||||||
|
CACHE_FUEL_UNIT_MASTERS(state, masters) {
|
||||||
|
state.fuelUnitMasters = masters
|
||||||
|
},
|
||||||
|
CACHE_DISTANCE_UNIT_MASTERS(state, masters) {
|
||||||
|
state.distanceUnitMasters = masters
|
||||||
|
},
|
||||||
|
CACHE_FUEL_TYPE_MASTERS(state, masters) {
|
||||||
|
state.fuelTypeMasters = masters
|
||||||
|
},
|
||||||
|
CACHE_CURRENCY_MASTERS(state, masters) {
|
||||||
|
state.currencyMasters = masters
|
||||||
|
},
|
||||||
CACHE_QUICK_ENTRIES(state, entries) {
|
CACHE_QUICK_ENTRIES(state, entries) {
|
||||||
state.quickEntries = entries
|
state.quickEntries = entries
|
||||||
},
|
},
|
||||||
|
CACHE_ROLE_MASTERS(state, roles) {
|
||||||
|
state.roleMasters = roles
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
export const actions = {
|
export const actions = {
|
||||||
@@ -34,9 +54,22 @@ export const actions = {
|
|||||||
const { currentUser } = rootState.auth
|
const { currentUser } = rootState.auth
|
||||||
if (currentUser) {
|
if (currentUser) {
|
||||||
dispatch('fetchVehicles')
|
dispatch('fetchVehicles')
|
||||||
|
dispatch('fetchMasters')
|
||||||
dispatch('fetchQuickEntries', { force: true })
|
dispatch('fetchQuickEntries', { force: true })
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
fetchMasters({ commit, state, rootState }) {
|
||||||
|
return axios.get('/api/masters').then((response) => {
|
||||||
|
const fuelUnitMasters = response.data.fuelUnits
|
||||||
|
const fuelTypeMasters = response.data.fuelTypes
|
||||||
|
commit('CACHE_FUEL_UNIT_MASTERS', fuelUnitMasters)
|
||||||
|
commit('CACHE_FUEL_TYPE_MASTERS', fuelTypeMasters)
|
||||||
|
commit('CACHE_CURRENCY_MASTERS', response.data.currencies)
|
||||||
|
commit('CACHE_DISTANCE_UNIT_MASTERS', response.data.distanceUnits)
|
||||||
|
commit('CACHE_ROLE_MASTERS', response.data.roles)
|
||||||
|
return response.data
|
||||||
|
})
|
||||||
|
},
|
||||||
fetchVehicles({ commit, state, rootState }) {
|
fetchVehicles({ commit, state, rootState }) {
|
||||||
return axios.get('/api/me/vehicles').then((response) => {
|
return axios.get('/api/me/vehicles').then((response) => {
|
||||||
const data = response.data
|
const data = response.data
|
||||||
|
|||||||
Reference in New Issue
Block a user