seller.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437
  1. <?php
  2. $type = function()
  3. {
  4. $array = array();
  5. $data = Dever::load('role/seller_type-state');
  6. if($data)
  7. {
  8. $array += $data;
  9. }
  10. return $array;
  11. };
  12. $seller = function()
  13. {
  14. $array = array();
  15. $data = Dever::load('role/seller-state');
  16. if($data)
  17. {
  18. $array += $data;
  19. }
  20. return $array;
  21. };
  22. $category = function()
  23. {
  24. $array = array();
  25. $data = Dever::load('product/category-getTop');
  26. if($data)
  27. {
  28. $array += $data;
  29. }
  30. return $array;
  31. };
  32. $price = function()
  33. {
  34. $array = array
  35. (
  36. -1 => '默认模板',
  37. );
  38. $data = Dever::load('product/price-state');
  39. if($data)
  40. {
  41. $array += $data;
  42. }
  43. return $array;
  44. };
  45. $sell_goods = array
  46. (
  47. 1 => '销售所有商品',
  48. 2 => '销售部分商品',
  49. );
  50. $identity = array
  51. (
  52. 1 => '个人',
  53. 2 => '个体户',
  54. 3 => '企业',
  55. );
  56. $stock = array
  57. (
  58. 1 => '独立库存',
  59. 2 => '共享库存',
  60. );
  61. $account = function() {
  62. return Dever::load('account/api')->getConfig('role/seller');
  63. };
  64. return array
  65. (
  66. # 表名
  67. 'name' => 'seller',
  68. # 显示给用户看的名称
  69. 'lang' => '销售商',
  70. # 是否显示在后台菜单
  71. 'order' => 10,
  72. # 数据结构
  73. 'struct' => array
  74. (
  75. 'id' => array
  76. (
  77. 'type' => 'int-11',
  78. 'name' => '销售商ID',
  79. 'default' => '',
  80. 'desc' => '',
  81. 'match' => 'is_numeric',
  82. 'list' => true,
  83. 'order' => 'asc',
  84. ),
  85. 'name' => array
  86. (
  87. 'type' => 'varchar-150',
  88. 'name' => '销售商名称',
  89. 'default' => '',
  90. 'desc' => '销售商名称',
  91. 'match' => 'is_string',
  92. 'update' => 'text',
  93. 'search' => 'fulltext',
  94. 'list' => true,
  95. 'edit' => true,
  96. ),
  97. 'info' => array
  98. (
  99. 'type' => 'varchar-800',
  100. 'name' => '销售商介绍',
  101. 'default' => '',
  102. 'desc' => '销售商介绍',
  103. 'match' => 'option',
  104. 'update' => 'textarea',
  105. ),
  106. 'type_id' => array
  107. (
  108. 'type' => 'int-11',
  109. 'name' => '销售商类型',
  110. 'default' => '1',
  111. 'desc' => '销售商类型',
  112. 'match' => 'is_numeric',
  113. 'update' => 'radio',
  114. 'option' => $type,
  115. 'list' => true,
  116. ),
  117. 'account' => array
  118. (
  119. 'type' => 'varchar-800',
  120. 'name' => '选择账户',
  121. 'default' => '',
  122. 'desc' => '选择账户',
  123. 'match' => 'is_string',
  124. 'update' => 'checkbox',
  125. 'option' => $account,
  126. 'list_name' => '账户信息',
  127. 'list' => 'Dever::load("account/api.getInfo", {id}, "{account}")',
  128. ),
  129. 'stock' => array
  130. (
  131. 'type' => 'tinyint-1',
  132. 'name' => '库存设置-如果商品有库存,这里设置库存是否独立或共享,独立库存就是该销售商自己使用一套库存,共享库存就是和其他销售商共享一套库存',
  133. 'default' => '1',
  134. 'desc' => '库存设置',
  135. 'match' => 'is_numeric',
  136. 'update' => 'radio',
  137. 'option' => $stock,
  138. 'control' => 'stock',
  139. ),
  140. 'stock_seller' => array
  141. (
  142. 'type' => 'int-11',
  143. 'name' => '共享销售商-选择和哪个销售商共享一套库存',
  144. 'default' => '-1',
  145. 'desc' => '共享销售商',
  146. 'match' => 'is_numeric',
  147. 'update' => 'select',
  148. 'option' => $seller,
  149. 'show' => 'stock=2'
  150. ),
  151. 'category' => array
  152. (
  153. 'type' => 'varchar-2000',
  154. 'name' => '商品属性分类-如不选择就是可以销售所有商品属性分类下的商品',
  155. 'default' => '',
  156. 'desc' => '商品属性分类',
  157. 'match' => 'is_string',
  158. 'update' => 'checkbox',
  159. 'option' => $category,
  160. ),
  161. 'price_id' => array
  162. (
  163. 'type' => 'int-11',
  164. 'name' => '商品价格模板',
  165. 'default' => '-1',
  166. 'desc' => '商品价格模板',
  167. 'match' => 'is_numeric',
  168. 'update' => 'select',
  169. 'option' => $price,
  170. ),
  171. 'commission' => array
  172. (
  173. 'type' => 'varchar-20',
  174. 'name' => '销售佣金调整-针对每个商品的销售佣金做统一调整,如填写5%,就是在原有销售佣金的基础上增加5%佣金,设置为0,则不做任何调整,设置为n,则佣金为0',
  175. 'default' => '0',
  176. 'desc' => '销售佣金调整',
  177. 'match' => 'is_string',
  178. 'update' => 'text',
  179. ),
  180. 'truename' => array
  181. (
  182. 'type' => 'varchar-100',
  183. 'name' => '联系人姓名',
  184. 'default' => '',
  185. 'desc' => '请输入联系人姓名',
  186. 'match' => 'is_string',
  187. 'update' => 'text',
  188. 'search' => 'fulltext',
  189. 'tab' => 1,
  190. ),
  191. 'mobile' => array
  192. (
  193. 'type' => 'bigint-11',
  194. 'name' => '联系人电话',
  195. 'default' => '',
  196. 'desc' => '请输入联系人电话',
  197. 'match' => 'is_numeric',
  198. 'update' => 'text',
  199. 'search' => 'fulltext',
  200. 'tab' => 1,
  201. ),
  202. 'area' => array
  203. (
  204. 'type' => 'varchar-500',
  205. 'name' => '联系人城市',
  206. 'default' => '',
  207. 'desc' => '联系人城市',
  208. 'match' => 'option',
  209. 'search' => 'linkage',
  210. 'update' => 'linkage',
  211. 'option' => Dever::url('api.get?level_total=3', 'area'),
  212. //'list' => 'Dever::load("area/api.string", "{area}")',
  213. 'tab' => 1,
  214. ),
  215. 'province' => array
  216. (
  217. 'type' => 'int-11',
  218. 'name' => '省份',
  219. 'default' => '',
  220. 'desc' => '省份',
  221. 'match' => 'option',
  222. //'update' => 'text',
  223. 'tab' => 1,
  224. ),
  225. 'city' => array
  226. (
  227. 'type' => 'int-11',
  228. 'name' => '城市',
  229. 'default' => '',
  230. 'desc' => '城市',
  231. 'match' => 'option',
  232. //'update' => 'text',
  233. 'tab' => 1,
  234. ),
  235. 'county' => array
  236. (
  237. 'type' => 'int-11',
  238. 'name' => '县区',
  239. 'default' => '',
  240. 'desc' => '县区',
  241. 'match' => 'option',
  242. //'update' => 'text',
  243. 'tab' => 1,
  244. ),
  245. 'address' => array
  246. (
  247. 'type' => 'varchar-1000',
  248. 'name' => '联系人地址',
  249. 'default' => '',
  250. 'desc' => '联系人地址',
  251. 'match' => 'option',
  252. 'update' => 'text',
  253. //'list' => true,
  254. 'tab' => 1,
  255. ),
  256. 'identity' => array
  257. (
  258. 'type' => 'tinyint-1',
  259. 'name' => '销售商身份',
  260. 'default' => '1',
  261. 'desc' => '销售商身份',
  262. 'match' => 'is_numeric',
  263. 'update' => 'radio',
  264. 'option' => $identity,
  265. 'control' => 'identity',
  266. 'tab' => 2,
  267. ),
  268. 'idcard_front' => array
  269. (
  270. 'type' => 'varchar-150',
  271. 'name' => '身份证正面-如果是个人,这里上传联系人身份证,如果是个体户或者企业,这里上传法人身份证',
  272. 'default' => '',
  273. 'desc' => '身份证正面',
  274. 'match' => 'option',
  275. 'update' => 'image',
  276. 'key' => '8',
  277. 'place' => '660*660',
  278. 'tab' => 2,
  279. ),
  280. 'idcard_back' => array
  281. (
  282. 'type' => 'varchar-150',
  283. 'name' => '身份证背面-如果是个人,这里上传联系人身份证,如果是个体户或者企业,这里上传法人身份证',
  284. 'default' => '',
  285. 'desc' => '身份证背面',
  286. 'match' => 'option',
  287. 'update' => 'image',
  288. 'key' => '8',
  289. 'place' => '660*660',
  290. 'tab' => 2,
  291. ),
  292. 'company_name' => array
  293. (
  294. 'type' => 'varchar-200',
  295. 'name' => '企业名称',
  296. 'default' => '',
  297. 'desc' => '企业名称',
  298. 'match' => 'option',
  299. 'update' => 'text',
  300. 'show' => 'identity=2,3',
  301. 'tab' => 2,
  302. ),
  303. 'company_license' => array
  304. (
  305. 'type' => 'varchar-150',
  306. 'name' => '企业营业执照',
  307. 'default' => '',
  308. 'desc' => '企业营业执照',
  309. 'match' => 'option',
  310. 'update' => 'image',
  311. 'key' => '8',
  312. 'place' => '660*660',
  313. 'show' => 'identity=2,3',
  314. 'tab' => 2,
  315. ),
  316. 'company_license_number' => array
  317. (
  318. 'type' => 'varchar-200',
  319. 'name' => '企业营业执照号码',
  320. 'default' => '',
  321. 'desc' => '营业执照号码',
  322. 'match' => 'option',
  323. 'update' => 'text',
  324. 'show' => 'identity=2,3',
  325. 'tab' => 2,
  326. ),
  327. 'reorder' => array
  328. (
  329. 'type' => 'int-11',
  330. 'name' => '排序(数值越大越靠前)',
  331. 'default' => '1',
  332. 'desc' => '请输入排序',
  333. 'match' => 'option',
  334. //'update' => 'text',
  335. 'search' => 'order',
  336. 'list_name' => '排序',
  337. 'list' => true,
  338. 'order' => 'desc',
  339. 'edit' => true,
  340. ),
  341. 'state' => array
  342. (
  343. 'type' => 'tinyint-1',
  344. 'name' => '状态',
  345. 'default' => '1',
  346. 'desc' => '请选择状态',
  347. 'match' => 'is_numeric',
  348. ),
  349. 'cdate' => array
  350. (
  351. 'type' => 'int-11',
  352. 'name' => '录入时间',
  353. 'match' => array('is_numeric', time()),
  354. 'desc' => '',
  355. # 只有insert时才生效
  356. 'insert' => true,
  357. //'search' => 'date',
  358. //'list' => 'date("Y-m-d H:i:s", {cdate})',
  359. ),
  360. ),
  361. 'manage' => array
  362. (
  363. 'tab' => array('基本设置', '联系人信息', '认证信息'),
  364. 'button' => array
  365. (
  366. '类型配置' => array('list', 'seller_type&oper_parent=seller'),
  367. ),
  368. 'list_button' => array
  369. (
  370. 'location' => array('商品列表', Dever::url('lib/seller.setGoods', 'role')),
  371. 'fast_add' => array('账户操作', 'push&project=account&oper_table=seller&oper_project=role&uid={id}'),
  372. )
  373. ),
  374. 'default' => array
  375. (
  376. 'col' => 'name,type_id,state,cdate',
  377. 'value' => array
  378. (
  379. '"平台销售", 1, 1,' . DEVER_TIME,
  380. ),
  381. ),
  382. 'request' => array
  383. (
  384. 'like' => array
  385. (
  386. # 匹配的正则或函数 选填项
  387. 'option' => array
  388. (
  389. 'name' => array('yes', 'like'),
  390. 'id' => 'yes',
  391. //'status' => 1,
  392. 'state' => 1,
  393. ),
  394. 'type' => 'all',
  395. 'order' => array('reorder' => 'desc', 'id' => 'desc'),
  396. 'col' => '*|id',
  397. ),
  398. )
  399. );