123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641 |
- DECLARE @StartSN BIGINT
- IF (NOT EXISTS (SELECT ID FROM BC_CreateDocSVMessageBE WHERE OperatorKey = 'CreateRcvRptDocCostWithPackage'))
- BEGIN
- EXECUTE AllocSerials 1,@StartSN OUTPUT
- INSERT INTO BC_CreateDocSVMessageBE (
- [ID],
- [CreatedOn],
- [CreatedBy],
- [SysVersion],
- [DocType],
- [ServeName],
- [ParamName],
- [DtoListName],
- [DtoName],
- [RestServeType], --0,条码解析 1,后台具体生单服务
- [IfCustomerDef], --标识是否客开插入 0:标准产品 1:客开
- [OperatorKey], --操作key, 唯一索引:前台传递到后台,用来匹配具体配置的,PDA端就需要传递
- [ServerDLLName], --服务DLLName
- [ServerDLLPath], --服务DLLPath+DLLName
- [DTODLLName], --参数DTODLLName
- [DTODLLPath] --参数DTODLLPath+Name
- )
- VALUES (
- @StartSN,
- GETDATE(),
- 'cust',
- 1,
- 9,
- 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.CreateRcvRptDocCostWithPackage',
- 'LineDTOs',
- 'List<UFIDA.U9.ISV.Mobile.MO.RcvRptDocCostDTOData>',
- 'UFIDA.U9.ISV.Mobile.MO.RcvRptDocCostDTOData',
- 0,
- 1,
- 'CreateRcvRptDocCostWithPackage', --操作Key
- 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- 'ApplicationServer\Libs\UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- 'UFIDA.U9.ISV.MobileAppsISV.Deploy.dll',
- 'ApplicationServer\Libs\UFIDA.U9.ISV.MobileAppsISV.Deploy.dll'
- )
- END ELSE
- BEGIN
- UPDATE BC_CreateDocSVMessageBE SET
- [DocType] = 9,
- [ServeName] = 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.CreateRcvRptDocCostWithPackage',
- [ParamName] = 'LineDTOs',
- [DtoListName] = 'List<UFIDA.U9.ISV.Mobile.MO.RcvRptDocCostDTOData>',
- [DtoName] = 'UFIDA.U9.ISV.Mobile.MO.RcvRptDocCostDTOData',
- [RestServeType] = 0,
- [IfCustomerDef] = 1,
- [ServerDLLName] = 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- [ServerDLLPath] = 'ApplicationServer\Libs\UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- [DTODLLName] = 'UFIDA.U9.ISV.MobileAppsISV.Deploy.dll',
- [DTODLLPath] = 'ApplicationServer\Libs\UFIDA.U9.ISV.MobileAppsISV.Deploy.dll'
- WHERE OperatorKey = 'CreateRcvRptDocCostWithPackage'
- END
- IF (NOT EXISTS (SELECT ID FROM BC_CreateDocSVMessageBE WHERE OperatorKey = 'POToRcvBCSVWithPackage'))
- BEGIN
- -- DECLARE @StartSN BIGINT;
- EXECUTE AllocSerials 1,@StartSN OUTPUT
- INSERT INTO BC_CreateDocSVMessageBE (
- [ID],
- [CreatedOn],
- [CreatedBy],
- [SysVersion],
- [DocType],
- [ServeName],
- [ParamName],
- [DtoListName],
- [DtoName],
- [RestServeType], --0,条码解析 1,后台具体生单服务
- [IfCustomerDef], --标识是否客开插入 0:标准产品 1:客开
- [OperatorKey], --操作key, 唯一索引:前台传递到后台,用来匹配具体配置的,PDA端就需要传递
- [ServerDLLName], --服务DLLName
- [ServerDLLPath], --服务DLLPath+DLLName
- [DTODLLName], --参数DTODLLName
- [DTODLLPath] --参数DTODLLPath+Name
- )
- VALUES (
- @StartSN,
- GETDATE(),
- 'cust',
- 1,
- 0,
- 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.POToRcvBCSVWithPackage',
- 'SrcDocBarCodes',
- 'List<UFIDA.U9.ISV.Mobile.PM.POToRcvBCDTOData>',
- 'UFIDA.U9.ISV.Mobile.PM.POToRcvBCDTOData',
- 0,
- 1,
- 'POToRcvBCSVWithPackage', --操作Key
- 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- 'ApplicationServer\Libs\UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- 'UFIDA.U9.ISV.MobileAppsISV.Deploy.dll',
- 'ApplicationServer\Libs\UFIDA.U9.ISV.MobileAppsISV.Deploy.dll'
- )
- END ELSE
- BEGIN
- UPDATE BC_CreateDocSVMessageBE SET
- [DocType] = 0,
- [ServeName] = 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.POToRcvBCSVWithPackage',
- [ParamName] = 'SrcDocBarCodes',
- [DtoListName] = 'List<UFIDA.U9.ISV.Mobile.PM.POToRcvBCDTOData>',
- [DtoName] = 'UFIDA.U9.ISV.Mobile.PM.POToRcvBCDTOData',
- [RestServeType] = 0,
- [IfCustomerDef] = 1,
- [ServerDLLName] = 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- [ServerDLLPath] = 'ApplicationServer\Libs\UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- [DTODLLName] = 'UFIDA.U9.ISV.MobileAppsISV.Deploy.dll',
- [DTODLLPath] = 'ApplicationServer\Libs\UFIDA.U9.ISV.MobileAppsISV.Deploy.dll'
- WHERE OperatorKey = 'POToRcvBCSVWithPackage'
- END
- IF (NOT EXISTS (SELECT ID FROM BC_CreateDocSVMessageBE WHERE OperatorKey = 'CreateDocByQuickTransInWithPackage'))
- BEGIN
- -- DECLARE @StartSN BIGINT;
- EXECUTE AllocSerials 1,@StartSN OUTPUT
- INSERT INTO BC_CreateDocSVMessageBE (
- [ID],
- [CreatedOn],
- [CreatedBy],
- [SysVersion],
- [DocType],
- [ServeName],
- [ParamName],
- [DtoListName],
- [DtoName],
- [RestServeType], --0,条码解析 1,后台具体生单服务
- [IfCustomerDef], --标识是否客开插入 0:标准产品 1:客开
- [OperatorKey], --操作key, 唯一索引:前台传递到后台,用来匹配具体配置的,PDA端就需要传递
- [ServerDLLName], --服务DLLName
- [ServerDLLPath], --服务DLLPath+DLLName
- [DTODLLName], --参数DTODLLName
- [DTODLLPath] --参数DTODLLPath+Name
- )
- VALUES (
- @StartSN,
- GETDATE(),
- 'cust',
- 1,
- 4,
- 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.CreateDocByQuickTransInWithPackage',
- 'ParamInList',
- 'System.Collections.Generic.List`1[UFIDA.U9.BC.QuickTransIn.CreateDocParamDTOData]',
- 'UFIDA.U9.BC.QuickTransIn.CreateDocParamDTOData',
- 1,
- 1,
- 'CreateDocByQuickTransInWithPackage', --操作Key
- 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- 'ApplicationServer\Libs\UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- 'UFIDA.U9.BC.BCRestSV.Deploy.dll',
- 'ApplicationServer\Libs\UFIDA.U9.BC.BCRestSV.Deploy.dll'
- )
- END ELSE
- BEGIN
- UPDATE BC_CreateDocSVMessageBE SET
- [DocType] = 4,
- [ServeName] = 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.CreateDocByQuickTransInWithPackage',
- [ParamName] = 'ParamInList',
- [DtoListName] = 'System.Collections.Generic.List`1[UFIDA.U9.BC.QuickTransIn.CreateDocParamDTOData]',
- [DtoName] = 'UFIDA.U9.BC.QuickTransIn.CreateDocParamDTOData',
- [RestServeType] = 1,
- [IfCustomerDef] = 1,
- [ServerDLLName] = 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- [ServerDLLPath] = 'ApplicationServer\Libs\UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- [DTODLLName] = 'UFIDA.U9.BC.BCRestSV.Deploy.dll',
- [DTODLLPath] = 'ApplicationServer\Libs\UFIDA.U9.BC.BCRestSV.Deploy.dll'
- WHERE OperatorKey = 'CreateDocByQuickTransInWithPackage'
- END
- IF (NOT EXISTS (SELECT ID FROM BC_CreateDocSVMessageBE WHERE OperatorKey = 'CreateMiscRcvTransWithPackage'))
- BEGIN
- -- DECLARE @StartSN BIGINT;
- EXECUTE AllocSerials 1,@StartSN OUTPUT
- INSERT INTO BC_CreateDocSVMessageBE (
- [ID],
- [CreatedOn],
- [CreatedBy],
- [SysVersion],
- [DocType],
- [ServeName],
- [ParamName],
- [DtoListName],
- [DtoName],
- [RestServeType], --0,条码解析 1,后台具体生单服务
- [IfCustomerDef], --标识是否客开插入 0:标准产品 1:客开
- [OperatorKey], --操作key, 唯一索引:前台传递到后台,用来匹配具体配置的,PDA端就需要传递
- [ServerDLLName], --服务DLLName
- [ServerDLLPath], --服务DLLPath+DLLName
- [DTODLLName], --参数DTODLLName
- [DTODLLPath] --参数DTODLLPath+Name
- )
- VALUES (
- @StartSN,
- GETDATE(),
- 'cust',
- 1,
- 0,
- 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.CreateMiscRcvTransWithPackage',
- 'LineDTOs',
- 'List<UFIDA.U9.ISV.INV.MiscShipmentLineDTOData>',
- 'UFIDA.U9.ISV.INV.MiscShipmentLineDTOData',
- 1,
- 1,
- 'CreateMiscRcvTransWithPackage', --操作Key
- 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- 'ApplicationServer\Libs\UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- 'UFIDA.U9.ISV.MobileAppsISV.Deploy.dll',
- 'ApplicationServer\Libs\UFIDA.U9.ISV.MobileAppsISV.Deploy.dll'
- )
- END ELSE
- BEGIN
- UPDATE BC_CreateDocSVMessageBE SET
- [DocType] = 0,
- [ServeName] = 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.CreateMiscRcvTransWithPackage',
- [ParamName] = 'LineDTOs',
- [DtoListName] = 'List<UFIDA.U9.ISV.INV.MiscShipmentLineDTOData>',
- [DtoName] = 'UFIDA.U9.ISV.INV.MiscShipmentLineDTOData',
- [RestServeType] = 1,
- [IfCustomerDef] = 1,
- [ServerDLLName] = 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- [ServerDLLPath] = 'ApplicationServer\Libs\UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- [DTODLLName] = 'UFIDA.U9.ISV.MobileAppsISV.Deploy.dll',
- [DTODLLPath] = 'ApplicationServer\Libs\UFIDA.U9.ISV.MobileAppsISV.Deploy.dll'
- WHERE OperatorKey = 'CreateMiscRcvTransWithPackage'
- END
- IF (NOT EXISTS (SELECT ID FROM BC_CreateDocSVMessageBE WHERE OperatorKey = 'CreateMiscShipmentWithPackageSV'))
- BEGIN
- -- DECLARE @StartSN BIGINT;
- EXECUTE AllocSerials 1,@StartSN OUTPUT
- INSERT INTO BC_CreateDocSVMessageBE (
- [ID],
- [CreatedOn],
- [CreatedBy],
- [SysVersion],
- [DocType],
- [ServeName],
- [ParamName],
- [DtoListName],
- [DtoName],
- [RestServeType], --0,条码解析 1,后台具体生单服务
- [IfCustomerDef], --标识是否客开插入 0:标准产品 1:客开
- [OperatorKey], --操作key, 唯一索引:前台传递到后台,用来匹配具体配置的,PDA端就需要传递
- [ServerDLLName], --服务DLLName
- [ServerDLLPath], --服务DLLPath+DLLName
- [DTODLLName], --参数DTODLLName
- [DTODLLPath] --参数DTODLLPath+Name
- )
- VALUES (
- @StartSN,
- GETDATE(),
- 'cust',
- 1,
- 0,
- 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.CreateMiscShipmentWithPackageSV',
- 'LineDTOs',
- 'List<UFIDA.U9.ISV.INV.MiscShipmentLineDTOData>',
- 'UFIDA.U9.ISV.INV.MiscShipmentLineDTOData',
- 1,
- 1,
- 'CreateMiscShipmentWithPackageSV', --操作Key
- 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- 'ApplicationServer\Libs\UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- 'UFIDA.U9.ISV.MobileAppsISV.Deploy.dll',
- 'ApplicationServer\Libs\UFIDA.U9.ISV.MobileAppsISV.Deploy.dll'
- )
- END ELSE
- BEGIN
- UPDATE BC_CreateDocSVMessageBE SET
- [DocType] = 0,
- [ServeName] = 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.CreateMiscShipmentWithPackageSV',
- [ParamName] = 'LineDTOs',
- [DtoListName] = 'List<UFIDA.U9.ISV.INV.MiscShipmentLineDTOData>',
- [DtoName] = 'UFIDA.U9.ISV.INV.MiscShipmentLineDTOData',
- [RestServeType] = 1,
- [IfCustomerDef] = 1,
- [ServerDLLName] = 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- [ServerDLLPath] = 'ApplicationServer\Libs\UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- [DTODLLName] = 'UFIDA.U9.ISV.MobileAppsISV.Deploy.dll',
- [DTODLLPath] = 'ApplicationServer\Libs\UFIDA.U9.ISV.MobileAppsISV.Deploy.dll'
- WHERE OperatorKey = 'CreateMiscShipmentWithPackageSV'
- END
- IF (NOT EXISTS (SELECT ID FROM BC_CreateDocSVMessageBE WHERE OperatorKey = 'CustUploadFileSV'))
- BEGIN
- -- DECLARE @StartSN BIGINT;
- EXECUTE AllocSerials 1,@StartSN OUTPUT
- INSERT INTO BC_CreateDocSVMessageBE (
- [ID],
- [CreatedOn],
- [CreatedBy],
- [SysVersion],
- [DocType],
- [ServeName],
- [ParamName],
- [DtoListName],
- [DtoName],
- [RestServeType], --0,条码解析 1,后台具体生单服务
- [IfCustomerDef], --标识是否客开插入 0:标准产品 1:客开
- [OperatorKey], --操作key, 唯一索引:前台传递到后台,用来匹配具体配置的,PDA端就需要传递
- [ServerDLLName], --服务DLLName
- [ServerDLLPath], --服务DLLPath+DLLName
- [DTODLLName], --参数DTODLLName
- [DTODLLPath] --参数DTODLLPath+Name
- )
- VALUES (
- @StartSN,
- GETDATE(),
- 'cust',
- 1,
- 14,
- 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.FileUploadService',
- 'FileInfos',
- 'List<UFIDA.U9.Cust.Kusi.CJJ.RestApi.FileInfoDTOData>',
- 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.FileInfoDTOData',
- 0,
- 1,
- 'CustUploadFileSV', --操作Key
- 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- 'ApplicationServer\Libs\UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.Deploy.dll',
- 'ApplicationServer\Libs\UFIDA.U9.Cust.Kusi.CJJ.RestApi.Deploy.dll'
- )
- END ELSE
- BEGIN
- UPDATE BC_CreateDocSVMessageBE SET
- [DocType] = 14,
- [ServeName] = 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.FileUploadService',
- [ParamName] = 'FileInfos',
- [DtoListName] = 'List<UFIDA.U9.Cust.Kusi.CJJ.RestApi.FileInfoDTOData>',
- [DtoName] = 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.FileInfoDTOData',
- [RestServeType] = 0,
- [IfCustomerDef] = 1,
- [ServerDLLName] = 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- [ServerDLLPath] = 'ApplicationServer\Libs\UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- [DTODLLName] = 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.Deploy.dll',
- [DTODLLPath] = 'ApplicationServer\Libs\UFIDA.U9.Cust.Kusi.CJJ.RestApi.Deploy.dll'
- WHERE OperatorKey = 'CustUploadFileSV'
- END
- IF (NOT EXISTS (SELECT ID FROM BC_CreateDocSVMessageBE WHERE OperatorKey = 'GetItemBarCodeDetails'))
- BEGIN
- -- DECLARE @StartSN BIGINT;
- EXECUTE AllocSerials 1,@StartSN OUTPUT
- INSERT INTO BC_CreateDocSVMessageBE (
- [ID],
- [CreatedOn],
- [CreatedBy],
- [SysVersion],
- [DocType],
- [ServeName],
- [ParamName],
- [DtoListName],
- [DtoName],
- [RestServeType], --0,条码解析 1,后台具体生单服务
- [IfCustomerDef], --标识是否客开插入 0:标准产品 1:客开
- [OperatorKey], --操作key, 唯一索引:前台传递到后台,用来匹配具体配置的,PDA端就需要传递
- [ServerDLLName], --服务DLLName
- [ServerDLLPath], --服务DLLPath+DLLName
- [DTODLLName], --参数DTODLLName
- [DTODLLPath] --参数DTODLLPath+Name
- )
- VALUES (
- @StartSN,
- GETDATE(),
- 'cust',
- 1,
- 14,
- 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.GetItemBarCodeDetails',
- 'BarCodeInfo',
- 'List<UFIDA.U9.Cust.Kusi.CJJ.RestApi.BarCodeDTOData>',
- 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.BarCodeDTOData',
- 1,
- 1,
- 'GetItemBarCodeDetails', --操作Key
- 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- 'ApplicationServer\Libs\UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.Deploy.dll',
- 'ApplicationServer\Libs\UFIDA.U9.Cust.Kusi.CJJ.RestApi.Deploy.dll'
- )
- END ELSE
- BEGIN
- UPDATE BC_CreateDocSVMessageBE SET
- [DocType] = 14,
- [ServeName] = 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.GetItemBarCodeDetails',
- [ParamName] = 'BarCodeInfo',
- [DtoListName] = 'List<UFIDA.U9.Cust.Kusi.CJJ.RestApi.BarCodeDTOData>',
- [DtoName] = 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.BarCodeDTOData',
- [RestServeType] = 1,
- [IfCustomerDef] = 1,
- [ServerDLLName] = 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- [ServerDLLPath] = 'ApplicationServer\Libs\UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- [DTODLLName] = 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.Deploy.dll',
- [DTODLLPath] = 'ApplicationServer\Libs\UFIDA.U9.Cust.Kusi.CJJ.RestApi.Deploy.dll'
- WHERE OperatorKey = 'GetItemBarCodeDetails'
- END
- IF (NOT EXISTS (SELECT ID FROM BC_CreateDocSVMessageBE WHERE OperatorKey = 'AnalyzeDocBarCodeSV'))
- BEGIN
- -- DECLARE @StartSN BIGINT;
- EXECUTE AllocSerials 1,@StartSN OUTPUT
- INSERT INTO BC_CreateDocSVMessageBE (
- [ID],
- [CreatedOn],
- [CreatedBy],
- [SysVersion],
- [DocType],
- [ServeName],
- [ParamName],
- [DtoListName],
- [DtoName],
- [RestServeType], --0,条码解析 1,后台具体生单服务
- [IfCustomerDef], --标识是否客开插入 0:标准产品 1:客开
- [OperatorKey], --操作key, 唯一索引:前台传递到后台,用来匹配具体配置的,PDA端就需要传递
- [ServerDLLName], --服务DLLName
- [ServerDLLPath], --服务DLLPath+DLLName
- [DTODLLName], --参数DTODLLName
- [DTODLLPath] --参数DTODLLPath+Name
- )
- VALUES (
- @StartSN,
- GETDATE(),
- 'cust',
- 1,
- 14,
- 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.AnalyzeDocBarCodeSV',
- 'BarCodes',
- 'List<UFIDA.U9.Cust.Kusi.CJJ.RestApi.AnalyzeDocBarCodeDTOData>',
- 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.AnalyzeDocBarCodeDTOData',
- 1,
- 1,
- 'AnalyzeDocBarCodeSV', --操作Key
- 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- 'ApplicationServer\Libs\UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.Deploy.dll',
- 'ApplicationServer\Libs\UFIDA.U9.Cust.Kusi.CJJ.RestApi.Deploy.dll'
- )
- END ELSE
- BEGIN
- UPDATE BC_CreateDocSVMessageBE SET
- [DocType] = 14,
- [ServeName] = 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.AnalyzeDocBarCodeSV',
- [ParamName] = 'BarCodes',
- [DtoListName] = 'List<UFIDA.U9.Cust.Kusi.CJJ.RestApi.AnalyzeDocBarCodeDTOData>',
- [DtoName] = 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.AnalyzeDocBarCodeDTOData',
- [RestServeType] = 1,
- [IfCustomerDef] = 1,
- [ServerDLLName] = 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- [ServerDLLPath] = 'ApplicationServer\Libs\UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- [DTODLLName] = 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.Deploy.dll',
- [DTODLLPath] = 'ApplicationServer\Libs\UFIDA.U9.Cust.Kusi.CJJ.RestApi.Deploy.dll'
- WHERE OperatorKey = 'AnalyzeDocBarCodeSV'
- END
- IF (NOT EXISTS (SELECT ID FROM BC_CreateDocSVMessageBE WHERE OperatorKey = 'DeleteAttachmentSV'))
- BEGIN
- -- DECLARE @StartSN BIGINT;
- EXECUTE AllocSerials 1,@StartSN OUTPUT
- INSERT INTO BC_CreateDocSVMessageBE (
- [ID],
- [CreatedOn],
- [CreatedBy],
- [SysVersion],
- [DocType],
- [ServeName],
- [ParamName],
- [DtoListName],
- [DtoName],
- [RestServeType], --0,条码解析 1,后台具体生单服务
- [IfCustomerDef], --标识是否客开插入 0:标准产品 1:客开
- [OperatorKey], --操作key, 唯一索引:前台传递到后台,用来匹配具体配置的,PDA端就需要传递
- [ServerDLLName], --服务DLLName
- [ServerDLLPath], --服务DLLPath+DLLName
- [DTODLLName], --参数DTODLLName
- [DTODLLPath] --参数DTODLLPath+Name
- )
- VALUES (
- @StartSN,
- GETDATE(),
- 'cust',
- 1,
- 14,
- 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.DeleteAttachmentSV',
- 'DeleteInfos',
- 'List<UFIDA.U9.Cust.Kusi.CJJ.RestApi.DeleteInfoDTOData>',
- 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.DeleteInfoDTOData',
- 1,
- 1,
- 'DeleteAttachmentSV', --操作Key
- 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- 'ApplicationServer\Libs\UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.Deploy.dll',
- 'ApplicationServer\Libs\UFIDA.U9.Cust.Kusi.CJJ.RestApi.Deploy.dll'
- )
- END ELSE
- BEGIN
- UPDATE BC_CreateDocSVMessageBE SET
- [DocType] = 14,
- [ServeName] = 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.DeleteAttachmentSV',
- [ParamName] = 'DeleteInfos',
- [DtoListName] = 'List<UFIDA.U9.Cust.Kusi.CJJ.RestApi.DeleteInfoDTOData>',
- [DtoName] = 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.DeleteInfoDTOData',
- [RestServeType] = 1,
- [IfCustomerDef] = 1,
- [ServerDLLName] = 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- [ServerDLLPath] = 'ApplicationServer\Libs\UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- [DTODLLName] = 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.Deploy.dll',
- [DTODLLPath] = 'ApplicationServer\Libs\UFIDA.U9.Cust.Kusi.CJJ.RestApi.Deploy.dll'
- WHERE OperatorKey = 'DeleteAttachmentSV'
- END
- IF (NOT EXISTS (SELECT ID FROM BC_CreateDocSVMessageBE WHERE OperatorKey = 'GetBarCodeExtInfoSV'))
- BEGIN
- -- DECLARE @StartSN BIGINT;
- EXECUTE AllocSerials 1,@StartSN OUTPUT
- INSERT INTO BC_CreateDocSVMessageBE (
- [ID],
- [CreatedOn],
- [CreatedBy],
- [SysVersion],
- [DocType],
- [ServeName],
- [ParamName],
- [DtoListName],
- [DtoName],
- [RestServeType], --0,条码解析 1,后台具体生单服务
- [IfCustomerDef], --标识是否客开插入 0:标准产品 1:客开
- [OperatorKey], --操作key, 唯一索引:前台传递到后台,用来匹配具体配置的,PDA端就需要传递
- [ServerDLLName], --服务DLLName
- [ServerDLLPath], --服务DLLPath+DLLName
- [DTODLLName], --参数DTODLLName
- [DTODLLPath] --参数DTODLLPath+Name
- )
- VALUES (
- @StartSN,
- GETDATE(),
- 'cust',
- 1,
- 14,
- 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.GetBarCodeExtInfoSV',
- 'BarCodes',
- 'List<UFIDA.U9.Cust.Kusi.CJJ.RestApi.AnalyzeDocBarCodeDTOData>',
- 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.AnalyzeDocBarCodeDTOData',
- 1,
- 1,
- 'GetBarCodeExtInfoSV', --操作Key
- 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- 'ApplicationServer\Libs\UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.Deploy.dll',
- 'ApplicationServer\Libs\UFIDA.U9.Cust.Kusi.CJJ.RestApi.Deploy.dll'
- )
- END ELSE
- BEGIN
- UPDATE BC_CreateDocSVMessageBE SET
- [DocType] = 14,
- [ServeName] = 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.GetBarCodeExtInfoSV',
- [ParamName] = 'BarCodes',
- [DtoListName] = 'List<UFIDA.U9.Cust.Kusi.CJJ.RestApi.AnalyzeDocBarCodeDTOData>',
- [DtoName] = 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.AnalyzeDocBarCodeDTOData',
- [RestServeType] = 1,
- [IfCustomerDef] = 1,
- [ServerDLLName] = 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- [ServerDLLPath] = 'ApplicationServer\Libs\UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- [DTODLLName] = 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.Deploy.dll',
- [DTODLLPath] = 'ApplicationServer\Libs\UFIDA.U9.Cust.Kusi.CJJ.RestApi.Deploy.dll'
- WHERE OperatorKey = 'GetBarCodeExtInfoSV'
- END
- IF (NOT EXISTS (SELECT ID FROM BC_CreateDocSVMessageBE WHERE OperatorKey = 'ShipPickConfirmUpdateBarCodeFirstSV'))
- BEGIN
- -- DECLARE @StartSN BIGINT;
- EXECUTE AllocSerials 1,@StartSN OUTPUT
- INSERT INTO BC_CreateDocSVMessageBE (
- [ID],
- [CreatedOn],
- [CreatedBy],
- [SysVersion],
- [DocType],
- [ServeName],
- [ParamName],
- [DtoListName],
- [DtoName],
- [RestServeType], --0,条码解析 1,后台具体生单服务
- [IfCustomerDef], --标识是否客开插入 0:标准产品 1:客开
- [OperatorKey], --操作key, 唯一索引:前台传递到后台,用来匹配具体配置的,PDA端就需要传递
- [ServerDLLName], --服务DLLName
- [ServerDLLPath], --服务DLLPath+DLLName
- [DTODLLName], --参数DTODLLName
- [DTODLLPath] --参数DTODLLPath+Name
- )
- VALUES (
- @StartSN,
- GETDATE(),
- 'cust',
- 1,
- 0,
- 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.ShipPickConfirmUpdateBarCodeFirstSV',
- 'DocInfo',
- 'List<UFIDA.U9.ISV.Mobile.SM.ShipPickConfirmBCDTOData>',
- 'UFIDA.U9.ISV.Mobile.SM.ShipPickConfirmBCDTOData',
- 1,
- 1,
- 'ShipPickConfirmUpdateBarCodeFirstSV', --操作Key
- 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- 'ApplicationServer\Libs\UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- 'UFIDA.U9.ISV.MobileAppsISV.Deploy.dll',
- 'ApplicationServer\Libs\UFIDA.U9.ISV.MobileAppsISV.Deploy.dll'
- )
- END ELSE
- BEGIN
- UPDATE BC_CreateDocSVMessageBE SET
- [DocType] = 0,
- [ServeName] = 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.ShipPickConfirmUpdateBarCodeFirstSV',
- [ParamName] = 'DocInfo',
- [DtoListName] = 'List<UFIDA.U9.ISV.Mobile.SM.ShipPickConfirmBCDTOData>',
- [DtoName] = 'UFIDA.U9.ISV.Mobile.SM.ShipPickConfirmBCDTOData',
- [RestServeType] = 1,
- [IfCustomerDef] = 1,
- [ServerDLLName] = 'UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- [ServerDLLPath] = 'ApplicationServer\Libs\UFIDA.U9.Cust.Kusi.CJJ.RestApi.dll',
- [DTODLLName] = 'UFIDA.U9.ISV.MobileAppsISV.Deploy.dll',
- [DTODLLPath] = 'ApplicationServer\Libs\UFIDA.U9.ISV.MobileAppsISV.Deploy.dll'
- WHERE OperatorKey = 'ShipPickConfirmUpdateBarCodeFirstSV'
- END
|