质检打印模板比较特殊在报表下面
所以手动发布无效,需要用后台发布
--查询
select * from UBF_Print_Templates WHERE TemplateID='f8728f51-2f83-4426-bb97-b13980789755' or TemplateName like ('质检%')
--备份打印模板
SELECT * into UBF_Print_Templates_bak from UBF_Print_Templates
--发布模板
DECLARE @SNIndex bigint
exec[dbo].[AllocSerials]
@AllocCount= 10000,
@StartSN=@SNIndex output
DELETE FROM UBF_Print_Templates WHERE TemplateID in ('906a2b70-7c88-45eb-955f-7a2aa37855fb')
INSERT INTO UBF_Print_Templates(ID,CreatedOn,CreatedBy,ModifiedOn,ModifiedBy,Culture,IsDefault,CatalogType,TemplateName,TemplateID) VALUES
(@SNIndex+ 0,'2023-01-13 11:4:48','管理员','2023-01-13 11:4:48','管理员','zh-CN', 1,'UFIDA.U9.QC.QC.DocPrint','11','906a2b70-7c88-45eb-955f-7a2aa37855fb')