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

注意
这个是缺少了脚本,执行下面脚本即可
--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 许可协议。转载请注明出处!