|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册账号
×
T+单据打开报‘’/tplus”应用程序的服务器错误
---宽度必须是非负数。参数名:value
作者:姚培德
问题现象:T+12.2普及版费用单报错,一串英文.(关键字:宽度必须是非负数)
问题分析:造成这样的问题是由于DynPropertyString字段指的是【位置动态属性】,宽屏显示屏拖动很长后造成的labelWidth760onovertrue
修改760为100。然后进行软件重新修改移动位置。
Width 字段的宽度最大可用值为1100
DynPropertyString字段指的是位置的方位:labelWidth760onovertrue
解决方案:
备份数据执行脚本:
--labelWidth不要大于eap_Voucher的Width
--labelWidth760onovertrue
--labelWidth中的值还原默认值100,
update eap_VoucherControls
set DynPropertyString='labelWidth100onovertrue'
where VoucherID =(select id from eap_Voucher where title ='费用单') and Name='Clerk'
名称解析:eap_VoucherControls: 单据控件表
DynPropertyString :单元格移动位置动态属性
VoucherID:关联单据ID
eap_Voucher:单据表
name=clerk: 列名为业务员
类似问题处理方案:问题现象1:打开销货单和退货单报错解决方案:
UPDATE eap_VoucherControls
SET Width=220, DynPropertyString = 'labelWidth100onovertrue'
WHERE id IN(SELECT id FROM dbo.eap_VoucherControls
WHERE VoucherID IN(SELECT id FROM dbo.eap_Voucher WHERE [Name]='SaleDelivery')AND [Name]='origAllowances')
名词解释:
Width:单元格的宽度 DynPropertyString:单元格移动位置动态属性 SaleDelivery:销货单
origAllowances:原始标题
问题现象2:打开销售订单界面提示“/tplus”应用程序中的服务器错误解决方案:
update eap_VoucherControls set DynPropertyString='labelWidth100onovertrueRefDropDownFieldsCode:往来单位编码,Name:往来单位名称,SettlementPartner.Name:结算客户ShowTimeFalse'
where VoucherID in (
select id from eap_Voucher where Name='SaleOrder') and name='pubuserdefnvc1'
名词解释:
SaleOrder: 销售订单 pubuserdefnvc1:字符公用自定义项1
问题现象3:销货单打开报错
UPDATE eap_VoucherControls set DynPropertyString='labelWidth100onovertrue'
where VoucherID in
(
select id from eap_Voucher where name like 'SaleDelivery'
) and DynPropertyString is not null and name='Customer'
名称解释:
SaleDelivery:销货单 Custome:客户 |
|