创建表.sql 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452
  1. USE [DYBBERPDB]
  2. GO
  3. --isnull(ltrim(id),'合计')
  4. --要使用.Net写的自定义聚合函数,需开启clr功能
  5. --reconfigure;
  6. --exec sp_configure 'clr enabled', '1'
  7. --注册assembly
  8. --CREATE ASSEMBLY StringUtilities FROM 'D:\LYFZCLR.dll'
  9. --WITH PERMISSION_SET=SAFE;
  10. --注册聚合函数
  11. --CREATE AGGREGATE Concatenate(@input nvarchar(4000))
  12. --RETURNS nvarchar(4000)
  13. --EXTERNAL NAME [StringUtilities].[Concat];
  14. --GO
  15. --删除聚合
  16. --drop aggregate dbo.AggregateString
  17. --drop assembly LYFZCLR
  18. --SQL Server 如何启用CLR函数
  19. exec sp_configure 'clr enabled' --查看状态
  20. exec sp_configure 'clr enabled',1 --1,启用clr,禁用clr
  21. reconfigure with override
  22. --要使用.Net写的自定义聚合函数,需以上代码开启clr功能
  23. CREATE ASSEMBLY [LYFZCLR] AUTHORIZATION [dbo]
  24. FROM 'D:\LYFZCLR.dll'
  25. WITH PERMISSION_SET = SAFE;
  26. GO
  27. CREATE AGGREGATE [dbo].[AggregateString] (@FieldValue [nvarchar](4000))
  28. RETURNS [nvarchar](4000)
  29. EXTERNAL NAME [LYFZCLR].[AggregateString];
  30. GO
  31. --drop FUNCTION dbo.FunTrim
  32. CREATE FUNCTION [dbo].[FunTrim] (@FieldValue [nvarchar](4000),@trimChar [nvarchar](4000))
  33. RETURNS [nvarchar](4000)
  34. AS
  35. EXTERNAL NAME [LYFZCLR].[UserDefinedFunctions].[FunTrim];
  36. GO
  37. IF not EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[tb_ErpCustomerGroup]') AND type in (N'U'))
  38. begin
  39. --创建客户组表
  40. CREATE TABLE [dbo].[tb_ErpCustomerGroup](
  41. [id] [int] IDENTITY(1,1) NOT NULL,
  42. --订单号 老客户时订单号为空
  43. [GP_OrderNumber] [nvarchar](50) not NULL,
  44. --客户关系组ID编号
  45. [GP_CustomerGroupID] [nvarchar](50) not NULL,
  46. --客户组类型 0 为其它客户/订单客户 1 为老客户 2 为意向客户
  47. [GP_GroupType] [int] not NULL,
  48. --客户类型 0 为婚纱订单客户 1 为儿童订单客户 2 写真订单客户 3 为服务套系 4 为其它订单客户
  49. [GP_CustomerType] [int] not NULL,
  50. --客户状态 正常 意向 溜单 流失
  51. [GP_CustomerStatus] [nvarchar](50) not NULL,
  52. --客户流失或溜单原因 少于800 字
  53. [GP_LossReason] [nvarchar](800) not NULL,
  54. --意向程度 有点意向 很有意向 非常有意向等
  55. [GP_DegreeOfIntent] [nvarchar](50) not NULL,
  56. --客户来源
  57. [GP_CustomerSource] [nvarchar](50) not NULL,
  58. --介绍人CustomerID 如果为老客户转介绍来的客户时填写介绍人ID
  59. [GP_IntroducerCustomerID] [nvarchar](50) NULL,
  60. --备注说明 少于800 字
  61. [GP_Remark] [nvarchar](800) NULL,
  62. --本组客户所属人的ID (隶属于谁的客户) 如果为空时为公共客户
  63. [GP_BelongsPersonID] [nvarchar](50) NULL,
  64. --客户添加时间
  65. [GP_CreateDatetime] [datetime] not NULL,
  66. --客户修改时间
  67. [GP_UpdateDatetime] [datetime] not NULL,
  68. [GP_CreateName] [nvarchar](50) not NULL,
  69. [GP_UpdateName] [nvarchar](50) not NULL,
  70. )
  71. --设置主键
  72. ALTER TABLE [dbo].[tb_ErpCustomerGroup] ADD CONSTRAINT
  73. PK_tb_ErpCustomerGroup_CustomerGroupID PRIMARY KEY CLUSTERED
  74. (
  75. GP_CustomerGroupID
  76. )
  77. --唯一索引
  78. CREATE UNIQUE NONCLUSTERED INDEX [IX_tb_ErpCustomerGroup_CustomerGroupID] ON [dbo].[tb_ErpCustomerGroup]
  79. (
  80. [GP_CustomerGroupID] ASC
  81. )
  82. --索引
  83. CREATE NONCLUSTERED INDEX [IX_tb_ErpCustomerGroup_OrderNumber] ON [dbo].[tb_ErpCustomerGroup]
  84. (
  85. [GP_OrderNumber] ASC
  86. )
  87. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户组表' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomerGroup'
  88. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'订单号 老客户时订单号为空' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomerGroup', @level2type=N'COLUMN',@level2name=N'GP_OrderNumber'
  89. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户关系组ID编号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomerGroup', @level2type=N'COLUMN',@level2name=N'GP_CustomerGroupID'
  90. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户组类型 0 为其它客户/订单客户 1 为老客户 2 为意向客户' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomerGroup', @level2type=N'COLUMN',@level2name=N'GP_GroupType'
  91. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户类型 0 为婚纱订单客户 1 为儿童订单客户 2 写真订单客户 3 为服务套系 4 为其它订单客户 ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomerGroup', @level2type=N'COLUMN',@level2name=N'GP_CustomerType'
  92. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户状态 正常 意向 溜单 流失' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomerGroup', @level2type=N'COLUMN',@level2name=N'GP_CustomerStatus'
  93. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户流失或溜单原因 少于800 字' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomerGroup', @level2type=N'COLUMN',@level2name=N'GP_LossReason'
  94. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'意向程度 有点意向 很有意向 非常有意向等' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomerGroup', @level2type=N'COLUMN',@level2name=N'GP_DegreeOfIntent'
  95. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户来源' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomerGroup', @level2type=N'COLUMN',@level2name=N'GP_CustomerSource'
  96. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'介绍人CustomerID 如果为老客户转介绍来的客户时填写介绍人ID' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomerGroup', @level2type=N'COLUMN',@level2name=N'GP_IntroducerCustomerID'
  97. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'备注说明 少于800字' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomerGroup', @level2type=N'COLUMN',@level2name=N'GP_Remark'
  98. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'本组客户所属人的ID (隶属于谁的客户) 如果为空时为公共客户' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomerGroup', @level2type=N'COLUMN',@level2name=N'GP_BelongsPersonID'
  99. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'添加时间' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomerGroup', @level2type=N'COLUMN',@level2name=N'GP_CreateDatetime'
  100. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'最后修改时间' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomerGroup', @level2type=N'COLUMN',@level2name=N'GP_UpdateDatetime'
  101. end
  102. IF not EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[tb_ErpCustomerGroupMembers]') AND type in (N'U'))
  103. begin
  104. --创建客户组成员表
  105. CREATE TABLE [dbo].[tb_ErpCustomerGroupMembers](
  106. [id] [int] IDENTITY(1,1) NOT NULL,
  107. --客户关系组ID编号
  108. [GM_CustomerGroupID] [nvarchar](50) not NULL,
  109. --客户人员表中的客户编号ID
  110. [GM_CustomerID] [varchar](50) not NULL,
  111. --是否为主联系人 1 为主联系人
  112. [GM_Master] [int] not NULL,
  113. --是否为摄影主角 1 为摄影主角 表示在本次订单中要参与拍摄的客户
  114. [GM_ProtagonistCustomer] [int] not NULL,
  115. --相关人ID 儿童版订单客户时为宝贝ID 其它订单客户时为主联系人ID
  116. [GM_RelatedPersonID] [nvarchar](50) not NULL,
  117. --与相关人的关系 如 本人、情吕、夫妻、父子、母子、父女、母女、兄弟、姐妹、亲人和朋友等
  118. [GM_Relation] [nvarchar](50) not NULL,
  119. --是否已成功下单 1 为已成功下单 0 为下单未成功
  120. [GM_IsOrder] [int] not NULL,
  121. --已订单号 如果 IsOrder 为 1 填入订单号
  122. [GM_IsOrderNumber] [nvarchar](50) NULL,
  123. )
  124. --联合主键
  125. ALTER TABLE [dbo].[tb_ErpCustomerGroupMembers] ADD CONSTRAINT
  126. PK_tb_ErpCustomerGroupMembers_CustomerGroupID_And_CustomerID PRIMARY KEY CLUSTERED
  127. (
  128. GM_CustomerGroupID,
  129. GM_CustomerID
  130. )
  131. --索引
  132. CREATE NONCLUSTERED INDEX [IX_tb_ErpCustomerGroupMembers_GM_CustomerGroupID] ON [dbo].[tb_ErpCustomerGroupMembers]
  133. (
  134. [GM_CustomerGroupID] ASC
  135. )
  136. CREATE NONCLUSTERED INDEX [IX_tb_ErpCustomerGroupMembers_GM_CustomerID] ON [dbo].[tb_ErpCustomerGroupMembers]
  137. (
  138. [GM_CustomerID] ASC
  139. )
  140. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户组成员表' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomerGroupMembers'
  141. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户关系组ID编号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomerGroupMembers', @level2type=N'COLUMN',@level2name=N'GM_CustomerGroupID'
  142. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户人员表中的客户编号ID' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomerGroupMembers', @level2type=N'COLUMN',@level2name=N'GM_CustomerID'
  143. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'是否为主联系人 1 为主联系人 ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomerGroupMembers', @level2type=N'COLUMN',@level2name=N'GM_Master'
  144. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'是否为摄影主角 1 为摄影主角 表示在本次订单中要参与拍摄的客户' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomerGroupMembers', @level2type=N'COLUMN',@level2name=N'GM_ProtagonistCustomer'
  145. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'相关人ID 儿童版订单客户时为宝贝ID 其它订单客户时为主联系人ID' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomerGroupMembers', @level2type=N'COLUMN',@level2name=N'GM_RelatedPersonID'
  146. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'与相关人的关系 如 本人、情吕、夫妻、父子、母子、父女、母女、兄弟、姐妹、亲人和朋友等' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomerGroupMembers', @level2type=N'COLUMN',@level2name=N'GM_Relation'
  147. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'是否已成功下单 1 为已成功下单 0 为下单未成功' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomerGroupMembers', @level2type=N'COLUMN',@level2name=N'GM_IsOrder'
  148. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'已订单号 如果 IsOrder 为 1 填入订单号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomerGroupMembers', @level2type=N'COLUMN',@level2name=N'GM_IsOrderNumber'
  149. end
  150. IF not EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[tb_ErpCustomersTrackRecord]') AND type in (N'U'))
  151. begin
  152. --创建客户跟踪记录表
  153. CREATE TABLE [dbo].[tb_ErpCustomersTrackRecord](
  154. [id] [int] IDENTITY(1,1) NOT NULL,
  155. --跟踪的客户组ID编号
  156. [TR_CustomerGroupID] [nvarchar](50) not NULL,
  157. --本次联系的客户人员表中的客户编号ID
  158. [TR_CustomerID] [nvarchar](50) not NULL,
  159. --本次跟踪方式 面谈、坐机电话、手机通话、邮件、短信、QQ、微信、网络留言、其它通信
  160. [TR_TraceWay] [nvarchar](50) not NULL,
  161. --本次跟踪类型 流程按排、业务咨询、满意度调查、意向跟踪、溜单追回、关系维护、活动推广
  162. [TR_TraceType] [nvarchar](50) not NULL,
  163. --本次沟通具体事项 如:按排拍摄时间、按排选片时间和打结婚纪念日电话等
  164. [TR_SpecificMatters] [nvarchar](4000) not NULL,
  165. --本次沟通细节记录 如果客户返馈的信息 短信内容 QQ聊天记录等
  166. [TR_TraceDetailedly] [nvarchar](max) not NULL,
  167. --如果是电话(一搬指通过来电精灵通话)沟通的通话录音文件路径
  168. [TR_CallRecording] [nvarchar](500) not NULL,
  169. --少于4000字的备注说明 本次跟踪的特殊说明
  170. [TR_Remark] [nvarchar](4000) NULL,
  171. --本次跟踪时间(为与客户沟通的开始时间)
  172. [TR_TraceDateTime] [DateTime] not NULL,
  173. --本次路踪时长(为与客户沟通所用时间 单位为分钟) 如:15 (分钟)
  174. [TR_TraceTimeLength] int not null,
  175. --本次跟踪人员ID(如门市)
  176. [TR_TracePersonID] [nvarchar](50) not NULL,
  177. --记录录入时间
  178. [TR_CreateDateTime] [DateTime] not NULL,
  179. --记录修改时间
  180. [TR_UpdateDateTime] [DateTime] not NULL,
  181. )
  182. IF EXISTS (SELECT * FROM sys.indexes WHERE object_id = OBJECT_ID(N'[dbo].[tb_ErpCustomersTrackRecord]') AND name = N'PK_tb_ErpCustomersTrackRecord_CustomerGroupID_And_CustomerID')
  183. ALTER TABLE [dbo].[tb_ErpCustomersTrackRecord] DROP CONSTRAINT [PK_tb_ErpCustomersTrackRecord_CustomerGroupID_And_CustomerID]
  184. GO
  185. --设置主键
  186. ALTER TABLE [dbo].[tb_ErpCustomersTrackRecord] ADD CONSTRAINT
  187. PK_tb_ErpCustomersTrackRecord_id PRIMARY KEY CLUSTERED
  188. (
  189. id
  190. )
  191. --索引
  192. CREATE NONCLUSTERED INDEX [IX_tb_ErpCustomersTrackRecord_CustomerGroupID] ON [dbo].[tb_ErpCustomersTrackRecord]
  193. (
  194. [TR_CustomerGroupID] ASC
  195. )
  196. --索引
  197. CREATE NONCLUSTERED INDEX [IX_tb_ErpCustomersTrackRecord_CustomerID] ON [dbo].[tb_ErpCustomersTrackRecord]
  198. (
  199. [TR_CustomerID] ASC
  200. )
  201. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户跟踪记录表' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomersTrackRecord'
  202. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户关系组ID编号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomersTrackRecord', @level2type=N'COLUMN',@level2name=N'TR_CustomerGroupID'
  203. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'本次联系的客户人员表中的客户编号ID' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomersTrackRecord', @level2type=N'COLUMN',@level2name=N'TR_CustomerID'
  204. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'本次跟踪方式 面谈、坐机电话、手机通话、邮件、短信、QQ、微信、网络留言、其它通信 ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomersTrackRecord', @level2type=N'COLUMN',@level2name=N'TR_TraceWay'
  205. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'本次跟踪类型 流程按排、业务咨询、满意度调查、意向跟踪、溜单追回、关系维护、活动推广' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomersTrackRecord', @level2type=N'COLUMN',@level2name=N'TR_TraceType'
  206. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'本次沟通具体事项 如:按排拍摄时间、按排选片时间和打结婚纪念日电话等' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomersTrackRecord', @level2type=N'COLUMN',@level2name=N'TR_SpecificMatters'
  207. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'本次沟通细节记录 如果客户返馈的信息 短信内容 QQ聊天记录等' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomersTrackRecord', @level2type=N'COLUMN',@level2name=N'TR_TraceDetailedly'
  208. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'如果是电话(一搬指通过来电精灵通话)沟通的通话录音文件路径' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomersTrackRecord', @level2type=N'COLUMN',@level2name=N'TR_CallRecording'
  209. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'少于4000字的备注说明 本次跟踪的特殊说明' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomersTrackRecord', @level2type=N'COLUMN',@level2name=N'TR_Remark'
  210. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'本次跟踪时间(为与客户沟通的开始时间)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomersTrackRecord', @level2type=N'COLUMN',@level2name=N'TR_TraceDateTime'
  211. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'本次路踪时长(为与客户沟通所用时间 单位为分钟) 如:15 (分钟)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomersTrackRecord', @level2type=N'COLUMN',@level2name=N'TR_TraceTimeLength'
  212. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'本次跟踪人员ID(如门市)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomersTrackRecord', @level2type=N'COLUMN',@level2name=N'TR_TracePersonID'
  213. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'记录录入时间' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomersTrackRecord', @level2type=N'COLUMN',@level2name=N'TR_CreateDateTime'
  214. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'记录修改时间' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomersTrackRecord', @level2type=N'COLUMN',@level2name=N'TR_UpdateDateTime'
  215. end
  216. IF not EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[tb_ErpCustomer]') AND type in (N'U'))
  217. begin
  218. --创建客户人员信息表
  219. CREATE TABLE [dbo].[tb_ErpCustomer](
  220. [ID] [int] IDENTITY(1,1) NOT NULL,
  221. [Cus_CustomerNumber] [nvarchar](50) primary key NOT NULL,
  222. [Cus_CustomizeNumber] [nvarchar](50) NULL,
  223. [Cus_Type] [nvarchar](20) NOT NULL,
  224. [Cus_ServiceType] [nvarchar](max) NULL,
  225. [Cus_Grade] [nvarchar](20) NULL,
  226. [Cus_Name] [nvarchar](20) NOT NULL,
  227. [Cus_Sex] [bit] NULL,
  228. [Cus_Birthday] [datetime] NULL,
  229. [Cus_BirthdayLunar] [nvarchar](1) NULL,
  230. [Cus_DayForMarriage] [datetime] NULL,
  231. [Cus_DayForMarriageLunar] [nvarchar](1) NULL,
  232. [Cus_Relations] [nvarchar](max) NULL,
  233. [Cus_QQ] [nvarchar](20) NULL,
  234. [Cus_MicroSignal] [nvarchar](20) NULL,
  235. [Cus_Telephone] [nvarchar](20) NULL,
  236. [Cus_FixedPhone] [nvarchar](20) NULL,
  237. [Cus_Region] [nvarchar](100) NULL,
  238. [Cus_Address] [nvarchar](100) NULL,
  239. [Cus_WorkUnit] [nvarchar](100) NULL,
  240. [Cus_BabyWeight] [nvarchar](20) NULL,
  241. [Cus_BornHospital] [nvarchar](50) NULL,
  242. [Cus_Zodiac] [nvarchar](2) NULL,
  243. [Cus_CustomerSource] [nvarchar](100) NULL,
  244. [Cus_Status] [nvarchar](10) NULL,
  245. [Cus_LossReason] [nvarchar](max) NULL,
  246. [Cus_DegreeOfIntent] [nvarchar](20) NULL,
  247. [Cus_TrackName] [nvarchar](300) NULL,
  248. [Cus_Remark] [nvarchar](max) NULL,
  249. [Cus_CreateDateTime] [datetime] NULL,
  250. [Cus_CreateName] [nvarchar](20) NULL,
  251. [Cus_UpdateDateTime] [datetime] NULL,
  252. [Cus_UpdateName] [nvarchar](20) NULL,
  253. )
  254. CREATE NONCLUSTERED INDEX [IX_tb_ErpCustomer_Cus_Name] ON [dbo].[tb_ErpCustomer]
  255. (
  256. [Cus_Name] ASC
  257. )
  258. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomer', @level2type=N'COLUMN',@level2name=N'ID'
  259. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户编号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomer', @level2type=N'COLUMN',@level2name=N'Cus_CustomerNumber'
  260. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户自定义编号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomer', @level2type=N'COLUMN',@level2name=N'Cus_CustomizeNumber'
  261. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户类型 订单客户 老客户 意向客户 儿童客户 ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomer', @level2type=N'COLUMN',@level2name=N'Cus_Type'
  262. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客服标记 Dress:婚纱客户 Baby:儿童客户 Portrait:写真客户 Other:客户' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomer', @level2type=N'COLUMN',@level2name=N'Cus_ServiceType'
  263. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户等级' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomer', @level2type=N'COLUMN',@level2name=N'Cus_Grade'
  264. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户姓名' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomer', @level2type=N'COLUMN',@level2name=N'Cus_Name'
  265. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户性别 0(false):男,1(true):女' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomer', @level2type=N'COLUMN',@level2name=N'Cus_Sex'
  266. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户生日' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomer', @level2type=N'COLUMN',@level2name=N'Cus_Birthday'
  267. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'生日历类 0:公历 1:农历 2:农历润月' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomer', @level2type=N'COLUMN',@level2name=N'Cus_BirthdayLunar'
  268. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户婚期' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomer', @level2type=N'COLUMN',@level2name=N'Cus_DayForMarriage'
  269. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'婚期历类 0:公历 1:农历 2:农历润月' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomer', @level2type=N'COLUMN',@level2name=N'Cus_DayForMarriageLunar'
  270. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'称呼、关系、与宝贝关系' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomer', @level2type=N'COLUMN',@level2name=N'Cus_Relations'
  271. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户QQ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomer', @level2type=N'COLUMN',@level2name=N'Cus_QQ'
  272. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'微信号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomer', @level2type=N'COLUMN',@level2name=N'Cus_MicroSignal'
  273. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户电话' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomer', @level2type=N'COLUMN',@level2name=N'Cus_Telephone'
  274. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户固定电话' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomer', @level2type=N'COLUMN',@level2name=N'Cus_FixedPhone'
  275. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户所在地区' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomer', @level2type=N'COLUMN',@level2name=N'Cus_Region'
  276. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户地址' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomer', @level2type=N'COLUMN',@level2name=N'Cus_Address'
  277. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户工作单位' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomer', @level2type=N'COLUMN',@level2name=N'Cus_WorkUnit'
  278. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'宝贝体重' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomer', @level2type=N'COLUMN',@level2name=N'Cus_BabyWeight'
  279. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'宝贝出生医院' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomer', @level2type=N'COLUMN',@level2name=N'Cus_BornHospital'
  280. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'生肖' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomer', @level2type=N'COLUMN',@level2name=N'Cus_Zodiac'
  281. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户来源' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomer', @level2type=N'COLUMN',@level2name=N'Cus_CustomerSource'
  282. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户状态 正常 意向 流失' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomer', @level2type=N'COLUMN',@level2name=N'Cus_Status'
  283. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户流失原因' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomer', @level2type=N'COLUMN',@level2name=N'Cus_LossReason'
  284. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'意向程度' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomer', @level2type=N'COLUMN',@level2name=N'Cus_DegreeOfIntent'
  285. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'意向有权跟踪人 可以有多个跟踪人,多个时中间用'',''分割' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomer', @level2type=N'COLUMN',@level2name=N'Cus_TrackName'
  286. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'备注' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomer', @level2type=N'COLUMN',@level2name=N'Cus_Remark'
  287. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'录入时间' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomer', @level2type=N'COLUMN',@level2name=N'Cus_CreateDateTime'
  288. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'录入者编号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomer', @level2type=N'COLUMN',@level2name=N'Cus_CreateName'
  289. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'最后修改时间' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomer', @level2type=N'COLUMN',@level2name=N'Cus_UpdateDateTime'
  290. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'最后修改者编号' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomer', @level2type=N'COLUMN',@level2name=N'Cus_UpdateName'
  291. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'客户资料' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_ErpCustomer'
  292. end
  293. --创建视图 客户转公历生日(婚期)日期视图
  294. IF EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[View_ErpCustomer]'))
  295. DROP VIEW [dbo].[View_ErpCustomer]
  296. GO
  297. CREATE VIEW [View_ErpCustomer]
  298. AS
  299. SELECT
  300. [Cus_CustomerNumber]
  301. ,[Cus_CustomizeNumber]
  302. --,[Cus_Type]
  303. --,[Cus_ServiceType]
  304. ,[Cus_Grade]
  305. ,[Cus_Name]
  306. ,Cus_NamePinyin as [Cus_Name_py]
  307. ,[Cus_Sex]
  308. ,dbo.Fun_ConvertSex([Cus_Sex]) as [Cus_Sex_cs]
  309. ,[Cus_Birthday]
  310. ,[Cus_BirthdayLunar]
  311. ,dbo.Fun_GetGregorianCalendar([Cus_Birthday],[Cus_BirthdayLunar]) as GregorianCalendar_Birthday
  312. ,dbo.Fun_GetGregorianCalendarNowYearBirthday([Cus_Birthday],[Cus_BirthdayLunar]) as GregorianCalendar_NowYearBirthday
  313. ,[Cus_DayForMarriage]
  314. ,[Cus_DayForMarriageLunar]
  315. ,dbo.Fun_GetGregorianCalendar([Cus_DayForMarriage],[Cus_DayForMarriageLunar]) as GregorianCalendar_DayForMarriage
  316. ,dbo.Fun_GetGregorianCalendarNowYearBirthday([Cus_DayForMarriage],[Cus_DayForMarriageLunar]) as GregorianCalendar_NowYearDayForMarriage
  317. --,[Cus_Relations] 关系
  318. ,[Cus_QQ]
  319. ,[Cus_MicroSignal]
  320. ,[Cus_Telephone]
  321. ,[Cus_FixedPhone]
  322. ,[Cus_Region]
  323. ,[Cus_Address]
  324. ,[Cus_WorkUnit]
  325. ,[Cus_BabyWeight]
  326. ,[Cus_BornHospital]
  327. ,[Cus_Zodiac]
  328. ,[Cus_CustomerSource]
  329. ,[Cus_Status]
  330. -- ,[Cus_LossReason]客户流失原因
  331. ,[Cus_DegreeOfIntent]
  332. ,[Cus_TrackName]
  333. --,[Cus_Remark]
  334. ,[Cus_CreateDateTime]
  335. ,[Cus_CreateName]
  336. ,[Cus_UpdateDateTime]
  337. ,[Cus_UpdateName]
  338. FROM tb_ErpCustomer
  339. go
  340. --创建视图
  341. IF EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[View_CustomerGroupMembersAndErpCustomer]'))
  342. DROP VIEW [dbo].[View_CustomerGroupMembersAndErpCustomer]
  343. GO
  344. CREATE VIEW [View_CustomerGroupMembersAndErpCustomer]
  345. AS
  346. SELECT [tb_ErpCustomerGroupMembers].[id]
  347. ,[GM_CustomerGroupID]
  348. ,[GM_CustomerID]
  349. ,[GM_Master]
  350. ,[GM_ProtagonistCustomer]
  351. ,[GM_RelatedPersonID]
  352. ,[GM_Relation]
  353. ,[GM_IsOrder]
  354. ,[GM_IsOrderNumber]
  355. ,[Cus_CustomerNumber]
  356. ,[Cus_CustomizeNumber]
  357. ,[Cus_Grade]
  358. ,[Cus_Name]
  359. ,[Cus_Name_py]
  360. ,[Cus_Sex]
  361. ,[Cus_Sex_cs]
  362. ,[Cus_Birthday]
  363. ,[Cus_BirthdayLunar]
  364. ,GregorianCalendar_Birthday
  365. ,GregorianCalendar_NowYearBirthday
  366. ,FLOOR(datediff(day,GregorianCalendar_Birthday,getdate())/365.25) as Age_Year
  367. ,DATEDIFF(day, GregorianCalendar_Birthday,Getdate()) as Age_Day
  368. ,dbo.Fun_GetAgeString(GregorianCalendar_Birthday) as Age_String
  369. ,[Cus_DayForMarriage]
  370. ,[Cus_DayForMarriageLunar]
  371. ,GregorianCalendar_DayForMarriage
  372. ,GregorianCalendar_NowYearDayForMarriage
  373. ,[Cus_QQ]
  374. ,[Cus_MicroSignal]
  375. ,[Cus_Telephone]
  376. ,[Cus_FixedPhone]
  377. ,[Cus_Region]
  378. ,[Cus_Address]
  379. ,[Cus_WorkUnit]
  380. ,[Cus_BabyWeight]
  381. ,[Cus_BornHospital]
  382. ,[Cus_Zodiac]
  383. ,[Cus_CustomerSource]
  384. ,[Cus_Status]
  385. ,[Cus_DegreeOfIntent]
  386. ,[Cus_TrackName]
  387. ,[Cus_CreateDateTime]
  388. ,[Cus_CreateName]
  389. ,[Cus_UpdateDateTime]
  390. ,[Cus_UpdateName]
  391. ,[dbo].[tb_ErpMemberCard].[Mc_CradNumber]
  392. ,[dbo].[tb_ErpMemberCard].[Mc_CardType]
  393. FROM [tb_ErpCustomerGroupMembers]
  394. left join [View_ErpCustomer]
  395. on [tb_ErpCustomerGroupMembers].[GM_CustomerID]=[View_ErpCustomer].Cus_CustomerNumber
  396. left join
  397. [dbo].[tb_ErpMemberCard]
  398. on [View_ErpCustomer].Cus_CustomerNumber=[dbo].[tb_ErpMemberCard].[Mc_CustomerNumber]
  399. go
  400. IF EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[View_CustomerGroupAndCustomerGroupMembersAndErpCustomer]'))
  401. DROP VIEW [dbo].[View_CustomerGroupAndCustomerGroupMembersAndErpCustomer]
  402. GO
  403. CREATE VIEW [View_CustomerGroupAndCustomerGroupMembersAndErpCustomer]
  404. AS
  405. SELECT [tb_ErpCustomerGroup].[id]
  406. ,[GP_OrderNumber]
  407. ,[GP_CustomerGroupID]
  408. ,[GP_GroupType]
  409. ,[GP_CustomerType]
  410. ,[GP_CustomerStatus]
  411. ,[GP_LossReason]
  412. ,[GP_DegreeOfIntent]
  413. ,[GP_CustomerSource]
  414. ,[GP_IntroducerCustomerID]
  415. ,[GP_Remark]
  416. ,[GP_BelongsPersonID]
  417. ,[GP_CreateDatetime]
  418. ,[GP_UpdateDatetime]
  419. ,[GM_CustomerGroupID]
  420. ,[GM_CustomerID]
  421. ,[GM_Master]
  422. ,[GM_ProtagonistCustomer]
  423. ,[GM_RelatedPersonID]
  424. ,[GM_Relation]
  425. ,[GM_IsOrder]
  426. ,[GM_IsOrderNumber]
  427. ,[Cus_CustomerNumber]
  428. ,[Cus_CustomizeNumber]
  429. ,[Cus_Grade]
  430. ,[Cus_Name]
  431. ,[Cus_Name_py]
  432. ,[Cus_Sex]
  433. ,[Cus_Sex_cs]
  434. ,[Cus_Birthday]
  435. ,[Cus_BirthdayLunar]
  436. ,[GregorianCalendar_Birthday]
  437. ,[GregorianCalendar_NowYearBirthday]
  438. ,FLOOR(datediff(day,GregorianCalendar_Birthday,getdate())/365.25) as Age_Year
  439. ,DATEDIFF(day, GregorianCalendar_Birthday,Getdate()) as Age_Day
  440. ,dbo.Fun_GetAgeString(GregorianCalendar_Birthday) as Age_String
  441. ,[Cus_DayForMarriage]
  442. ,[Cus_DayForMarriageLunar]
  443. ,GregorianCalendar_DayForMarriage
  444. ,GregorianCalendar_NowYearDayForMarriage
  445. ,[Cus_QQ]
  446. ,[Cus_MicroSignal]
  447. ,[Cus_Telephone]
  448. ,[Cus_FixedPhone]
  449. ,[Cus_Region]
  450. ,[Cus_Address]
  451. ,[Cus_WorkUnit]
  452. ,[Cus_BabyWeight]
  453. ,[Cus_BornHospital]
  454. ,[Cus_Zodiac]
  455. ,[Cus_CustomerSource]
  456. ,[Cus_Status]
  457. ,[Cus_DegreeOfIntent]
  458. ,[Cus_TrackName]
  459. ,[Cus_CreateDateTime]
  460. ,[Cus_CreateName]
  461. ,[Cus_UpdateDateTime]
  462. ,[Cus_UpdateName]
  463. FROM [tb_ErpCustomerGroup]
  464. left join
  465. dbo.tb_ErpCustomerGroupMembers
  466. on [tb_ErpCustomerGroup].[GP_CustomerGroupID]=dbo.tb_ErpCustomerGroupMembers.[GM_CustomerGroupID]
  467. left join
  468. [dbo].[View_ErpCustomer]
  469. on dbo.tb_ErpCustomerGroupMembers.GM_CustomerID=[dbo].[View_ErpCustomer].Cus_CustomerNumber
  470. go
  471. IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[Fun_ConvertSex]') AND type in (N'FN', N'IF', N'TF', N'FS', N'FT'))
  472. DROP FUNCTION [dbo].[Fun_ConvertSex]
  473. GO
  474. CREATE FUNCTION dbo.Fun_ConvertSex(
  475. @value int --性别值
  476. )
  477. /******
  478. 转换性别
  479. 创建人:刘超
  480. 创建日期:2015-6-11 14:10
  481. 修改人:
  482. 修改说明:
  483. 修改日期:
  484. ******/
  485. RETURNS nvarchar(10)
  486. AS
  487. BEGIN
  488. DECLARE @ret nvarchar(10)
  489. SET @ret = '男'
  490. if @value=0
  491. SELECT @ret = '男'
  492. else
  493. SELECT @ret = '女'
  494. Return @ret
  495. END
  496. GO
  497. CREATE FUNCTION dbo.Fun_GetAgeString(
  498. @Birthday datetime
  499. )
  500. /******
  501. 根据公历生日日期计算返回年龄大小字符串 小于1岁的返回天数
  502. 创建人:刘超
  503. 创建日期:2015-6-11 14:10
  504. 修改人:
  505. 修改说明:
  506. 修改日期:
  507. ******/
  508. RETURNS nvarchar(100)
  509. AS
  510. begin
  511. declare @ret nvarchar(100)
  512. declare @age int
  513. declare @age_day int
  514. set @age=FLOOR(datediff(day,@Birthday,getdate())/365.25)
  515. set @age_day=DATEDIFF(day, @Birthday,Getdate())
  516. if @age < 1
  517. set @ret =CONVERT(varchar(100), @age_day)+'天'
  518. else
  519. set @ret =CONVERT(varchar(100), @age)+'岁'
  520. return @ret
  521. end
  522. GO
  523. CREATE FUNCTION dbo.Fun_GetGregorianCalendar(
  524. @Birthday varchar(100),
  525. @BirthdayLunar nvarchar(10)--, --是否为农历日期 0 为公历直接原日期返回 1 为农历将转为公历日期 2 为农历闰月将转为对闰月对应的公历日期
  526. )
  527. /******
  528. 转农历为公历 获取公历生日日期
  529. 创建人:刘超
  530. 创建日期:2015-6-11 14:10
  531. 修改人:
  532. 修改说明:
  533. 修改日期:
  534. ******/
  535. RETURNS datetime
  536. AS
  537. begin
  538. declare @retdates datetime
  539. declare @isLeapMonth bit
  540. if CONVERT(int, left(@Birthday,4))>1900
  541. begin
  542. if len(@Birthday)>=8
  543. begin
  544. set @isLeapMonth=0
  545. if @BirthdayLunar='2'
  546. set @isLeapMonth=1
  547. if @BirthdayLunar='0'
  548. set @retdates=@Birthday
  549. else
  550. set @retdates= dbo.GetCalender(Month(Replace(Replace(@Birthday,'-29','-28'),'-30','-28')),Replace(Right(@Birthday,2),'-',''),Left(@Birthday,4),@isLeapMonth)
  551. end
  552. end
  553. return CONVERT(varchar(100), @retdates, 20)
  554. end
  555. GO
  556. CREATE FUNCTION dbo.Fun_GetGregorianCalendarBirthday(
  557. @month varchar(3),
  558. @day varchar(3),
  559. @now datetime,
  560. @BirthdayLunar nvarchar(10)--, --是否为农历日期 0 为公历直接原日期返回 1 为农历将转为公历日期 2 为农历闰月将转为对闰月对应的公历日期
  561. )
  562. /******
  563. 转农历为公历 获取公历生日日期 如果@BirthdayLunar=1 为农历将转为公历 如是0 直接返回
  564. @isLeapMonth 如果为 1 返回闰月对应的公历日期
  565. 创建人:刘超
  566. 创建日期:2015-6-11 14:10
  567. 修改人:
  568. 修改说明:
  569. 修改日期:
  570. ******/
  571. RETURNS datetime
  572. AS
  573. begin
  574. declare @retdates datetime
  575. declare @isLeapMonth bit
  576. set @isLeapMonth=0
  577. if @BirthdayLunar='2'
  578. set @isLeapMonth=1
  579. if @BirthdayLunar='0'
  580. set @retdates=CONVERT(varchar(100),YEAR(@now))+'-'+@month+'-'+@day
  581. else
  582. set @retdates= dbo.GetCalender(@month,@day,@now,@isLeapMonth)
  583. return CONVERT(varchar(100), @retdates, 20)
  584. end
  585. GO
  586. CREATE FUNCTION dbo.Fun_GetGregorianCalendarNowYearBirthday(
  587. @Birthday varchar(100),
  588. @BirthdayLunar nvarchar(10)--, --是否为农历日期 0 为公历直接原日期返回 1 为农历将转为公历日期 2 为农历闰月将转为对闰月对应的公历日期
  589. )
  590. /******
  591. 根据生日获取当前年的公历生日日期
  592. 创建人:刘超
  593. 创建日期:2015-6-11 14:10
  594. 修改人:
  595. 修改说明:
  596. 修改日期:
  597. ******/
  598. RETURNS datetime
  599. AS
  600. begin
  601. declare @retdates datetime
  602. declare @isLeapMonth bit
  603. set @isLeapMonth=0
  604. declare @month varchar(3)
  605. declare @day varchar(3)
  606. declare @now datetime
  607. if CONVERT(int, left(@Birthday,4))>1900
  608. begin
  609. if len(@Birthday)>=8
  610. begin
  611. set @month=Month(Replace(Replace(@Birthday,'-29','-28'),'-30','-28'))
  612. set @day =Replace(Right(@Birthday,2),'-','')
  613. set @now=Getdate()
  614. if @BirthdayLunar='2'
  615. set @isLeapMonth=1
  616. if @BirthdayLunar='0'
  617. set @retdates=CONVERT(varchar(100),YEAR(@now))+'-'+@month+'-'+@day
  618. else
  619. set @retdates= dbo.GetCalender(@month,@day,@now,@isLeapMonth)
  620. end
  621. end
  622. return CONVERT(varchar(100), @retdates, 20)
  623. end
  624. GO
  625. CREATE FUNCTION dbo.Fun_GetLunarCalendar(
  626. @Birthday nvarchar(100),
  627. @BirthdayLunar nvarchar(10)--, --是否为农历日期 0 为公历将转为农历日期返回 大于0 为农历直接原日期返回
  628. )
  629. /******
  630. 转公历为农历 获取农历生日日期
  631. 创建人:刘超
  632. 创建日期:2015-6-11 14:10
  633. 修改人:
  634. 修改说明:
  635. 修改日期:
  636. ******/
  637. RETURNS nvarchar(10)
  638. AS
  639. begin
  640. declare @retdates nvarchar(100)
  641. if @BirthdayLunar='0'
  642. --set @retdates= dbo.Proc_ConvertLunar(@Birthday)
  643. set @retdates=(select top 1 Lunar from LunarCalenderContrastTable where Calender=@Birthday)
  644. else
  645. set @retdates=CONVERT(varchar(10), @Birthday)
  646. set @retdates=replace(@retdates,' 0','')
  647. return CONVERT(varchar(10), @retdates)
  648. end
  649. GO
  650. CREATE FUNCTION dbo.Fun_GetLunarCalendarBirthday(
  651. @month varchar(3),
  652. @day varchar(3),
  653. @now datetime,
  654. @BirthdayLunar nvarchar(10)--, --是否为农历日期 0 为公历直接原日期返回 1 为农历将转为公历日期 2 为农历闰月将转为对闰月对应的公历日期
  655. )
  656. /******
  657. 转公历为农历 获取农历生日日期
  658. 创建人:刘超
  659. 创建日期:2015-6-11 14:10
  660. 修改人:
  661. 修改说明:
  662. 修改日期:
  663. ******/
  664. RETURNS nvarchar(10)
  665. AS
  666. begin
  667. declare @retdates nvarchar(100)
  668. if @BirthdayLunar='0'
  669. --set @retdates= dbo.Proc_ConvertLunar( CONVERT(varchar(10),YEAR(@now))+'-'+@month+'-'+@day)
  670. set @retdates=(select top 1 Lunar from LunarCalenderContrastTable where Calender=(CONVERT(varchar(10),YEAR(@now))+'-'+@month+'-'+@day))
  671. else
  672. set @retdates= CONVERT(varchar(10),YEAR(@now))+'-'+@month+'-'+@day
  673. return CONVERT(varchar(100), @retdates)
  674. end
  675. GO
  676. --sql汉字转拼音
  677. create function [dbo].[Fun_GetPinyin](@words nvarchar(4000))
  678. returns varchar(8000)
  679. as
  680. begin
  681. declare @word nchar(1)
  682. declare @pinyin varchar(8000)
  683. declare @i int
  684. declare @words_len int
  685. declare @unicode int
  686. set @i = 1
  687. set @words = ltrim(rtrim(@words))
  688. set @words_len = len(@words)
  689. while (@i <= @words_len) --循环取字符
  690. begin
  691. set @word = substring(@words, @i, 1)
  692. set @unicode = unicode(@word)
  693. set @pinyin = ISNULL(@pinyin+space(1),'')+
  694. (case when unicode(@word) between 19968 and 19968+20901 then
  695. (select top 1 py from (
  696. select 'a' as py,N'厑' as word
  697. union all select 'ai',N'靉'
  698. union all select 'an',N'黯'
  699. union all select 'ang',N'醠'
  700. union all select 'ao',N'驁'
  701. union all select 'ba',N'欛'
  702. union all select 'bai',N'瓸' --韛兡瓸
  703. union all select 'ban',N'瓣'
  704. union all select 'bang',N'鎊'
  705. union all select 'bao',N'鑤'
  706. union all select 'bei',N'鐾'
  707. union all select 'ben',N'輽'
  708. union all select 'beng',N'鏰'
  709. union all select 'bi',N'鼊'
  710. union all select 'bian',N'變'
  711. union all select 'biao',N'鰾'
  712. union all select 'bie',N'彆'
  713. union all select 'bin',N'鬢'
  714. union all select 'bing',N'靐'
  715. union all select 'bo',N'蔔'
  716. union all select 'bu',N'簿'
  717. union all select 'ca',N'囃'
  718. union all select 'cai',N'乲' --縩乲
  719. union all select 'can',N'爘'
  720. union all select 'cang',N'賶'
  721. union all select 'cao',N'鼜'
  722. union all select 'ce',N'簎'
  723. union all select 'cen',N'笒'
  724. union all select 'ceng',N'乽' --硛硳岾猠乽
  725. union all select 'cha',N'詫'
  726. union all select 'chai',N'囆'
  727. union all select 'chan',N'顫'
  728. union all select 'chang',N'韔'
  729. union all select 'chao',N'觘'
  730. union all select 'che',N'爡'
  731. union all select 'chen',N'讖'
  732. union all select 'cheng',N'秤'
  733. union all select 'chi',N'鷘'
  734. union all select 'chong',N'銃'
  735. union all select 'chou',N'殠'
  736. union all select 'chu',N'矗'
  737. union all select 'chuai',N'踹'
  738. union all select 'chuan',N'鶨'
  739. union all select 'chuang',N'愴'
  740. union all select 'chui',N'顀'
  741. union all select 'chun',N'蠢'
  742. union all select 'chuo',N'縒'
  743. union all select 'ci',N'嗭' --賜嗭
  744. union all select 'cong',N'謥'
  745. union all select 'cou',N'輳'
  746. union all select 'cu',N'顣'
  747. union all select 'cuan',N'爨'
  748. union all select 'cui',N'臎'
  749. union all select 'cun',N'籿'
  750. union all select 'cuo',N'錯'
  751. union all select 'da',N'橽'
  752. union all select 'dai',N'靆'
  753. union all select 'dan',N'饏'
  754. union all select 'dang',N'闣'
  755. union all select 'dao',N'纛'
  756. union all select 'de',N'的'
  757. union all select 'den',N'扽'
  758. union all select 'deng',N'鐙'
  759. union all select 'di',N'螮'
  760. union all select 'dia',N'嗲'
  761. union all select 'dian',N'驔'
  762. union all select 'diao',N'鑃'
  763. union all select 'die',N'嚸' --眰嚸
  764. union all select 'ding',N'顁'
  765. union all select 'diu',N'銩'
  766. union all select 'dong',N'霘'
  767. union all select 'dou',N'鬭'
  768. union all select 'du',N'蠹'
  769. union all select 'duan',N'叾' --籪叾
  770. union all select 'dui',N'譵'
  771. union all select 'dun',N'踲'
  772. union all select 'duo',N'鵽'
  773. union all select 'e',N'鱷'
  774. union all select 'en',N'摁'
  775. union all select 'eng',N'鞥'
  776. union all select 'er',N'樲'
  777. union all select 'fa',N'髮'
  778. union all select 'fan',N'瀪'
  779. union all select 'fang',N'放'
  780. union all select 'fei',N'靅'
  781. union all select 'fen',N'鱝'
  782. union all select 'feng',N'覅'
  783. union all select 'fo',N'梻'
  784. union all select 'fou',N'鴀'
  785. union all select 'fu',N'猤' --鰒猤
  786. union all select 'ga',N'魀'
  787. union all select 'gai',N'瓂'
  788. union all select 'gan',N'灨'
  789. union all select 'gang',N'戇'
  790. union all select 'gao',N'鋯'
  791. union all select 'ge',N'獦'
  792. union all select 'gei',N'給'
  793. union all select 'gen',N'搄'
  794. union all select 'geng',N'堩' --亙堩啹喼嗰
  795. union all select 'gong',N'兣' --熕贑兝兣
  796. union all select 'gou',N'購'
  797. union all select 'gu',N'顧'
  798. union all select 'gua',N'詿'
  799. union all select 'guai',N'恠'
  800. union all select 'guan',N'鱹'
  801. union all select 'guang',N'撗'
  802. union all select 'gui',N'鱥'
  803. union all select 'gun',N'謴'
  804. union all select 'guo',N'腂'
  805. union all select 'ha',N'哈'
  806. union all select 'hai',N'饚'
  807. union all select 'han',N'鶾'
  808. union all select 'hang',N'沆'
  809. union all select 'hao',N'兞'
  810. union all select 'he',N'靏'
  811. union all select 'hei',N'嬒'
  812. union all select 'hen',N'恨'
  813. union all select 'heng',N'堼' --堼囍
  814. union all select 'hong',N'鬨'
  815. union all select 'hou',N'鱟'
  816. union all select 'hu',N'鸌'
  817. union all select 'hua',N'蘳'
  818. union all select 'huai',N'蘾'
  819. union all select 'huan',N'鰀'
  820. union all select 'huang',N'鎤'
  821. union all select 'hui',N'顪'
  822. union all select 'hun',N'諢'
  823. union all select 'huo',N'夻'
  824. union all select 'ji',N'驥'
  825. union all select 'jia',N'嗧'
  826. union all select 'jian',N'鑳'
  827. union all select 'jiang',N'謽'
  828. union all select 'jiao',N'釂'
  829. union all select 'jie',N'繲'
  830. union all select 'jin',N'齽'
  831. union all select 'jing',N'竸'
  832. union all select 'jiong',N'蘔'
  833. union all select 'jiu',N'欍'
  834. union all select 'ju',N'爠'
  835. union all select 'juan',N'羂'
  836. union all select 'jue',N'钁'
  837. union all select 'jun',N'攈'
  838. union all select 'ka',N'鉲'
  839. union all select 'kai',N'乫' --鎎乫
  840. union all select 'kan',N'矙'
  841. union all select 'kang',N'閌'
  842. union all select 'kao',N'鯌'
  843. union all select 'ke',N'騍'
  844. union all select 'ken',N'褃'
  845. union all select 'keng',N'鏗' --巪乬唟厼怾
  846. union all select 'kong',N'廤'
  847. union all select 'kou',N'鷇'
  848. union all select 'ku',N'嚳'
  849. union all select 'kua',N'骻'
  850. union all select 'kuai',N'鱠'
  851. union all select 'kuan',N'窾'
  852. union all select 'kuang',N'鑛'
  853. union all select 'kui',N'鑎'
  854. union all select 'kun',N'睏'
  855. union all select 'kuo',N'穒'
  856. union all select 'la',N'鞡'
  857. union all select 'lai',N'籟'
  858. union all select 'lan',N'糷'
  859. union all select 'lang',N'唥'
  860. union all select 'lao',N'軂'
  861. union all select 'le',N'餎'
  862. union all select 'lei',N'脷' --嘞脷
  863. union all select 'leng',N'睖'
  864. union all select 'li',N'瓈'
  865. union all select 'lia',N'倆'
  866. union all select 'lian',N'纞'
  867. union all select 'liang',N'鍄'
  868. union all select 'liao',N'瞭'
  869. union all select 'lie',N'鱲'
  870. union all select 'lin',N'轥' --轥拎
  871. union all select 'ling',N'炩'
  872. union all select 'liu',N'咯' --瓼甅囖咯
  873. union all select 'long',N'贚'
  874. union all select 'lou',N'鏤'
  875. union all select 'lu',N'氇'
  876. union all select 'lv',N'鑢'
  877. union all select 'luan',N'亂'
  878. union all select 'lue',N'擽'
  879. union all select 'lun',N'論'
  880. union all select 'luo',N'鱳'
  881. union all select 'ma',N'嘛'
  882. union all select 'mai',N'霢'
  883. union all select 'man',N'蘰'
  884. union all select 'mang',N'蠎'
  885. union all select 'mao',N'唜'
  886. union all select 'me',N'癦' --癦呅
  887. union all select 'mei',N'嚜'
  888. union all select 'men',N'們'
  889. union all select 'meng',N'霥' --霿踎
  890. union all select 'mi',N'羃'
  891. union all select 'mian',N'麵'
  892. union all select 'miao',N'廟'
  893. union all select 'mie',N'鱴' --鱴瓱
  894. union all select 'min',N'鰵'
  895. union all select 'ming',N'詺'
  896. union all select 'miu',N'謬'
  897. union all select 'mo',N'耱' --耱乮
  898. union all select 'mou',N'麰' --麰蟱
  899. union all select 'mu',N'旀'
  900. union all select 'na',N'魶'
  901. union all select 'nai',N'錼'
  902. union all select 'nan',N'婻'
  903. union all select 'nang',N'齉'
  904. union all select 'nao',N'臑'
  905. union all select 'ne',N'呢'
  906. union all select 'nei',N'焾' --嫩焾
  907. union all select 'nen',N'嫩'
  908. union all select 'neng',N'能' --莻嗯鈪銰啱
  909. union all select 'ni',N'嬺'
  910. union all select 'nian',N'艌'
  911. union all select 'niang',N'釀'
  912. union all select 'niao',N'脲'
  913. union all select 'nie',N'钀'
  914. union all select 'nin',N'拰'
  915. union all select 'ning',N'濘'
  916. union all select 'niu',N'靵'
  917. union all select 'nong',N'齈'
  918. union all select 'nou',N'譳'
  919. union all select 'nu',N'搙'
  920. union all select 'nv',N'衄'
  921. union all select 'nue',N'瘧'
  922. union all select 'nuan',N'燶' --硸黁燶郍
  923. union all select 'nuo',N'桛'
  924. union all select 'o',N'鞰' --毮夞乯鞰
  925. union all select 'ou',N'漚'
  926. union all select 'pa',N'袙'
  927. union all select 'pai',N'磗' --鎃磗
  928. union all select 'pan',N'鑻'
  929. union all select 'pang',N'胖'
  930. union all select 'pao',N'礮'
  931. union all select 'pei',N'轡'
  932. union all select 'pen',N'喯'
  933. union all select 'peng',N'喸' --浌巼闏乶喸
  934. union all select 'pi',N'鸊'
  935. union all select 'pian',N'騙'
  936. union all select 'piao',N'慓'
  937. union all select 'pie',N'嫳'
  938. union all select 'pin',N'聘'
  939. union all select 'ping',N'蘋'
  940. union all select 'po',N'魄'
  941. union all select 'pou',N'哛' --兺哛
  942. union all select 'pu',N'曝'
  943. union all select 'qi',N'蟿'
  944. union all select 'qia',N'髂'
  945. union all select 'qian',N'縴'
  946. union all select 'qiang',N'瓩' --羻兛瓩
  947. union all select 'qiao',N'躈'
  948. union all select 'qie',N'籡'
  949. union all select 'qin',N'藽'
  950. union all select 'qing',N'櫦'
  951. union all select 'qiong',N'瓗'
  952. union all select 'qiu',N'糗'
  953. union all select 'qu',N'覻'
  954. union all select 'quan',N'勸'
  955. union all select 'que',N'礭'
  956. union all select 'qun',N'囕'
  957. union all select 'ran',N'橪'
  958. union all select 'rang',N'讓'
  959. union all select 'rao',N'繞'
  960. union all select 're',N'熱'
  961. union all select 'ren',N'餁'
  962. union all select 'reng',N'陾'
  963. union all select 'ri',N'馹'
  964. union all select 'rong',N'穃'
  965. union all select 'rou',N'嶿'
  966. union all select 'ru',N'擩'
  967. union all select 'ruan',N'礝'
  968. union all select 'rui',N'壡'
  969. union all select 'run',N'橍' --橍挼
  970. union all select 'ruo',N'鶸'
  971. union all select 'sa',N'栍' --櫒栍
  972. union all select 'sai',N'虄' --簺虄
  973. union all select 'san',N'閐'
  974. union all select 'sang',N'喪'
  975. union all select 'sao',N'髞'
  976. union all select 'se',N'飋' --裇聓
  977. union all select 'sen',N'篸'
  978. union all select 'seng',N'縇' --閪縇
  979. union all select 'sha',N'霎'
  980. union all select 'shai',N'曬'
  981. union all select 'shan',N'鱔'
  982. union all select 'shang',N'緔'
  983. union all select 'shao',N'潲'
  984. union all select 'she',N'欇'
  985. union all select 'shen',N'瘮'
  986. union all select 'sheng',N'賸'
  987. union all select 'shi',N'瓧' --鰘齛兙瓧
  988. union all select 'shou',N'鏉'
  989. union all select 'shu',N'虪'
  990. union all select 'shua',N'誜'
  991. union all select 'shuai',N'卛'
  992. union all select 'shuan',N'腨'
  993. union all select 'shuang',N'灀'
  994. union all select 'shui',N'睡'
  995. union all select 'shun',N'鬊'
  996. union all select 'shuo',N'鑠'
  997. union all select 'si',N'乺' --瀃螦乺
  998. union all select 'song',N'鎹'
  999. union all select 'sou',N'瘶'
  1000. union all select 'su',N'鷫'
  1001. union all select 'suan',N'算'
  1002. union all select 'sui',N'鐩'
  1003. union all select 'sun',N'潠'
  1004. union all select 'suo',N'蜶'
  1005. union all select 'ta',N'襨' --躢襨
  1006. union all select 'tai',N'燤'
  1007. union all select 'tan',N'賧'
  1008. union all select 'tang',N'燙'
  1009. union all select 'tao',N'畓' --討畓
  1010. union all select 'te',N'蟘'
  1011. union all select 'teng',N'朰' --霯唞朰
  1012. union all select 'ti',N'趯'
  1013. union all select 'tian',N'舚'
  1014. union all select 'tiao',N'糶'
  1015. union all select 'tie',N'餮'
  1016. union all select 'ting',N'乭' --濎乭
  1017. union all select 'tong',N'憅'
  1018. union all select 'tou',N'透'
  1019. union all select 'tu',N'鵵'
  1020. union all select 'tuan',N'褖'
  1021. union all select 'tui',N'駾'
  1022. union all select 'tun',N'坉'
  1023. union all select 'tuo',N'籜'
  1024. union all select 'wa',N'韤'
  1025. union all select 'wai',N'顡'
  1026. union all select 'wan',N'贎'
  1027. union all select 'wang',N'朢'
  1028. union all select 'wei',N'躛'
  1029. union all select 'wen',N'璺'
  1030. union all select 'weng',N'齆'
  1031. union all select 'wo',N'齷'
  1032. union all select 'wu',N'鶩'
  1033. union all select 'xi',N'衋'
  1034. union all select 'xia',N'鏬'
  1035. union all select 'xian',N'鼸'
  1036. union all select 'xiang',N'鱌'
  1037. union all select 'xiao',N'斆'
  1038. union all select 'xie',N'躞'
  1039. union all select 'xin',N'釁'
  1040. union all select 'xing',N'臖'
  1041. union all select 'xiong',N'敻'
  1042. union all select 'xiu',N'齅'
  1043. union all select 'xu',N'蓿'
  1044. union all select 'xuan',N'贙'
  1045. union all select 'xue',N'瀥'
  1046. union all select 'xun',N'鑂'
  1047. union all select 'ya',N'齾'
  1048. union all select 'yan',N'灩'
  1049. union all select 'yang',N'樣'
  1050. union all select 'yao',N'鑰'
  1051. union all select 'ye',N'岃' --鸈膶岃
  1052. union all select 'yi',N'齸'
  1053. union all select 'yin',N'檼'
  1054. union all select 'ying',N'譍'
  1055. union all select 'yo',N'喲'
  1056. union all select 'yong',N'醟'
  1057. union all select 'you',N'鼬'
  1058. union all select 'yu',N'爩'
  1059. union all select 'yuan',N'願'
  1060. union all select 'yue',N'鸙'
  1061. union all select 'yun',N'韻'
  1062. union all select 'za',N'雥'
  1063. union all select 'zai',N'縡'
  1064. union all select 'zan',N'饡'
  1065. union all select 'zang',N'臟'
  1066. union all select 'zao',N'竈'
  1067. union all select 'ze',N'稄'
  1068. union all select 'zei',N'鱡'
  1069. union all select 'zen',N'囎'
  1070. union all select 'zeng',N'贈'
  1071. union all select 'zha',N'醡'
  1072. union all select 'zhai',N'瘵'
  1073. union all select 'zhan',N'驏'
  1074. union all select 'zhang',N'瞕'
  1075. union all select 'zhao',N'羄'
  1076. union all select 'zhe',N'鷓'
  1077. union all select 'zhen',N'黮'
  1078. union all select 'zheng',N'證'
  1079. union all select 'zhi',N'豒'
  1080. union all select 'zhong',N'諥'
  1081. union all select 'zhou',N'驟'
  1082. union all select 'zhu',N'鑄'
  1083. union all select 'zhua',N'爪'
  1084. union all select 'zhuai',N'跩'
  1085. union all select 'zhuan',N'籑'
  1086. union all select 'zhuang',N'戅'
  1087. union all select 'zhui',N'鑆'
  1088. union all select 'zhun',N'稕'
  1089. union all select 'zhuo',N'籱'
  1090. union all select 'zi',N'漬' --漬唨
  1091. union all select 'zong',N'縱'
  1092. union all select 'zou',N'媰'
  1093. union all select 'zu',N'謯'
  1094. union all select 'zuan',N'攥'
  1095. union all select 'zui',N'欈'
  1096. union all select 'zun',N'銌'
  1097. union all select 'zuo',N'咗') t
  1098. where word >= @word collate Chinese_PRC_CS_AS_KS_WS
  1099. order by word ASC) else @word end)
  1100. set @i = @i + 1
  1101. end
  1102. return @pinyin
  1103. END
  1104. GO
  1105. Create function dbo.Fun_GetPy(@str nvarchar(4000))
  1106. returns nvarchar(4000)
  1107. --用于加密
  1108. --WITH ENCRYPTION
  1109. as
  1110. begin
  1111. declare @intLen int
  1112. declare @strRet nvarchar(4000)
  1113. declare @temp nvarchar(100)
  1114. set @intLen = len(@str)
  1115. set @strRet = ''
  1116. while @intLen > 0
  1117. begin
  1118. set @temp = ''
  1119. select @temp = case
  1120. when substring(@str,@intLen,1) >= '帀' then 'Z'
  1121. when substring(@str,@intLen,1) >= '丫' then 'Y'
  1122. when substring(@str,@intLen,1) >= '夕' then 'X'
  1123. when substring(@str,@intLen,1) >= '屲' then 'W'
  1124. when substring(@str,@intLen,1) >= '他' then 'T'
  1125. when substring(@str,@intLen,1) >= '仨' then 'S'
  1126. when substring(@str,@intLen,1) >= '呥' then 'R'
  1127. when substring(@str,@intLen,1) >= '七' then 'Q'
  1128. when substring(@str,@intLen,1) >= '妑' then 'P'
  1129. when substring(@str,@intLen,1) >= '噢' then 'O'
  1130. when substring(@str,@intLen,1) >= '拏' then 'N'
  1131. when substring(@str,@intLen,1) >= '嘸' then 'M'
  1132. when substring(@str,@intLen,1) >= '垃' then 'L'
  1133. when substring(@str,@intLen,1) >= '咔' then 'K'
  1134. when substring(@str,@intLen,1) >= '丌' then 'J'
  1135. when substring(@str,@intLen,1) >= '铪' then 'H'
  1136. when substring(@str,@intLen,1) >= '旮' then 'G'
  1137. when substring(@str,@intLen,1) >= '发' then 'F'
  1138. when substring(@str,@intLen,1) >= '妸' then 'E'
  1139. when substring(@str,@intLen,1) >= '咑' then 'D'
  1140. when substring(@str,@intLen,1) >= '嚓' then 'C'
  1141. when substring(@str,@intLen,1) >= '八' then 'B'
  1142. when substring(@str,@intLen,1) >= '吖' then 'A'
  1143. else rtrim(ltrim(substring(@str,@intLen,1)))
  1144. end
  1145. --对于汉字特殊字符,不生成拼音码
  1146. if (ascii(@temp)>127) set @temp = ''
  1147. --对于英文中小括号,不生成拼音码
  1148. if @temp = '(' or @temp = ')' set @temp = ''
  1149. select @strRet = @temp + @strRet
  1150. set @intLen = @intLen - 1
  1151. end
  1152. return lower(@strRet)
  1153. end
  1154. go
  1155. --创系统类别表唯一索引
  1156. CREATE UNIQUE NONCLUSTERED INDEX [IX_tb_ErpSystemCategory_Sc_ClassCode] ON [dbo].[tb_ErpSystemCategory]
  1157. (
  1158. [Sc_ClassCode] ASC
  1159. )
  1160. go
  1161. IF not EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[tb_SMSTemplates]') AND type in (N'U'))
  1162. begin
  1163. --创建短信模板表
  1164. CREATE TABLE [dbo].[tb_SMSTemplates](
  1165. [id] [int] PRIMARY KEY IDENTITY(1,1) NOT NULL,
  1166. --信息发送通道 0 为短信通道发送 1 为微信通道发送
  1167. [ST_SendChannel] int not NULL,
  1168. --短信模板类型 0 为人工短信 1 流程短信 2 事件短信
  1169. [ST_Type] int not NULL,
  1170. --短信模板类别 0 儿童摄影客户 1 为其它摄影客户(如婚纱客户、写真客户、积分和财务短信等)
  1171. [ST_Category] [int] not NULL,
  1172. --短信发送事件
  1173. [ST_SendEvent] [int] not NULL,
  1174. --事件值 如:X分钟的分钟数 或积分 X的积分分值 X天 X岁 X日期/时间
  1175. [ST_SendEventValue] [nvarchar](50) not NULL,
  1176. --短信接收对象 AllC 所有客户 AllE所有员工 或 X手机号(最多500个手机号)
  1177. [ST_ReceiveObjects] [varchar](8000) not NULL,
  1178. --短信模板标题
  1179. [ST_Title] [nvarchar](200) not NULL,
  1180. --短信模板内容 (建义不要超过270个字符长度)
  1181. [ST_SMSContent] [nvarchar](500) not NULL,
  1182. --是否启用模板 0 为禁用 1 为启用
  1183. [ST_IsEnabled] int not NULL,
  1184. --备注说明 少于800 字
  1185. [ST_Remark] [nvarchar](800) NULL,
  1186. --添加时间
  1187. [ST_CreateDatetime] [datetime] not NULL,
  1188. --修改时间
  1189. [ST_UpdateDatetime] [datetime] not NULL
  1190. )
  1191. --索引
  1192. CREATE NONCLUSTERED INDEX [IX_tb_SMSTemplates_SendEvent] ON [dbo].[tb_SMSTemplates]
  1193. (
  1194. [ST_SendEvent] ASC
  1195. )
  1196. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'短信模板表' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_SMSTemplates'
  1197. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'信息发送通道 0 为短信通道发送 1 为微信通道发送' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_SMSTemplates', @level2type=N'COLUMN',@level2name=N'ST_SendChannel'
  1198. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'短信模板类型 0 为人工短信 1 流程短信 2 事件短信 ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_SMSTemplates', @level2type=N'COLUMN',@level2name=N'ST_Type'
  1199. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'短信模板类别 0 儿童摄影客户 1 为其它摄影客户(如婚纱客户、写真客户、积分和财务短信等)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_SMSTemplates', @level2type=N'COLUMN',@level2name=N'ST_Category'
  1200. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'短信发送事件' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_SMSTemplates', @level2type=N'COLUMN',@level2name=N'ST_SendEvent'
  1201. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'事件值 如:X分钟的分钟数 或积分 X的积分分值 X天 X岁 X日期/时间 ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_SMSTemplates', @level2type=N'COLUMN',@level2name=N'ST_SendEventValue'
  1202. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'短信接收对象 AllC 所有客户 AllE所有员工 或 X手机号(最多500个手机号)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_SMSTemplates', @level2type=N'COLUMN',@level2name=N'ST_ReceiveObjects'
  1203. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'短信模板标题' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_SMSTemplates', @level2type=N'COLUMN',@level2name=N'ST_Title'
  1204. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'短信模板内容 (建义不要超过270个字符长度)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_SMSTemplates', @level2type=N'COLUMN',@level2name=N'ST_SMSContent'
  1205. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'是否启用模板 0 为禁用 1 为启用 ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_SMSTemplates', @level2type=N'COLUMN',@level2name=N'ST_IsEnabled'
  1206. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'备注说明 少于800 字' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_SMSTemplates', @level2type=N'COLUMN',@level2name=N'ST_Remark'
  1207. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'添加时间' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_SMSTemplates', @level2type=N'COLUMN',@level2name=N'ST_CreateDatetime'
  1208. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'修改时间' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_SMSTemplates', @level2type=N'COLUMN',@level2name=N'ST_UpdateDatetime'
  1209. end
  1210. go
  1211. IF not EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[tb_SMSRecords]') AND type in (N'U'))
  1212. begin
  1213. --创建短信发送记录表
  1214. CREATE TABLE [dbo].[tb_SMSRecords](
  1215. [id] [int] PRIMARY KEY IDENTITY(1,1) NOT NULL,
  1216. --信息发送通道 0 为短信通道发送 1 为微信通道发送
  1217. [SR_SendChannel] int not NULL,
  1218. --短信模板类型 0 为人工短信 1 流程短信 2 事件短信
  1219. [SR_Type] int not NULL,
  1220. --短信发送事件
  1221. [SR_SendEvent] [int] not NULL,
  1222. --短信生成标识 (生成短信记录时的唯一标识) 避免短信成复生成
  1223. [SR_SMSGenerateIdentity] [nvarchar](50) not NULL,
  1224. --短信发送后获取服务器返回的发送短信唯一标识(用于查询短信发送情况) 短信记录在服务器上只保存1个月
  1225. [SR_SMSSendIdentity] [nvarchar](50) not NULL,
  1226. --接收人手机号码,多个时用“,”号分隔
  1227. [SR_RecipientNumber] [nvarchar](4000) not NULL,
  1228. --短信内容 (建义不要超过270个字符长度)
  1229. [SR_Content] [nvarchar](500) not NULL,
  1230. --短信预设开始发送时间
  1231. [SR_StartSendDatetime] [datetime] not NULL,
  1232. --短信发送条数
  1233. [SR_SendSumCount] int not NULL,
  1234. --发送状态 -1 为发送失败 0 为等待发送 1 为发送成功 2 为发送中 3 为超时短信
  1235. [SR_Status] int not NULL,
  1236. --发送日志
  1237. [SR_SendLogs] [nvarchar](max) NULL,
  1238. --发送报告
  1239. [SR_SendReport] [nvarchar](800) NULL,
  1240. --短信生成时间
  1241. [SR_CreateDatetime] [datetime] not NULL,
  1242. --短信发送时间 短信实际发送时间
  1243. [SR_SendDatetime] [datetime] NULL,
  1244. --短信发送人
  1245. [SR_SMSSendSender] [nvarchar](50) not NULL,
  1246. )
  1247. --创建表唯一索引
  1248. CREATE UNIQUE NONCLUSTERED INDEX [IX_tb_SMSRecords_SMSGenerateIdentity] ON [dbo].[tb_SMSRecords]
  1249. (
  1250. [SR_SMSGenerateIdentity] ASC
  1251. )
  1252. --创建表非唯一索引
  1253. CREATE NONCLUSTERED INDEX [IX_tb_SMSRecords_SMSSendIdentity] ON [dbo].[tb_SMSRecords]
  1254. (
  1255. [SR_SMSSendIdentity] ASC
  1256. )
  1257. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'短信发送记录表' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_SMSRecords'
  1258. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'信息发送通道 0 为短信通道发送 1 为微信通道发送' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_SMSRecords', @level2type=N'COLUMN',@level2name=N'SR_SendChannel'
  1259. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'短信模板类型 0 为人工短信 1 流程短信 2 事件短信 ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_SMSRecords', @level2type=N'COLUMN',@level2name=N'SR_Type'
  1260. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'短信发送事件' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_SMSRecords', @level2type=N'COLUMN',@level2name=N'SR_SendEvent'
  1261. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'短信生成标识 (生成短信记录时的唯一标识) 避免短信成复生成 ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_SMSRecords', @level2type=N'COLUMN',@level2name=N'SR_SMSGenerateIdentity'
  1262. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'短信发送后获取服务器返回的发送短信唯一标识(用于查询短信发送情况) 短信记录在服务器上只保存1个月 ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_SMSRecords', @level2type=N'COLUMN',@level2name=N'SR_SMSSendIdentity'
  1263. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'接收人手机号码,多个时用“,”号分隔' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_SMSRecords', @level2type=N'COLUMN',@level2name=N'SR_RecipientNumber'
  1264. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'短信内容 (建义不要超过270个字符长度)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_SMSRecords', @level2type=N'COLUMN',@level2name=N'SR_Content'
  1265. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'短信预设开始发送时间' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_SMSRecords', @level2type=N'COLUMN',@level2name=N'SR_StartSendDatetime'
  1266. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'短信发送条数' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_SMSRecords', @level2type=N'COLUMN',@level2name=N'SR_SendSumCount'
  1267. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'发送状态 -1 为发送失败 0 为等待发送 1 为发送成功 2 为发送中 3 为超时短信' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_SMSRecords', @level2type=N'COLUMN',@level2name=N'SR_Status'
  1268. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'发送日志' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_SMSRecords', @level2type=N'COLUMN',@level2name=N'SR_SendLogs'
  1269. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'发送报告' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_SMSRecords', @level2type=N'COLUMN',@level2name=N'SR_SendReport'
  1270. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'短信生成时间' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_SMSRecords', @level2type=N'COLUMN',@level2name=N'SR_CreateDatetime'
  1271. EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'短信发送时间 短信实际发送时间' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'tb_SMSRecords', @level2type=N'COLUMN',@level2name=N'SR_SendDatetime'
  1272. end
  1273. IF not EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[tb_tb_Version]') AND type in (N'U'))
  1274. begin
  1275. --软件版本表
  1276. CREATE TABLE [dbo].[tb_Version](
  1277. [id] [int] IDENTITY(1,1) NOT NULL,
  1278. --版本号
  1279. [TV_Version] [nvarchar](50) not NULL,
  1280. --控制命
  1281. [TV_ControlCommand] [nvarchar](50) NULL,
  1282. [TV_ValidDateRun] [datetime] NULL,
  1283. [TV_CreateDatetime] [datetime] not NULL,
  1284. [TV_UpdateDatetime] [datetime] not NULL,
  1285. )
  1286. end