编辑
2024-12-11
易神10.0
00
请注意,本文编写于 415 天前,最后修改于 402 天前,其中某些信息可能已经过时。

提示

收银系统报错:列名 'POSCardPayMinDist'无效。

cce54d3c5a823743c5ddafc25c6aaba.png

注意

这个是缺少了脚本,执行下面脚本即可

--20240716VIP卡等级添加储值卡支付最低折扣字段 if not exists(select 1 from syscolumns where id=OBJECT_ID(N'dbo.BAS_VIP_KIND') and name='POSCardPayMinDist') alter table BAS_VIP_KIND add POSCardPayMinDist numeric(4,2) null CONSTRAINT [DF_BAS_VIP_KIND_POSCardPayMinDist] DEFAULT (0) GO --- 20240716 VIP卡等级 新 添加储值卡支付最低折扣字段 if not exists(select 1 from syscolumns where id=OBJECT_ID(N'dbo.BAS_VIP_KINDNew') and name='POSCardPayMinDist') alter table BAS_VIP_KINDNew add POSCardPayMinDist numeric(4,2) null CONSTRAINT [DF_BAS_VIP_KINDNew_POSCardPayMinDist] DEFAULT (0) GO

本文作者:易神软件

本文链接:

版权声明:本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!