delete quick entry and some stats
This commit is contained in:
@@ -8,7 +8,7 @@
|
|||||||
</a> -->
|
</a> -->
|
||||||
|
|
||||||
<h1 align="center" style="margin-bottom:0">Hammond</h1>
|
<h1 align="center" style="margin-bottom:0">Hammond</h1>
|
||||||
<p align="center">Current Version - 2021.07.23</p>
|
<p align="center">Current Version - 2021.08.13</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.
|
||||||
|
|||||||
@@ -19,6 +19,8 @@ func RegisterFilesController(router *gin.RouterGroup) {
|
|||||||
router.GET("/me/quickEntries", getMyQuickEntries)
|
router.GET("/me/quickEntries", getMyQuickEntries)
|
||||||
router.GET("/quickEntries/:id", getQuickEntryById)
|
router.GET("/quickEntries/:id", getQuickEntryById)
|
||||||
router.POST("/quickEntries/:id/process", setQuickEntryAsProcessed)
|
router.POST("/quickEntries/:id/process", setQuickEntryAsProcessed)
|
||||||
|
router.DELETE("/quickEntries/:id", deleteQuickEntryById)
|
||||||
|
|
||||||
router.GET("/attachments/:id/file", getAttachmentFile)
|
router.GET("/attachments/:id/file", getAttachmentFile)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -76,6 +78,21 @@ func getQuickEntryById(c *gin.Context) {
|
|||||||
c.JSON(http.StatusBadRequest, gin.H{"error": "Invalid request"})
|
c.JSON(http.StatusBadRequest, gin.H{"error": "Invalid request"})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func deleteQuickEntryById(c *gin.Context) {
|
||||||
|
var searchByIdQuery models.SearchByIdQuery
|
||||||
|
|
||||||
|
if c.ShouldBindUri(&searchByIdQuery) == nil {
|
||||||
|
err := service.DeleteQuickEntryById(searchByIdQuery.Id)
|
||||||
|
if err != nil {
|
||||||
|
c.JSON(http.StatusUnprocessableEntity, common.NewError("deleteQuickEntryById", err))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
c.JSON(http.StatusNoContent, gin.H{})
|
||||||
|
} else {
|
||||||
|
c.JSON(http.StatusBadRequest, gin.H{"error": "Invalid request"})
|
||||||
|
}
|
||||||
|
}
|
||||||
func setQuickEntryAsProcessed(c *gin.Context) {
|
func setQuickEntryAsProcessed(c *gin.Context) {
|
||||||
var searchByIdQuery models.SearchByIdQuery
|
var searchByIdQuery models.SearchByIdQuery
|
||||||
|
|
||||||
|
|||||||
37
server/controllers/reports.go
Normal file
37
server/controllers/reports.go
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
package controllers
|
||||||
|
|
||||||
|
import (
|
||||||
|
"net/http"
|
||||||
|
|
||||||
|
"github.com/akhilrex/hammond/common"
|
||||||
|
"github.com/akhilrex/hammond/models"
|
||||||
|
"github.com/akhilrex/hammond/service"
|
||||||
|
"github.com/gin-gonic/gin"
|
||||||
|
)
|
||||||
|
|
||||||
|
func RegisterReportsController(router *gin.RouterGroup) {
|
||||||
|
router.GET("/vehicles/:id/mileage", getMileageForVehicle)
|
||||||
|
}
|
||||||
|
|
||||||
|
func getMileageForVehicle(c *gin.Context) {
|
||||||
|
|
||||||
|
var searchByIdQuery models.SearchByIdQuery
|
||||||
|
|
||||||
|
if err := c.ShouldBindUri(&searchByIdQuery); err == nil {
|
||||||
|
var model models.MileageQueryModel
|
||||||
|
err := c.BindQuery(&model)
|
||||||
|
if err != nil {
|
||||||
|
c.JSON(http.StatusUnprocessableEntity, common.NewError("getMileageForVehicle", err))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
fillups, err := service.GetMileageByVehicleId(searchByIdQuery.Id, model.Since)
|
||||||
|
if err != nil {
|
||||||
|
c.JSON(http.StatusUnprocessableEntity, common.NewError("getMileageForVehicle", err))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
c.JSON(http.StatusOK, fillups)
|
||||||
|
} else {
|
||||||
|
c.JSON(http.StatusUnprocessableEntity, common.NewValidatorError(err))
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -160,6 +160,11 @@ func GetFillupsByVehicleId(id string) (*[]Fillup, error) {
|
|||||||
result := DB.Preload(clause.Associations).Order("date desc").Find(&obj, &Fillup{VehicleID: id})
|
result := DB.Preload(clause.Associations).Order("date desc").Find(&obj, &Fillup{VehicleID: id})
|
||||||
return &obj, result.Error
|
return &obj, result.Error
|
||||||
}
|
}
|
||||||
|
func GetFillupsByVehicleIdSince(id string, since time.Time) (*[]Fillup, error) {
|
||||||
|
var obj []Fillup
|
||||||
|
result := DB.Where("date >= ? AND vehicle_id = ?", since, id).Preload(clause.Associations).Order("date desc").Find(&obj)
|
||||||
|
return &obj, result.Error
|
||||||
|
}
|
||||||
func FindFillups(condition interface{}) (*[]Fillup, error) {
|
func FindFillups(condition interface{}) (*[]Fillup, error) {
|
||||||
|
|
||||||
var model []Fillup
|
var model []Fillup
|
||||||
@@ -237,6 +242,10 @@ func GetQuickEntryById(id string) (*QuickEntry, error) {
|
|||||||
result := DB.Preload(clause.Associations).First(&quickEntry, "id=?", id)
|
result := DB.Preload(clause.Associations).First(&quickEntry, "id=?", id)
|
||||||
return &quickEntry, result.Error
|
return &quickEntry, result.Error
|
||||||
}
|
}
|
||||||
|
func DeleteQuickEntryById(id string) error {
|
||||||
|
result := DB.Where("id=?", id).Delete(&QuickEntry{})
|
||||||
|
return result.Error
|
||||||
|
}
|
||||||
func UpdateQuickEntry(entry *QuickEntry) error {
|
func UpdateQuickEntry(entry *QuickEntry) error {
|
||||||
return DB.Save(entry).Error
|
return DB.Save(entry).Error
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -50,6 +50,7 @@ func main() {
|
|||||||
controllers.RegisterVehicleController(router)
|
controllers.RegisterVehicleController(router)
|
||||||
controllers.RegisterFilesController(router)
|
controllers.RegisterFilesController(router)
|
||||||
controllers.RegisteImportController(router)
|
controllers.RegisteImportController(router)
|
||||||
|
controllers.RegisterReportsController(router)
|
||||||
|
|
||||||
go assetEnv()
|
go assetEnv()
|
||||||
go intiCron()
|
go intiCron()
|
||||||
|
|||||||
38
server/models/report.go
Normal file
38
server/models/report.go
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
package models
|
||||||
|
|
||||||
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"github.com/akhilrex/hammond/db"
|
||||||
|
)
|
||||||
|
|
||||||
|
type MileageModel struct {
|
||||||
|
Date time.Time `form:"date" json:"date" binding:"required" time_format:"2006-01-02"`
|
||||||
|
VehicleID string `form:"vehicleId" json:"vehicleId" binding:"required"`
|
||||||
|
FuelUnit db.FuelUnit `form:"fuelUnit" json:"fuelUnit" binding:"required"`
|
||||||
|
FuelQuantity float32 `form:"fuelQuantity" json:"fuelQuantity" binding:"required"`
|
||||||
|
PerUnitPrice float32 `form:"perUnitPrice" json:"perUnitPrice" binding:"required"`
|
||||||
|
Currency string `json:"currency"`
|
||||||
|
|
||||||
|
Mileage float32 `form:"mileage" json:"mileage" binding:"mileage"`
|
||||||
|
CostPerMile float32 `form:"costPerMile" json:"costPerMile" binding:"costPerMile"`
|
||||||
|
OdoReading int `form:"odoReading" json:"odoReading" binding:"odoReading"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (v *MileageModel) FuelUnitDetail() db.EnumDetail {
|
||||||
|
return db.FuelUnitDetails[v.FuelUnit]
|
||||||
|
}
|
||||||
|
func (b *MileageModel) MarshalJSON() ([]byte, error) {
|
||||||
|
return json.Marshal(struct {
|
||||||
|
MileageModel
|
||||||
|
FuelUnitDetail db.EnumDetail `json:"fuelUnitDetail"`
|
||||||
|
}{
|
||||||
|
MileageModel: *b,
|
||||||
|
FuelUnitDetail: b.FuelUnitDetail(),
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
type MileageQueryModel struct {
|
||||||
|
Since time.Time `json:"since" query:"since" form:"since"`
|
||||||
|
}
|
||||||
@@ -58,6 +58,9 @@ func GetQuickEntriesForUser(userId, sorting string) (*[]db.QuickEntry, error) {
|
|||||||
func GetQuickEntryById(id string) (*db.QuickEntry, error) {
|
func GetQuickEntryById(id string) (*db.QuickEntry, error) {
|
||||||
return db.GetQuickEntryById(id)
|
return db.GetQuickEntryById(id)
|
||||||
}
|
}
|
||||||
|
func DeleteQuickEntryById(id string) error {
|
||||||
|
return db.DeleteQuickEntryById(id)
|
||||||
|
}
|
||||||
func SetQuickEntryAsProcessed(id string) error {
|
func SetQuickEntryAsProcessed(id string) error {
|
||||||
return db.SetQuickEntryAsProcessed(id, time.Now())
|
return db.SetQuickEntryAsProcessed(id, time.Now())
|
||||||
|
|
||||||
|
|||||||
@@ -97,22 +97,23 @@ func FuellyImport(content []byte, userId string) []string {
|
|||||||
)
|
)
|
||||||
|
|
||||||
isTankFull := record[6] == "Full"
|
isTankFull := record[6] == "Full"
|
||||||
|
fal := false
|
||||||
fillups = append(fillups, db.Fillup{
|
fillups = append(fillups, db.Fillup{
|
||||||
VehicleID: vehicle.ID,
|
VehicleID: vehicle.ID,
|
||||||
FuelUnit: vehicle.FuelUnit,
|
FuelUnit: vehicle.FuelUnit,
|
||||||
FuelQuantity: quantity,
|
FuelQuantity: quantity,
|
||||||
PerUnitPrice: rate,
|
PerUnitPrice: rate,
|
||||||
TotalAmount: totalCost,
|
TotalAmount: totalCost,
|
||||||
OdoReading: odoreading,
|
OdoReading: odoreading,
|
||||||
IsTankFull: &isTankFull,
|
IsTankFull: &isTankFull,
|
||||||
Comments: notes,
|
Comments: notes,
|
||||||
FillingStation: location,
|
FillingStation: location,
|
||||||
UserID: userId,
|
HasMissedFillup: &fal,
|
||||||
Date: date,
|
UserID: userId,
|
||||||
Currency: user.Currency,
|
Date: date,
|
||||||
DistanceUnit: user.DistanceUnit,
|
Currency: user.Currency,
|
||||||
Source: "Fuelly",
|
DistanceUnit: user.DistanceUnit,
|
||||||
|
Source: "Fuelly",
|
||||||
})
|
})
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
52
server/service/reportService.go
Normal file
52
server/service/reportService.go
Normal file
@@ -0,0 +1,52 @@
|
|||||||
|
package service
|
||||||
|
|
||||||
|
import (
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"github.com/akhilrex/hammond/db"
|
||||||
|
"github.com/akhilrex/hammond/models"
|
||||||
|
)
|
||||||
|
|
||||||
|
func GetMileageByVehicleId(vehicleId string, since time.Time) (mileage []models.MileageModel, err error) {
|
||||||
|
data, err := db.GetFillupsByVehicleIdSince(vehicleId, since)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
fillups := make([]db.Fillup, len(*data))
|
||||||
|
copy(fillups, *data)
|
||||||
|
|
||||||
|
var mileages []models.MileageModel
|
||||||
|
|
||||||
|
for i := 0; i < len(fillups)-1; i++ {
|
||||||
|
last := i + 1
|
||||||
|
|
||||||
|
currentFillup := fillups[i]
|
||||||
|
lastFillup := fillups[last]
|
||||||
|
|
||||||
|
mileage := models.MileageModel{
|
||||||
|
Date: currentFillup.Date,
|
||||||
|
VehicleID: currentFillup.VehicleID,
|
||||||
|
FuelUnit: currentFillup.FuelUnit,
|
||||||
|
FuelQuantity: currentFillup.FuelQuantity,
|
||||||
|
PerUnitPrice: currentFillup.PerUnitPrice,
|
||||||
|
OdoReading: currentFillup.OdoReading,
|
||||||
|
Currency: currentFillup.Currency,
|
||||||
|
Mileage: 0,
|
||||||
|
CostPerMile: 0,
|
||||||
|
}
|
||||||
|
|
||||||
|
if currentFillup.IsTankFull != nil && *currentFillup.IsTankFull && (currentFillup.HasMissedFillup == nil || !(*currentFillup.HasMissedFillup)) {
|
||||||
|
distance := float32(currentFillup.OdoReading - lastFillup.OdoReading)
|
||||||
|
mileage.Mileage = distance / currentFillup.FuelQuantity
|
||||||
|
mileage.CostPerMile = distance / currentFillup.TotalAmount
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
mileages = append(mileages, mileage)
|
||||||
|
}
|
||||||
|
if mileages == nil {
|
||||||
|
mileages = make([]models.MileageModel, 0)
|
||||||
|
}
|
||||||
|
return mileages, nil
|
||||||
|
}
|
||||||
51
ui/package-lock.json
generated
51
ui/package-lock.json
generated
@@ -1586,6 +1586,14 @@
|
|||||||
"@babel/types": "^7.3.0"
|
"@babel/types": "^7.3.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"@types/chart.js": {
|
||||||
|
"version": "2.9.34",
|
||||||
|
"resolved": "https://registry.npmjs.org/@types/chart.js/-/chart.js-2.9.34.tgz",
|
||||||
|
"integrity": "sha512-CtZVk+kh1IN67dv+fB0CWmCLCRrDJgqOj15qPic2B1VCMovNO6B7Vhf/TgPpNscjhAL1j+qUntDMWb9A4ZmPTg==",
|
||||||
|
"requires": {
|
||||||
|
"moment": "^2.10.2"
|
||||||
|
}
|
||||||
|
},
|
||||||
"@types/glob": {
|
"@types/glob": {
|
||||||
"version": "7.1.3",
|
"version": "7.1.3",
|
||||||
"resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.3.tgz",
|
"resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.3.tgz",
|
||||||
@@ -5138,6 +5146,32 @@
|
|||||||
"integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==",
|
"integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
|
"chart.js": {
|
||||||
|
"version": "2.9.4",
|
||||||
|
"resolved": "https://registry.npmjs.org/chart.js/-/chart.js-2.9.4.tgz",
|
||||||
|
"integrity": "sha512-B07aAzxcrikjAPyV+01j7BmOpxtQETxTSlQ26BEYJ+3iUkbNKaOJ/nDbT6JjyqYxseM0ON12COHYdU2cTIjC7A==",
|
||||||
|
"requires": {
|
||||||
|
"chartjs-color": "^2.1.0",
|
||||||
|
"moment": "^2.10.2"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"chartjs-color": {
|
||||||
|
"version": "2.4.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/chartjs-color/-/chartjs-color-2.4.1.tgz",
|
||||||
|
"integrity": "sha512-haqOg1+Yebys/Ts/9bLo/BqUcONQOdr/hoEr2LLTRl6C5LXctUdHxsCYfvQVg5JIxITrfCNUDr4ntqmQk9+/0w==",
|
||||||
|
"requires": {
|
||||||
|
"chartjs-color-string": "^0.6.0",
|
||||||
|
"color-convert": "^1.9.3"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"chartjs-color-string": {
|
||||||
|
"version": "0.6.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/chartjs-color-string/-/chartjs-color-string-0.6.0.tgz",
|
||||||
|
"integrity": "sha512-TIB5OKn1hPJvO7JcteW4WY/63v6KwEdt6udfnDE9iCAZgy+V4SrbSxoIbTw/xkUIapjEI4ExGtD0+6D3KyFd7A==",
|
||||||
|
"requires": {
|
||||||
|
"color-name": "^1.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"check-types": {
|
"check-types": {
|
||||||
"version": "8.0.3",
|
"version": "8.0.3",
|
||||||
"resolved": "https://registry.npmjs.org/check-types/-/check-types-8.0.3.tgz",
|
"resolved": "https://registry.npmjs.org/check-types/-/check-types-8.0.3.tgz",
|
||||||
@@ -5621,7 +5655,6 @@
|
|||||||
"version": "1.9.3",
|
"version": "1.9.3",
|
||||||
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
|
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
|
||||||
"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
|
"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
|
||||||
"dev": true,
|
|
||||||
"requires": {
|
"requires": {
|
||||||
"color-name": "1.1.3"
|
"color-name": "1.1.3"
|
||||||
}
|
}
|
||||||
@@ -5629,8 +5662,7 @@
|
|||||||
"color-name": {
|
"color-name": {
|
||||||
"version": "1.1.3",
|
"version": "1.1.3",
|
||||||
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
|
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
|
||||||
"integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=",
|
"integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
|
||||||
"dev": true
|
|
||||||
},
|
},
|
||||||
"color-string": {
|
"color-string": {
|
||||||
"version": "1.5.5",
|
"version": "1.5.5",
|
||||||
@@ -13850,6 +13882,11 @@
|
|||||||
"minimist": "^1.2.5"
|
"minimist": "^1.2.5"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"moment": {
|
||||||
|
"version": "2.29.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/moment/-/moment-2.29.1.tgz",
|
||||||
|
"integrity": "sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ=="
|
||||||
|
},
|
||||||
"move-concurrently": {
|
"move-concurrently": {
|
||||||
"version": "1.0.1",
|
"version": "1.0.1",
|
||||||
"resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz",
|
||||||
@@ -19850,6 +19887,14 @@
|
|||||||
"resolved": "https://registry.npmjs.org/vue/-/vue-2.6.11.tgz",
|
"resolved": "https://registry.npmjs.org/vue/-/vue-2.6.11.tgz",
|
||||||
"integrity": "sha512-VfPwgcGABbGAue9+sfrD4PuwFar7gPb1yl1UK1MwXoQPAw0BKSqWfoYCT/ThFrdEVWoI51dBuyCoiNU9bZDZxQ=="
|
"integrity": "sha512-VfPwgcGABbGAue9+sfrD4PuwFar7gPb1yl1UK1MwXoQPAw0BKSqWfoYCT/ThFrdEVWoI51dBuyCoiNU9bZDZxQ=="
|
||||||
},
|
},
|
||||||
|
"vue-chartjs": {
|
||||||
|
"version": "3.5.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/vue-chartjs/-/vue-chartjs-3.5.1.tgz",
|
||||||
|
"integrity": "sha512-foocQbJ7FtveICxb4EV5QuVpo6d8CmZFmAopBppDIGKY+esJV8IJgwmEW0RexQhxqXaL/E1xNURsgFFYyKzS/g==",
|
||||||
|
"requires": {
|
||||||
|
"@types/chart.js": "^2.7.55"
|
||||||
|
}
|
||||||
|
},
|
||||||
"vue-eslint-parser": {
|
"vue-eslint-parser": {
|
||||||
"version": "7.6.0",
|
"version": "7.6.0",
|
||||||
"resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-7.6.0.tgz",
|
"resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-7.6.0.tgz",
|
||||||
|
|||||||
@@ -36,6 +36,7 @@
|
|||||||
"@fortawesome/vue-fontawesome": "0.1.9",
|
"@fortawesome/vue-fontawesome": "0.1.9",
|
||||||
"axios": "0.19.2",
|
"axios": "0.19.2",
|
||||||
"buefy": "^0.9.7",
|
"buefy": "^0.9.7",
|
||||||
|
"chart.js": "^2.9.4",
|
||||||
"core-js": "3.6.4",
|
"core-js": "3.6.4",
|
||||||
"currency-formatter": "^1.5.7",
|
"currency-formatter": "^1.5.7",
|
||||||
"date-fns": "2.10.0",
|
"date-fns": "2.10.0",
|
||||||
@@ -43,6 +44,7 @@
|
|||||||
"normalize.css": "8.0.1",
|
"normalize.css": "8.0.1",
|
||||||
"nprogress": "0.2.0",
|
"nprogress": "0.2.0",
|
||||||
"vue": "2.6.11",
|
"vue": "2.6.11",
|
||||||
|
"vue-chartjs": "^3.5.1",
|
||||||
"vue-meta": "2.3.3",
|
"vue-meta": "2.3.3",
|
||||||
"vue-router": "3.1.6",
|
"vue-router": "3.1.6",
|
||||||
"vuex": "3.1.2"
|
"vuex": "3.1.2"
|
||||||
|
|||||||
54
ui/src/components/mileageChart.vue
Normal file
54
ui/src/components/mileageChart.vue
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
<script>
|
||||||
|
import { Line } from 'vue-chartjs'
|
||||||
|
|
||||||
|
import axios from 'axios'
|
||||||
|
import { mapState } from 'vuex'
|
||||||
|
export default {
|
||||||
|
extends: Line,
|
||||||
|
props: { vehicle: { type: Object, required: true }, since: { type: Date, default: '' }, user: { type: Object, required: true } },
|
||||||
|
computed: {
|
||||||
|
...mapState('utils', ['isMobile']),
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
since(newOne, old) {
|
||||||
|
if (newOne === old) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
this.fetchMileage()
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data: function() {
|
||||||
|
return {
|
||||||
|
chartData: [],
|
||||||
|
}
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.fetchMileage()
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
showChart() {
|
||||||
|
var labels = this.chartData.map((x) => x.date.substr(0, 10))
|
||||||
|
var dataset = {
|
||||||
|
steppedLine: true,
|
||||||
|
label: `Mileage (${this.user.distanceUnitDetail.short}/${this.vehicle.fuelUnitDetail.short})`,
|
||||||
|
fill: true,
|
||||||
|
data: this.chartData.map((x) => x.mileage),
|
||||||
|
}
|
||||||
|
this.renderChart({ labels, datasets: [dataset] }, { maintainAspectRatio: false })
|
||||||
|
},
|
||||||
|
fetchMileage() {
|
||||||
|
axios
|
||||||
|
.get(`/api/vehicles/${this.vehicle.id}/mileage`, {
|
||||||
|
params: {
|
||||||
|
since: this.since,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
.then((response) => {
|
||||||
|
this.chartData = response.data
|
||||||
|
this.showChart()
|
||||||
|
})
|
||||||
|
.catch((err) => console.log(err))
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
@@ -40,6 +40,12 @@ export default {
|
|||||||
markProcessed(entry) {
|
markProcessed(entry) {
|
||||||
store.dispatch('vehicles/setQuickEntryAsProcessed', { id: entry.id }).then((data) => {})
|
store.dispatch('vehicles/setQuickEntryAsProcessed', { id: entry.id }).then((data) => {})
|
||||||
},
|
},
|
||||||
|
deleteQuickEntry(entry) {
|
||||||
|
var sure = confirm('This will delete this Quick Entry. This step cannot be reversed. Are you sure?')
|
||||||
|
if (sure) {
|
||||||
|
store.dispatch('vehicles/deleteQuickEntry', { id: entry.id }).then((data) => {})
|
||||||
|
}
|
||||||
|
},
|
||||||
imageModal(url) {
|
imageModal(url) {
|
||||||
const h = this.$createElement
|
const h = this.$createElement
|
||||||
const vnode = h('p', { class: 'image' }, [h('img', { attrs: { src: url } })])
|
const vnode = h('p', { class: 'image' }, [h('img', { attrs: { src: url } })])
|
||||||
@@ -86,8 +92,10 @@ export default {
|
|||||||
<router-link v-if="entry.processDate === null && vehicles.length" :to="`/vehicles/${vehicles[0].id}/expense`" class="card-footer-item"
|
<router-link v-if="entry.processDate === null && vehicles.length" :to="`/vehicles/${vehicles[0].id}/expense`" class="card-footer-item"
|
||||||
>Create Expense</router-link
|
>Create Expense</router-link
|
||||||
>
|
>
|
||||||
|
|
||||||
<a v-if="entry.processDate === null" class="card-footer-item" @click="markProcessed(entry)">Mark Processed</a>
|
<a v-if="entry.processDate === null" class="card-footer-item" @click="markProcessed(entry)">Mark Processed</a>
|
||||||
<p v-else>Processed on {{ parseAndFormatDateTime(entry.processDate) }}</p>
|
<p v-else class="card-footer-item">Processed on {{ parseAndFormatDateTime(entry.processDate) }}</p>
|
||||||
|
<a class="card-footer-item" type="is-danger" @click="deleteQuickEntry(entry)"> Delete</a>
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -181,7 +181,7 @@ export default {
|
|||||||
<table class="table is-hoverable">
|
<table class="table is-hoverable">
|
||||||
<tr>
|
<tr>
|
||||||
<td>Current Version</td>
|
<td>Current Version</td>
|
||||||
<td>2021.07.23</td>
|
<td>2021.08.13</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Website</td>
|
<td>Website</td>
|
||||||
|
|||||||
@@ -2,10 +2,13 @@
|
|||||||
import Layout from '@layouts/main.vue'
|
import Layout from '@layouts/main.vue'
|
||||||
import { parseAndFormatDate } from '@utils/format-date'
|
import { parseAndFormatDate } from '@utils/format-date'
|
||||||
import { mapState } from 'vuex'
|
import { mapState } from 'vuex'
|
||||||
|
import { addDays, addMonths } from 'date-fns'
|
||||||
import axios from 'axios'
|
import axios from 'axios'
|
||||||
import currencyFormtter from 'currency-formatter'
|
import currencyFormtter from 'currency-formatter'
|
||||||
import store from '@state/store'
|
import store from '@state/store'
|
||||||
import ShareVehicle from '@components/shareVehicle.vue'
|
import ShareVehicle from '@components/shareVehicle.vue'
|
||||||
|
import MileageChart from '@components/mileageChart.vue'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
page() {
|
page() {
|
||||||
return {
|
return {
|
||||||
@@ -18,7 +21,7 @@ export default {
|
|||||||
],
|
],
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
components: { Layout },
|
components: { Layout, MileageChart },
|
||||||
props: {
|
props: {
|
||||||
vehicle: {
|
vehicle: {
|
||||||
type: Object,
|
type: Object,
|
||||||
@@ -36,6 +39,15 @@ export default {
|
|||||||
title: '',
|
title: '',
|
||||||
stats: null,
|
stats: null,
|
||||||
users: [],
|
users: [],
|
||||||
|
dateRangeOptions: [
|
||||||
|
{ label: 'This week', value: 'this_week' },
|
||||||
|
{ label: 'This month', value: 'this_month' },
|
||||||
|
{ label: 'Past 30 days', value: 'past_30_days' },
|
||||||
|
{ label: 'Past 3 months', value: 'past_3_months' },
|
||||||
|
{ label: 'This year', value: 'this_year' },
|
||||||
|
{ label: 'All Time', value: 'all_time' },
|
||||||
|
],
|
||||||
|
dateRangeOption: 'past_30_days',
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
@@ -80,6 +92,7 @@ export default {
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
mounted() {
|
mounted() {
|
||||||
this.fetchFillups()
|
this.fetchFillups()
|
||||||
this.fetchExpenses()
|
this.fetchExpenses()
|
||||||
@@ -105,6 +118,7 @@ export default {
|
|||||||
})
|
})
|
||||||
.catch((err) => console.log(err))
|
.catch((err) => console.log(err))
|
||||||
},
|
},
|
||||||
|
|
||||||
fetchExpenses() {
|
fetchExpenses() {
|
||||||
axios
|
axios
|
||||||
.get(`/api/vehicles/${this.vehicle.id}/expenses`)
|
.get(`/api/vehicles/${this.vehicle.id}/expenses`)
|
||||||
@@ -245,6 +259,33 @@ export default {
|
|||||||
},
|
},
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
getStartDate() {
|
||||||
|
const toDate = new Date()
|
||||||
|
switch (this.dateRangeOption) {
|
||||||
|
case 'this_week':
|
||||||
|
var currentDayOfWeek = toDate.getDay()
|
||||||
|
var toSubtract = 0
|
||||||
|
if (currentDayOfWeek === 0) {
|
||||||
|
toSubtract = -6
|
||||||
|
}
|
||||||
|
if (currentDayOfWeek > 1) {
|
||||||
|
toSubtract = -1 * (currentDayOfWeek - 1)
|
||||||
|
}
|
||||||
|
return addDays(toDate, toSubtract)
|
||||||
|
case 'this_month':
|
||||||
|
return new Date(toDate.getFullYear(), toDate.getMonth(), 1)
|
||||||
|
case 'past_30_days':
|
||||||
|
return addDays(toDate, -30)
|
||||||
|
case 'past_3_months':
|
||||||
|
return addMonths(toDate, -3)
|
||||||
|
case 'this_year':
|
||||||
|
return new Date(toDate.getFullYear(), 0, 1)
|
||||||
|
case 'all_time':
|
||||||
|
return new Date(1969, 4, 20)
|
||||||
|
default:
|
||||||
|
return new Date(1969, 4, 20)
|
||||||
|
}
|
||||||
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
@@ -477,5 +518,18 @@ export default {
|
|||||||
<template v-slot:empty> No Attachments so far</template>
|
<template v-slot:empty> No Attachments so far</template>
|
||||||
</b-table>
|
</b-table>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="box">
|
||||||
|
<div class="columns">
|
||||||
|
<div class="column" :class="isMobile ? 'has-text-centered' : ''"> <h1 class="title">Stats</h1></div>
|
||||||
|
<div class="column">
|
||||||
|
<b-select v-model="dateRangeOption" class="is-pulled-right is-medium">
|
||||||
|
<option v-for="option in dateRangeOptions" :key="option.value" :value="option.value">
|
||||||
|
{{ option.label }}
|
||||||
|
</option>
|
||||||
|
</b-select></div
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
<MileageChart :vehicle="vehicle" :since="getStartDate()" :user="me" :height="300" />
|
||||||
|
</div>
|
||||||
</Layout>
|
</Layout>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -165,4 +165,11 @@ export const actions = {
|
|||||||
return data
|
return data
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
deleteQuickEntry({ commit, state, rootState, dispatch }, { id }) {
|
||||||
|
return axios.delete(`/api/quickEntries/${id}`).then((response) => {
|
||||||
|
const data = response.data
|
||||||
|
dispatch('fetchQuickEntries', { force: true })
|
||||||
|
return data
|
||||||
|
})
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user