Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e918644a5b | ||
|
|
eb7aa20def |
@@ -1 +1 @@
|
||||
__version__ = "15.2.1"
|
||||
__version__ = "15.2.2"
|
||||
|
||||
@@ -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" }]
|
||||
|
||||
Generated
+1
-1
@@ -211,7 +211,7 @@ wheels = [
|
||||
|
||||
[[package]]
|
||||
name = "brewman"
|
||||
version = "15.2.1"
|
||||
version = "15.2.2"
|
||||
source = { editable = "." }
|
||||
dependencies = [
|
||||
{ name = "alembic" },
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "overlord",
|
||||
"version": "15.2.1",
|
||||
"version": "15.2.2",
|
||||
"scripts": {
|
||||
"ng": "ng",
|
||||
"start": "ng serve",
|
||||
|
||||
@@ -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();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user