Compare commits
3 Commits
8669904edd
...
eee2c201fa
Author | SHA1 | Date | |
---|---|---|---|
eee2c201fa | |||
68eff11fdc | |||
485f58c61d |
@ -1,6 +1,6 @@
|
|||||||
# syntax=docker/dockerfile:1.7-labs
|
# syntax=docker/dockerfile:1.7-labs
|
||||||
|
|
||||||
FROM mcr.microsoft.com/dotnet/sdk:9.0-preview-alpine AS build1
|
FROM mcr.microsoft.com/dotnet/sdk:9.0-alpine AS build1
|
||||||
|
|
||||||
WORKDIR /src
|
WORKDIR /src
|
||||||
COPY ./.config ./
|
COPY ./.config ./
|
||||||
@ -10,7 +10,7 @@ WORKDIR Groceries
|
|||||||
COPY ./Groceries/libman.json ./
|
COPY ./Groceries/libman.json ./
|
||||||
RUN dotnet libman restore
|
RUN dotnet libman restore
|
||||||
|
|
||||||
FROM mcr.microsoft.com/dotnet/sdk:9.0-preview-alpine AS build2
|
FROM mcr.microsoft.com/dotnet/sdk:9.0-alpine AS build2
|
||||||
|
|
||||||
WORKDIR /src
|
WORKDIR /src
|
||||||
COPY ./Groceries.sln ./
|
COPY ./Groceries.sln ./
|
||||||
@ -23,7 +23,7 @@ COPY . ./
|
|||||||
COPY --from=build1 /src ./
|
COPY --from=build1 /src ./
|
||||||
RUN dotnet publish --no-restore --output /out
|
RUN dotnet publish --no-restore --output /out
|
||||||
|
|
||||||
FROM mcr.microsoft.com/dotnet/aspnet:9.0-preview-alpine-composite AS base
|
FROM mcr.microsoft.com/dotnet/aspnet:9.0-alpine-composite AS base
|
||||||
WORKDIR /groceries
|
WORKDIR /groceries
|
||||||
|
|
||||||
COPY --from=build2 /out .
|
COPY --from=build2 /out .
|
||||||
|
@ -33,6 +33,9 @@ public class AppDbContext : DbContext
|
|||||||
|
|
||||||
entity.Property(e => e.Format)
|
entity.Property(e => e.Format)
|
||||||
.HasDefaultValueSql();
|
.HasDefaultValueSql();
|
||||||
|
|
||||||
|
entity.Property(e => e.LastScannedAt)
|
||||||
|
.HasDefaultValueSql();
|
||||||
});
|
});
|
||||||
|
|
||||||
modelBuilder.Entity<ItemPurchase>(entity =>
|
modelBuilder.Entity<ItemPurchase>(entity =>
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
<PackageReference Include="DbUp-PostgreSQL" Version="5.0.40" />
|
<PackageReference Include="DbUp-PostgreSQL" Version="5.0.40" />
|
||||||
<PackageReference Include="EFCore.NamingConventions" Version="8.0.3" />
|
<PackageReference Include="EFCore.NamingConventions" Version="8.0.3" />
|
||||||
<PackageReference Include="Humanizer.Core" Version="2.14.1" />
|
<PackageReference Include="Humanizer.Core" Version="2.14.1" />
|
||||||
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.4" />
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.8" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
@ -12,4 +12,5 @@ public class ItemBarcode
|
|||||||
public Guid ItemId { get; init; }
|
public Guid ItemId { get; init; }
|
||||||
public long BarcodeData { get; init; }
|
public long BarcodeData { get; init; }
|
||||||
public string Format { get; init; }
|
public string Format { get; init; }
|
||||||
|
public DateTime LastScannedAt { get; set; }
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,7 @@
|
|||||||
|
ALTER TABLE item_barcodes
|
||||||
|
ADD COLUMN IF NOT EXISTS last_scanned_at timestamptz NOT NULL DEFAULT current_timestamp;
|
||||||
|
|
||||||
|
UPDATE item_barcodes
|
||||||
|
SET last_scanned_at = created_at
|
||||||
|
FROM item_purchases
|
||||||
|
WHERE item_barcodes.item_id = item_purchases.item_id AND is_last_purchase = true;
|
@ -9,6 +9,7 @@
|
|||||||
<meta name="view-transition" content="same-origin" />
|
<meta name="view-transition" content="same-origin" />
|
||||||
<meta name="turbo-prefetch" content="false" />
|
<meta name="turbo-prefetch" content="false" />
|
||||||
|
|
||||||
|
<link rel="stylesheet" type="text/css" href="@Assets["lib/inter/index.css"]" data-turbo-track="reload" />
|
||||||
<link rel="stylesheet" type="text/css" href="@Assets["css/main.css"]" data-turbo-track="reload" />
|
<link rel="stylesheet" type="text/css" href="@Assets["css/main.css"]" data-turbo-track="reload" />
|
||||||
|
|
||||||
<ImportMap />
|
<ImportMap />
|
||||||
|
@ -76,7 +76,16 @@ public class TransactionsController : Controller
|
|||||||
.FirstOrDefaultAsync();
|
.FirstOrDefaultAsync();
|
||||||
|
|
||||||
item ??= new Item(id: default);
|
item ??= new Item(id: default);
|
||||||
item.Barcodes.Add(new ItemBarcode(item.Id, barcodeData.Value, barcodeFormat));
|
|
||||||
|
var barcode = new ItemBarcode(item.Id, barcodeData.Value, barcodeFormat);
|
||||||
|
item.Barcodes.Add(barcode);
|
||||||
|
|
||||||
|
if (item.Id != default)
|
||||||
|
{
|
||||||
|
barcode.LastScannedAt = DateTime.UtcNow;
|
||||||
|
dbContext.Update(barcode);
|
||||||
|
await dbContext.SaveChangesAsync();
|
||||||
|
}
|
||||||
|
|
||||||
// TODO: Fix `MinValue` hack - view models?
|
// TODO: Fix `MinValue` hack - view models?
|
||||||
transactionItem = new TransactionItem(item.Id, decimal.MinValue, int.MinValue) { Item = item };
|
transactionItem = new TransactionItem(item.Id, decimal.MinValue, int.MinValue) { Item = item };
|
||||||
|
@ -3,7 +3,11 @@
|
|||||||
"defaultProvider": "unpkg",
|
"defaultProvider": "unpkg",
|
||||||
"libraries": [
|
"libraries": [
|
||||||
{
|
{
|
||||||
"library": "@hotwired/turbo@8.0.4",
|
"library": "@fontsource-variable/inter@5.1.0",
|
||||||
|
"destination": "wwwroot/lib/inter/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"library": "@hotwired/turbo@8.0.10",
|
||||||
"destination": "wwwroot/lib/hotwired/turbo/"
|
"destination": "wwwroot/lib/hotwired/turbo/"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -1,16 +1,8 @@
|
|||||||
@import url("https://rsms.me/inter/inter.css");
|
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
font-family: "Inter", sans-serif;
|
font-family: "Inter Variable", sans-serif;
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
}
|
}
|
||||||
|
|
||||||
@supports (font-variation-settings: normal) {
|
|
||||||
:root {
|
|
||||||
font-family: "Inter var", sans-serif;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
* {
|
* {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
@ -13,7 +13,7 @@ export default class ModalController extends Controller {
|
|||||||
if (!this.element.open) {
|
if (!this.element.open) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (event.type === "turbo:submit-end" && (event.detail.formSubmission.method === "get" || !event.detail.success)) {
|
if (event.type === "turbo:submit-end" && (event.detail.formSubmission.method === "GET" || !event.detail.success)) {
|
||||||
// Don't close modal if form method was GET or submission failed
|
// Don't close modal if form method was GET or submission failed
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user