Compare commits

..
2 Commits
Author SHA1 Message Date
tanshu e918644a5b Version Bump v15.2.2 2026-08-27 12:35:59 +05:30
tanshu eb7aa20def Closing Stock route sent date, but we were taking id as input. 2026-08-27 07:05:46 +00:00
6 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -1 +1 @@
__version__ = "15.2.1"
__version__ = "15.2.2"
+1 -1
View File
@@ -1,6 +1,6 @@
[project]
name = "brewman"
version = "15.2.1"
version = "15.2.2"
description = "Accounting plus inventory management for a restaurant."
requires-python = ">=3.14"
authors = [{ name = "tanshu", email = "git@tanshu.com" }]
+1 -1
View File
@@ -211,7 +211,7 @@ wheels = [
[[package]]
name = "brewman"
version = "15.2.1"
version = "15.2.2"
source = { editable = "." }
dependencies = [
{ name = "alembic" },
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "overlord",
"version": "15.2.1",
"version": "15.2.2",
"scripts": {
"ng": "ng",
"start": "ng serve",
+1 -1
View File
@@ -1,6 +1,6 @@
export const environment = {
ACCESS_TOKEN_REFRESH_MINUTES: 10, // refresh token 10 minutes before expiry
version: '15.2.1',
version: '15.2.2',
title: 'HnG / TGB',
};
@@ -72,11 +72,11 @@ export class ClosingStockComponent {
pageIndex = signal(0);
sortActive = signal('');
sortDirection = signal('');
id = input(null, { transform: (v: string | null | undefined) => v ?? null });
date = input(null, { transform: (v: string | null | undefined) => v ?? null });
d = input(null, { transform: (v: string | null | undefined) => v ?? null });
startDate = input(null, { transform: (v: string | null | undefined) => v ?? null });
finishDate = input(null, { transform: (v: string | null | undefined) => v ?? null });
infoResource = this.ser.list(this.id, this.d);
infoResource = this.ser.list(this.date, this.d);
info = computed(() => this.infoResource.value() ?? new ClosingStock());
costCentresResource = this.costCentreSer.list();