CHANGELOG

OVERVIEW

Headings in GREEN denote bug has been fixed and is ready for deployment

Headings in ORANGE denote bug solution has been implemented but requires further testing to ensure proper functionality.

Headings in RED denotes bug has been acknowledged but has not yet been fixed

🐛 FIXED BUGS

HYBRID KEY LAYOUT

  • Fixed bug in code that broke three buttons from the Hybrid Checkout screen

  • You no longer need to add rows to the table and extra rows can be removed

TABLE MISSING FROM DB

  • added missing table "Discontinued_items" to DB

Query to add to existing sites:

USE [POS]
GO

/****** Object:  Table [dbo].[Discontinued_items]    Script Date: 9/29/2024 4:43:16 PM ******/
SET ANSI_NULLS ON
GO

SET QUOTED_IDENTIFIER ON
GO

CREATE TABLE [dbo].[Discontinued_items](
	[id] [int] IDENTITY(1,1) NOT NULL,
	[UPCCode] [nvarchar](255) NULL,
	[inserted_date] [datetime] NULL,
	[user_id] [int] NULL,
 CONSTRAINT [PK_Discontinued_items] PRIMARY KEY CLUSTERED 
(
	[id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY]
GO

SETTING TOGGLE [SHOW BELOW ZERO MESSAGE]

  • Allow sales below zero needs to be enabled for setting to work as intended.

  • The same screen is used for message and blocking

  • If you set Allow Sales Below Zero to ON and Show Below Zero Message to OFF you will not have this issue.

TOUCHSETUP BUG

  • Changed the code to hide Search Result Table once you lose focus from that field. Pressing [TAB] will hide it now

📁 UPDATED FEATURES

CHECKOUT SCREEN

  • Updated the Hybrid Checkout Screen with customizable feature that allows to hide & set the number of buttons etc.

  • Further testing needed to ensure proper functionality

DOCS FOLDER

  • Added new reports to docs folder

🆕 NEW FEATURES

SUPPORT CONTACT DETAILS IN APP

  • added support contact details to bottom left of application

QUICK ADD/UPDATE MULTIPLE ITEMS

  • Added a new menu to the radial menu that says duplicate multiple

  • A new form will open and you can start adding to the form then save

NEW NCR MAPPING

  • Added a table called NCR_KeyMap

  • Added new ncr setup in settings that allows custom references for [Dept UPC] [Tender Option] [ Amount]

QUERY TO ADD TO EXISTING SITES:

USE [POS]
GO

/****** Object:  Table [dbo].[NCR_KeyMap]    Script Date: 9/29/2024 4:28:14 PM ******/
SET ANSI_NULLS ON
GO

SET QUOTED_IDENTIFIER ON
GO

CREATE TABLE [dbo].[NCR_KeyMap](
	[id] [int] IDENTITY(1,1) NOT NULL,
	[key_map] [nchar](10) NULL,
	[is_dept] [bit] NULL,
	[is_tender] [bit] NULL,
	[is_amount] [bit] NULL,
	[txtupc] [nvarchar](max) NULL,
	[tender] [nvarchar](max) NULL,
	[amount] [int] NULL,
 CONSTRAINT [PK_NCR_KeyMap] PRIMARY KEY CLUSTERED 
(
	[id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO

Last updated