p.json 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986
  1. {
  2. "common": {
  3. "returnmap": "0"
  4. },
  5. "data": [
  6. {
  7. "name": "insertBigPartquit",
  8. "type": "e",
  9. "parammaps": {
  10. "pastureId": 631,
  11. "deptId": 837,
  12. "useForm": "CK56220923012",
  13. "quitId": 5253,
  14. "quitDate": "2022-09-27",
  15. "note": ""
  16. }
  17. },
  18. {
  19. "name": "insertSpotList",
  20. "resultmaps": {
  21. "list": [
  22. {
  23. "CPM": 1,
  24. "bigId": 667149,
  25. "brandId": 1983,
  26. "brandName": "无",
  27. "checkoutNumber": "3.00",
  28. "contractId": "643094",
  29. "eqCode": "56.ZLJ001",
  30. "eqId": 22958,
  31. "eqName": "制冷系统",
  32. "id": 767238,
  33. "isRefuse": 1,
  34. "locationId": 29126,
  35. "maintainId": -1,
  36. "note": "",
  37. "partCode": "14.02.15.07.000258",
  38. "partId": 519622,
  39. "partName": "氟利昂",
  40. "planUpkeepId": -1,
  41. "price": "6.99",
  42. "proId": 0,
  43. "proName": "",
  44. "providerId": 2853,
  45. "providerName": "无供应商旧件",
  46. "quitNumber": "3",
  47. "quitNumberC": "0.00",
  48. "refuseNumber": 0,
  49. "refuseStatue": 1,
  50. "reportery": "3.00",
  51. "specification": "巨化R410A",
  52. "sumPrice": "0.00",
  53. "unit": "瓶",
  54. "useNumber": "0.00",
  55. "useTypeV": "维修",
  56. "warehoseCode": "A-01-01",
  57. "srcpath": "",
  58. "picpath": ""
  59. }
  60. ]
  61. },
  62. "children": [
  63. {
  64. "name": "insertPartquit",
  65. "type": "e",
  66. "parammaps": {
  67. "bigId": "@insertBigPartquit.LastInsertId",
  68. "location": "@insertSpotList.warehoseCode",
  69. "partId": "@insertSpotList.partId",
  70. "partCode": "@insertSpotList.partCode",
  71. "partName": "@insertSpotList.partName",
  72. "specification": "@insertSpotList.specification",
  73. "price": "@insertSpotList.price",
  74. "unit": "@insertSpotList.unit",
  75. "brand": "@insertSpotList.brandName",
  76. "contractId": "@insertSpotList.contractId",
  77. "providerName": "@insertSpotList.providerName",
  78. "providerId": "@insertSpotList.providerId",
  79. "applyNumber": "@insertSpotList.quitNumberC",
  80. "quitNumber": "@insertSpotList.quitNumber",
  81. "useNumber": "@insertSpotList.checkoutNumber",
  82. "reportery": "@insertSpotList.reportery",
  83. "partUseId": "@insertSpotList.id"
  84. }
  85. },
  86. {
  87. "name": "updatePartRepertoryTK",
  88. "type": "e",
  89. "parammaps": {
  90. "quitNumber": "@insertSpotList.quitNumber",
  91. "providerId": "@insertSpotList.providerId",
  92. "partCode": "@insertSpotList.partCode",
  93. "contractId": "@insertSpotList.contractId",
  94. "price": "@insertSpotList.price",
  95. "location": "@insertSpotList.warehoseCode"
  96. }
  97. },
  98. {
  99. "name": "updatePartUseQuit",
  100. "type": "e",
  101. "parammaps": {
  102. "quitNumber": "@insertSpotList.quitNumber",
  103. "id": "@insertSpotList.id"
  104. }
  105. }
  106. ]
  107. }
  108. ]
  109. }:
  110. ----
  111. {
  112. "common": {
  113. "returnmap": "0"
  114. },
  115. "data": [
  116. {
  117. "name": "insertBigPartquit",
  118. "type": "e",
  119. "parammaps": {
  120. "pastureId": 631,
  121. "deptId": 837,
  122. "useForm": "CK56220923012",
  123. "quitId": 5253,
  124. "quitDate": "2022-09-28",
  125. "note": ""
  126. }
  127. },
  128. {
  129. "name": "insertSpotList",
  130. "resultmaps": {
  131. "list": [
  132. {
  133. "CPM": 1,
  134. "bigId": 667149,
  135. "brandId": 1983,
  136. "brandName": "无",
  137. "checkoutNumber": "3.00",
  138. "contractId": "643094",
  139. "eqCode": "56.ZLJ001",
  140. "eqId": 22958,
  141. "eqName": "制冷系统",
  142. "id": 767238,
  143. "isRefuse": 1,
  144. "locationId": 29126,
  145. "maintainId": -1,
  146. "note": "",
  147. "partCode": "14.02.15.07.000258",
  148. "partId": 519622,
  149. "partName": "氟利昂",
  150. "planUpkeepId": -1,
  151. "price": "6.99",
  152. "proId": 0,
  153. "proName": "",
  154. "providerId": 2853,
  155. "providerName": "无供应商旧件",
  156. "quitNumber": "3",
  157. "quitNumberC": "0.00",
  158. "refuseNumber": 0,
  159. "refuseStatue": 1,
  160. "reportery": "3.00",
  161. "specification": "巨化R410A",
  162. "sumPrice": "0.00",
  163. "unit": "瓶",
  164. "useNumber": "0.00",
  165. "useTypeV": "维修",
  166. "warehoseCode": "A-01-01",
  167. "srcpath": "",
  168. "picpath": ""
  169. }
  170. ]
  171. },
  172. "children": [
  173. {
  174. "name": "insertPartquit",
  175. "type": "e",
  176. "parammaps": {
  177. "bigId": "@insertBigPartquit.LastInsertId",
  178. "location": "@insertSpotList.warehoseCode",
  179. "partId": "@insertSpotList.partId",
  180. "partCode": "@insertSpotList.partCode",
  181. "partName": "@insertSpotList.partName",
  182. "specification": "@insertSpotList.specification",
  183. "price": "@insertSpotList.price",
  184. "unit": "@insertSpotList.unit",
  185. "brand": "@insertSpotList.brandName",
  186. "contractId": "@insertSpotList.contractId",
  187. "providerName": "@insertSpotList.providerName",
  188. "providerId": "@insertSpotList.providerId",
  189. "applyNumber": "@insertSpotList.quitNumberC",
  190. "quitNumber": "@insertSpotList.quitNumber",
  191. "useNumber": "@insertSpotList.checkoutNumber",
  192. "reportery": "@insertSpotList.reportery",
  193. "partUseId": "@insertSpotList.id"
  194. }
  195. },
  196. {
  197. "name": "updatePartRepertoryTK",
  198. "type": "e",
  199. "parammaps": {
  200. "quitNumber": "@insertSpotList.quitNumber",
  201. "providerId": "@insertSpotList.providerId",
  202. "partCode": "@insertSpotList.partCode",
  203. "contractId": "@insertSpotList.contractId",
  204. "price": "@insertSpotList.price",
  205. "location": "@insertSpotList.warehoseCode"
  206. }
  207. },
  208. {
  209. "name": "updatePartUseQuit",
  210. "type": "e",
  211. "parammaps": {
  212. "quitNumber": "@insertSpotList.quitNumber",
  213. "id": "@insertSpotList.id"
  214. }
  215. }
  216. ]
  217. }
  218. ]
  219. }:
  220. -- tuihuo
  221. {
  222. "name": "partrefundCharge",
  223. "offset": 0,
  224. "pagecount": 0,
  225. "parammaps": {
  226. "id": 2764,
  227. "statue": 3,
  228. "empId": "3",
  229. "workflowNote": ""
  230. },
  231. "common": {
  232. "returnmap": "0"
  233. },
  234. "data": [
  235. {
  236. "name": "partrefundCharge1",
  237. "type": "e",
  238. "parammaps": {
  239. "id": 2764,
  240. "statue": 5,
  241. "empId": "3"
  242. }
  243. },
  244. {
  245. "name": "updatePartRepertoryTHS",
  246. "type": "e",
  247. "parammaps": {
  248. "id": 2764
  249. }
  250. }
  251. ]
  252. }
  253. ---
  254. {
  255. "common": {
  256. "returnmap": "0"
  257. },
  258. "data": [
  259. {
  260. "name": "insertBigPartrefund",
  261. "type": "e",
  262. "parammaps": {
  263. "pastureId": 18,
  264. "providerId": "1963",
  265. "useForm": "TH00220930002",
  266. "employeId": 3,
  267. "createTime": "2022-09-30",
  268. "note": ""
  269. }
  270. },
  271. {
  272. "name": "insertSpotList",
  273. "resultmaps": {
  274. "list": [
  275. {
  276. "bigId": 546918,
  277. "brand": "阿菲金",
  278. "brandId": 4013,
  279. "contractId": "621421",
  280. "enable": 1,
  281. "id": 517469,
  282. "inventoryType": 1,
  283. "isZeroStock": 0,
  284. "location": "H-03-20",
  285. "partCode": "14.06.01.01.001112",
  286. "partId": 468182,
  287. "partName": "二代计步器绑带",
  288. "partRepId": 517469,
  289. "pastureId": 18,
  290. "pastureName": "现代牧业",
  291. "picpath": "https://tmrwatch.cn:8082/uploads/thumbnail/insertcustompic/ec781e40d4a5e3456ee31c9e1c81f85c.jpg",
  292. "planAmount": "1.00",
  293. "price": "17.87",
  294. "providerId": 1963,
  295. "providerName": "赛娜牧业",
  296. "remark": "",
  297. "reportery": "100.00",
  298. "specification": "阿菲金",
  299. "srcpath": "https://tmrwatch.cn:8082/uploads/image/insertcustompic/ec781e40d4a5e3456ee31c9e1c81f85c.jpg",
  300. "unit": "根",
  301. "refundNumber": "1"
  302. }
  303. ]
  304. },
  305. "children": [
  306. {
  307. "name": "insertPartrefund",
  308. "type": "e",
  309. "parammaps": {
  310. "bigId": "@insertBigPartrefund.LastInsertId",
  311. "partId": "@insertSpotList.partId",
  312. "partCode": "@insertSpotList.partCode",
  313. "partName": "@insertSpotList.partName",
  314. "specification": "@insertSpotList.specification",
  315. "price": "@insertSpotList.price",
  316. "unit": "@insertSpotList.unit",
  317. "brand": "@insertSpotList.brand",
  318. "reportery": "@insertSpotList.reportery",
  319. "refundNumber": "@insertSpotList.refundNumber",
  320. "contractId": "@insertSpotList.contractId",
  321. "location": "@insertSpotList.location"
  322. }
  323. }
  324. ]
  325. }
  326. ]
  327. }
  328. ---
  329. {
  330. "name": "partrefundCharge",
  331. "offset": 0,
  332. "pagecount": 0,
  333. "parammaps": {
  334. "id": 3355,
  335. "statue": 3,
  336. "empId": "3",
  337. "workflowNote": ""
  338. },
  339. "common": {
  340. "returnmap": "0"
  341. },
  342. "data": [
  343. {
  344. "name": "partrefundCharge1",
  345. "type": "e",
  346. "parammaps": {
  347. "id": 3355,
  348. "statue": 5,
  349. "empId": "3"
  350. }
  351. },
  352. {
  353. "name": "updatePartRepertoryTHS",
  354. "type": "e",
  355. "parammaps": {
  356. "id": 3355
  357. }
  358. }
  359. ]
  360. }
  361. ---
  362. {
  363. "common": {
  364. "returnmap": "0"
  365. },
  366. "data": [
  367. {
  368. "name": "insertBigPartquit",
  369. "type": "e",
  370. "parammaps": {
  371. "pastureId": 18,
  372. "deptId": 20,
  373. "useForm": "CK00220822002",
  374. "quitId": 3,
  375. "quitDate": "2022-09-30",
  376. "note": ""
  377. }
  378. },
  379. {
  380. "name": "insertSpotList",
  381. "resultmaps": {
  382. "list": [
  383. {
  384. "CPM": 1,
  385. "bigId": 620997,
  386. "brandId": 1982,
  387. "brandName": "赛娜牧业",
  388. "checkoutNumber": "5",
  389. "contractId": "621431",
  390. "eqCode": "40501000000",
  391. "eqId": 22033,
  392. "eqName": "发电机",
  393. "id": 706134,
  394. "isRefuse": 1,
  395. "locationId": 27177,
  396. "maintainId": -1,
  397. "note": "",
  398. "partCode": "14.01.07.01.000014",
  399. "partId": 468436,
  400. "partName": "万向充气橡胶轮",
  401. "planUpkeepId": -1,
  402. "price": "11",
  403. "proId": 0,
  404. "proName": "",
  405. "providerId": 2961,
  406. "quitNumber": "1.00",
  407. "quitNumberC": "1.00",
  408. "refuseNumber": 0,
  409. "refuseStatue": 1,
  410. "reportery": "0.00",
  411. "specification": "6层级4.10/3.50-4",
  412. "sumPrice": "11.00",
  413. "unit": "个",
  414. "useNumber": "5.00",
  415. "useTypeV": "维修",
  416. "srcpath": "",
  417. "picpath": ""
  418. }
  419. ]
  420. },
  421. "children": [
  422. {
  423. "name": "insertPartquit",
  424. "type": "e",
  425. "parammaps": {
  426. "bigId": "@insertBigPartquit.LastInsertId",
  427. "location": "@insertSpotList.warehoseCode",
  428. "partId": "@insertSpotList.partId",
  429. "partCode": "@insertSpotList.partCode",
  430. "partName": "@insertSpotList.partName",
  431. "specification": "@insertSpotList.specification",
  432. "price": "@insertSpotList.price",
  433. "unit": "@insertSpotList.unit",
  434. "brand": "@insertSpotList.brandName",
  435. "contractId": "@insertSpotList.contractId",
  436. "providerName": "@insertSpotList.providerName",
  437. "providerId": "@insertSpotList.providerId",
  438. "applyNumber": "@insertSpotList.quitNumberC",
  439. "quitNumber": "@insertSpotList.quitNumber",
  440. "useNumber": "@insertSpotList.checkoutNumber",
  441. "reportery": "@insertSpotList.reportery",
  442. "partUseId": "@insertSpotList.id"
  443. }
  444. },
  445. {
  446. "name": "updatePartRepertoryTK",
  447. "type": "e",
  448. "parammaps": {
  449. "quitNumber": "@insertSpotList.quitNumber",
  450. "providerId": "@insertSpotList.providerId",
  451. "partCode": "@insertSpotList.partCode",
  452. "contractId": "@insertSpotList.contractId",
  453. "price": "@insertSpotList.price",
  454. "location": "@insertSpotList.locationId"
  455. }
  456. },
  457. {
  458. "name": "updatePartUseQuit",
  459. "type": "e",
  460. "parammaps": {
  461. "quitNumber": "@insertSpotList.quitNumber",
  462. "id": "@insertSpotList.id"
  463. }
  464. }
  465. ]
  466. }
  467. ]
  468. }
  469. -- diaobo
  470. {
  471. "common": {
  472. "returnmap": "0"
  473. },
  474. "data": [
  475. {
  476. "name": "insertBigPartTransfer",
  477. "type": "e",
  478. "parammaps": {
  479. "pastureId": 18,
  480. "inPastureId": 17,
  481. "applyCode": "DB00220930001",
  482. "empId": 3,
  483. "applyDate": "2022-09-30",
  484. "group": "JS"
  485. }
  486. },
  487. {
  488. "name": "insertSpotList",
  489. "resultmaps": {
  490. "list": [
  491. {
  492. "bigId": 545293,
  493. "brand": "根",
  494. "brandId": 5910,
  495. "contractId": "519464",
  496. "enable": 1,
  497. "id": 449279,
  498. "inventoryType": 1,
  499. "isZeroStock": 0,
  500. "locationId": 12224,
  501. "partCode": "04.05.13.05.000259",
  502. "partId": 449279,
  503. "partName": "加热管",
  504. "partRepId": 422744,
  505. "pastureId": 18,
  506. "pastureName": "现代牧业,马鞍山牧场,汶上牧场,商河牧场,合肥牧场,蚌埠牧场,洪雅牧场,宝鸡牧场,和林牧场,恒盛牧场,察北牧场,塞一牧场,塞二牧场,塞三牧场,塞四牧场,通辽牧场,双城牧场,尚志牧场,西藏牧场,新乐牧场",
  507. "planAmount": "1.00",
  508. "price": "1370",
  509. "providerId": 1986,
  510. "providerName": "奥耐尔",
  511. "remark": "",
  512. "reportery": "5.00",
  513. "specification": "805001A",
  514. "unit": "根",
  515. "srcpath": "",
  516. "picpath": "",
  517. "amount": "1"
  518. }
  519. ]
  520. },
  521. "children": [
  522. {
  523. "name": "insertParttTransfer",
  524. "type": "e",
  525. "parammaps": {
  526. "bigId": "@insertBigPartTransfer.LastInsertId",
  527. "pastureId": "@insertSpotList.pastureId",
  528. "partId": "@insertSpotList.partId",
  529. "partCode": "@insertSpotList.partCode",
  530. "partName": "@insertSpotList.partName",
  531. "specification": "@insertSpotList.specification",
  532. "price": "@insertSpotList.price",
  533. "unit": "@insertSpotList.unit",
  534. "brandId": "@insertSpotList.brandId",
  535. "brandName": "@insertSpotList.brand",
  536. "amount": "@insertSpotList.amount",
  537. "providerName": "@insertSpotList.providerName",
  538. "providerId": "@insertSpotList.providerId",
  539. "note": "@insertSpotList.note",
  540. "partRepId": "@insertSpotList.partRepId"
  541. }
  542. }
  543. ]
  544. }
  545. ]
  546. }
  547. -- diaobochuku
  548. {
  549. "common": {
  550. "returnmap": "0"
  551. },
  552. "data": [
  553. {
  554. "name": "insertBigPartUse",
  555. "type": "e",
  556. "parammaps": {
  557. "pastureId": 18,
  558. "departmentId": 20,
  559. "useForm": "CK00220930003",
  560. "useType": 4,
  561. "applicatId": 3,
  562. "receiveTime": "2022-09-30",
  563. "empId": 3,
  564. "oddCode": "DB00220928002"
  565. }
  566. },
  567. {
  568. "name": "insertSpotList",
  569. "resultmaps": {
  570. "list": [
  571. {
  572. "amount": "1",
  573. "bigId": 159,
  574. "brand": "山猫",
  575. "brandId": 2035,
  576. "brandName": "山猫",
  577. "contractId": "518364",
  578. "id": 205,
  579. "note": "",
  580. "partCode": "04.05.15.01.000005",
  581. "partId": 449722,
  582. "partName": "空气内滤芯",
  583. "partRepId": 424329,
  584. "pastureId": 18,
  585. "price": "145",
  586. "providerId": 1978,
  587. "providerName": "河北山猫",
  588. "specification": "6598362",
  589. "sumPrice": "145",
  590. "unit": "只",
  591. "warehoseCode": "",
  592. "srcpath": "",
  593. "picpath": ""
  594. }
  595. ]
  596. },
  597. "children": [
  598. {
  599. "name": "insertPartUse",
  600. "type": "e",
  601. "parammaps": {
  602. "bigId": "@insertBigPartUse.LastInsertId",
  603. "locationId": -1,
  604. "contractId": "@insertSpotList.contractId",
  605. "providerName": "@insertSpotList.providerName",
  606. "providerId": "@insertSpotList.providerId",
  607. "departmentId": "@insertSpotList.departmentId",
  608. "partId": "@insertSpotList.partId",
  609. "partCode": "@insertSpotList.partCode",
  610. "partName": "@insertSpotList.partName",
  611. "specification": "@insertSpotList.specification",
  612. "price": "@insertSpotList.price",
  613. "unit": "@insertSpotList.unit",
  614. "brandId": "@insertSpotList.brandId",
  615. "useNumber": 0,
  616. "checkoutNumber": "@insertSpotList.amount",
  617. "eqName": "@insertSpotList.eqName",
  618. "eqCode": "@insertSpotList.eqCode",
  619. "reportery": 0,
  620. "useTypeV": "@insertSpotList.useTypeV",
  621. "note": "@insertSpotList.note"
  622. }
  623. },
  624. {
  625. "name": "updatePartUseRepertory",
  626. "type": "e",
  627. "parammaps": {
  628. "checkoutNumber": "@insertSpotList.amount",
  629. "partRepId": "@insertSpotList.partRepId"
  630. }
  631. }
  632. ]
  633. },
  634. {
  635. "name": "updateBigPartTransfer",
  636. "type": "e",
  637. "parammaps": {
  638. "id": 159,
  639. "statue": 4,
  640. "useCode": "CK00220930003"
  641. }
  642. }
  643. ]
  644. }
  645. {
  646. "common": {
  647. "returnmap": "0"
  648. },
  649. "data": [
  650. {
  651. "name": "insertBigPartUse",
  652. "type": "e",
  653. "parammaps": {
  654. "pastureId": 18,
  655. "departmentId": 20,
  656. "useForm": "CK00220930004",
  657. "useType": 1,
  658. "applicatId": 3,
  659. "receiveTime": "2022-09-30",
  660. "empId": 3
  661. }
  662. },
  663. {
  664. "name": "insertSpotList",
  665. "resultmaps": {
  666. "list": [
  667. {
  668. "brand": "山猫",
  669. "brandId": 2035,
  670. "contractId": "518361",
  671. "id": 422176,
  672. "location": "A-03-05",
  673. "locationId": 19508,
  674. "maxRepertory": "10",
  675. "minRepertory": "0",
  676. "partCode": "04.05.15.01.000001",
  677. "partId": 449718,
  678. "partName": "机油滤芯",
  679. "pastureId": 18,
  680. "price": "100",
  681. "providerId": 1978,
  682. "providerName": "河北山猫",
  683. "providerNames": "",
  684. "reportery": "1.00",
  685. "specification": "6675517",
  686. "unit": "只",
  687. "useTypeV": "土建",
  688. "checkoutNumber": "1.00",
  689. "srcpath": "",
  690. "picpath": "",
  691. "eqName": "装载机",
  692. "eqCode": "50100000000",
  693. "isNo": "Yes"
  694. }
  695. ]
  696. },
  697. "children": [
  698. {
  699. "name": "insertPartUse",
  700. "type": "e",
  701. "parammaps": {
  702. "bigId": "@insertBigPartUse.LastInsertId",
  703. "locationId": "@insertSpotList.locationId",
  704. "departmentId": "@insertSpotList.departmentId",
  705. "partId": "@insertSpotList.partId",
  706. "partCode": "@insertSpotList.partCode",
  707. "partName": "@insertSpotList.partName",
  708. "specification": "@insertSpotList.specification",
  709. "price": "@insertSpotList.price",
  710. "unit": "@insertSpotList.unit",
  711. "brandId": "@insertSpotList.brandId",
  712. "contractId": "@insertSpotList.contractId",
  713. "useNumber": 0,
  714. "checkoutNumber": "@insertSpotList.checkoutNumber",
  715. "eqName": "@insertSpotList.eqName",
  716. "eqCode": "@insertSpotList.eqCode",
  717. "reportery": "@insertSpotList.reportery",
  718. "useTypeV": "@insertSpotList.useTypeV",
  719. "note": "@insertSpotList.note"
  720. }
  721. },
  722. {
  723. "name": "insertPartUseRepertory",
  724. "type": "e",
  725. "parammaps": {
  726. "checkoutNumber": "@insertSpotList.checkoutNumber",
  727. "pastureId": "@insertSpotList.pastureId",
  728. "locationId": "@insertSpotList.locationId",
  729. "location": "@insertSpotList.location",
  730. "partId": "@insertSpotList.partId",
  731. "partCode": "@insertSpotList.partCode",
  732. "partName": "@insertSpotList.partName",
  733. "specification": "@insertSpotList.specification",
  734. "providerId": "@insertSpotList.providerId",
  735. "providerName": "@insertSpotList.providerName",
  736. "brandId": "@insertSpotList.brandId",
  737. "price": "@insertSpotList.price",
  738. "unit": "@insertSpotList.unit",
  739. "contractId": "@insertSpotList.contractId"
  740. }
  741. }
  742. ]
  743. }
  744. ]
  745. }
  746. --
  747. {
  748. "common": {
  749. "returnmap": "0"
  750. },
  751. "data": [
  752. {
  753. "name": "insertBigPartquit",
  754. "type": "e",
  755. "parammaps": {
  756. "pastureId": 18,
  757. "deptId": 20,
  758. "useForm": "CK00220822002",
  759. "quitId": 3,
  760. "quitDate": "2022-09-30",
  761. "note": ""
  762. }
  763. },
  764. {
  765. "name": "insertSpotList",
  766. "resultmaps": {
  767. "list": [
  768. {
  769. "CPM": 1,
  770. "bigId": 620997,
  771. "brandId": 1982,
  772. "brandName": "赛娜牧业",
  773. "checkoutNumber": "5",
  774. "contractId": "621431",
  775. "eqCode": "40501000000",
  776. "eqId": 22033,
  777. "eqName": "发电机",
  778. "id": 706134,
  779. "isRefuse": 1,
  780. "locationId": 27177,
  781. "maintainId": -1,
  782. "note": "",
  783. "partCode": "14.01.07.01.000014",
  784. "partId": 468436,
  785. "partName": "万向充气橡胶轮",
  786. "planUpkeepId": -1,
  787. "price": "11",
  788. "proId": 0,
  789. "proName": "",
  790. "providerId": 2961,
  791. "quitNumber": "1",
  792. "quitNumberC": "2.00",
  793. "refuseNumber": 0,
  794. "refuseStatue": 1,
  795. "reportery": "0.00",
  796. "specification": "6层级4.10/3.50-4",
  797. "sumPrice": "22.00",
  798. "unit": "个",
  799. "useNumber": "5.00",
  800. "useTypeV": "维修",
  801. "srcpath": "",
  802. "picpath": ""
  803. }
  804. ]
  805. },
  806. "children": [
  807. {
  808. "name": "insertPartquit",
  809. "type": "e",
  810. "parammaps": {
  811. "bigId": "@insertBigPartquit.LastInsertId",
  812. "location": "@insertSpotList.warehoseCode",
  813. "partId": "@insertSpotList.partId",
  814. "partCode": "@insertSpotList.partCode",
  815. "partName": "@insertSpotList.partName",
  816. "specification": "@insertSpotList.specification",
  817. "price": "@insertSpotList.price",
  818. "unit": "@insertSpotList.unit",
  819. "brand": "@insertSpotList.brandName",
  820. "contractId": "@insertSpotList.contractId",
  821. "providerName": "@insertSpotList.providerName",
  822. "providerId": "@insertSpotList.providerId",
  823. "applyNumber": "@insertSpotList.quitNumberC",
  824. "quitNumber": "@insertSpotList.quitNumber",
  825. "useNumber": "@insertSpotList.checkoutNumber",
  826. "reportery": "@insertSpotList.reportery",
  827. "partUseId": "@insertSpotList.id"
  828. }
  829. },
  830. {
  831. "name": "updatePartRepertoryTK",
  832. "type": "e",
  833. "parammaps": {
  834. "quitNumber": "@insertSpotList.quitNumber",
  835. "providerId": "@insertSpotList.providerId",
  836. "partCode": "@insertSpotList.partCode",
  837. "contractId": "@insertSpotList.contractId",
  838. "price": "@insertSpotList.price",
  839. "locationId": "@insertSpotList.locationId"
  840. }
  841. },
  842. {
  843. "name": "updatePartUseQuit",
  844. "type": "e",
  845. "parammaps": {
  846. "quitNumber": "@insertSpotList.quitNumber",
  847. "id": "@insertSpotList.id"
  848. }
  849. }
  850. ]
  851. }
  852. ]
  853. }
  854. {
  855. "common": {
  856. "returnmap": "0"
  857. },
  858. "data": [
  859. {
  860. "name": "insertBigContractV2",
  861. "type": "e",
  862. "parammaps": {
  863. "pastureId": 18,
  864. "flag": 603,
  865. "providerId": 3091,
  866. "providerName": "北京莱凯博仪",
  867. "startTime": "2022-09-22",
  868. "stopTime": "2022-09-30",
  869. "contractCode": "",
  870. "contractCode1": "BJ0022090012",
  871. "creatorId": "3",
  872. "creatorMan": "系统管理员",
  873. "creatorTime": "2022-09-30",
  874. "isZeroStock": 0,
  875. "statue": 1,
  876. "remark": "",
  877. "SHtype": 1
  878. }
  879. },
  880. {
  881. "name": "insertSpotList",
  882. "resultmaps": {
  883. "list": [
  884. {
  885. "category": "XD08",
  886. "category2": "",
  887. "category3": "",
  888. "categoryId": 0,
  889. "categoryId2": 0,
  890. "categoryId3": 0,
  891. "chargeId": 0,
  892. "createPersonId": 0,
  893. "enable": 1,
  894. "id": 475485,
  895. "isCommon": 0,
  896. "name": "插头",
  897. "note": "插头_16A/3插头/250V",
  898. "partCode": "14.01.01.01.000009",
  899. "partName": "插头",
  900. "picpath": "",
  901. "purpose": "",
  902. "specification": "16A/3插头/250V",
  903. "statue": 1,
  904. "unit": "个",
  905. "workflowNote": "",
  906. "srcpath": "",
  907. "myid": 1664517564631,
  908. "brandName": "福晨",
  909. "brandId": 1988,
  910. "brand": "福晨",
  911. "planAmount": "1",
  912. "price": "1",
  913. "taxcode": "Jo"
  914. }
  915. ]
  916. },
  917. "children": [
  918. {
  919. "name": "checkcontracPartCode",
  920. "type": "v",
  921. "parammaps": {
  922. "pastureId": 18,
  923. "providerId": 3091,
  924. "stopTime": "2022-09-30",
  925. "flag": 603,
  926. "isZeroStock": 0,
  927. "statue": 1,
  928. "partCode": "@insertSpotList.partCode",
  929. "brandId": "@insertSpotList.brandId"
  930. }
  931. },
  932. {
  933. "name": "insertContractV2",
  934. "type": "e",
  935. "parammaps": {
  936. "bigId": "@insertBigContractV2.LastInsertId",
  937. "pastureId": 18,
  938. "pastureName": "现代牧业",
  939. "partId": "@insertSpotList.id",
  940. "partName": "@insertSpotList.partName",
  941. "partCode": "@insertSpotList.partCode",
  942. "specification": "@insertSpotList.specification",
  943. "price": "@insertSpotList.price",
  944. "brandId": "@insertSpotList.brandId",
  945. "brand": "@insertSpotList.brand",
  946. "planAmount": "@insertSpotList.planAmount",
  947. "remark": "@insertSpotList.remark",
  948. "unit": "@insertSpotList.unit",
  949. "contractId": "@insertSpotList.contractId",
  950. "taxcode": "@insertSpotList.taxcode"
  951. }
  952. }
  953. ]
  954. }
  955. ]
  956. }
  957. {
  958. "common": {
  959. "returnmap": "0"
  960. },
  961. "data": [
  962. {
  963. "name": "insertBigContractV2",
  964. "type": "e",
  965. "parammaps": {
  966. "pastureId": 18,
  967. "flag": 603,
  968. "providerId": 3091,
  969. "providerName": "北京莱凯博仪",
  970. "startTime": "2022-09-22",
  971. "stopTime": "2022-09-30",
  972. "contractCode": "",
  973. "contractCode1": "BJ0022090012",
  974. "creatorId": "3",
  975. "creatorMan": "系统管理员",
  976. "creatorTime": "2022-09-30",
  977. "isZeroStock": 0,
  978. "statue": 1,
  979. "remark": "",
  980. "SHtype": 2
  981. }
  982. },
  983. {
  984. "name": "insertSpotList",
  985. "resultmaps": {
  986. "list": [
  987. {
  988. "bigId": 547078,
  989. "brand": "启安",
  990. "brandId": 1989,
  991. "brandName": "启安",
  992. "contractId": 623962,
  993. "enable": 1,
  994. "id": 623962,
  995. "inventoryType": 1,
  996. "isZeroStock": 0,
  997. "partCode": "14.01.01.01.000003",
  998. "partId": 468380,
  999. "partName": "UPS电源",
  1000. "pastureId": 18,
  1001. "pastureName": "现代牧业",
  1002. "planAmount": "13.00",
  1003. "price": "14",
  1004. "remark": "",
  1005. "specification": "C2K/2KV/1.4KW",
  1006. "unit": "台",
  1007. "srcpath": "",
  1008. "picpath": "",
  1009. "myid": 1664517691627,
  1010. "taxcode": "123"
  1011. }
  1012. ]
  1013. },
  1014. "children": [
  1015. {
  1016. "name": "insertContractV2",
  1017. "type": "e",
  1018. "parammaps": {
  1019. "bigId": "@insertBigContractV2.LastInsertId",
  1020. "pastureId": "@insertSpotList.pastureId",
  1021. "pastureName": "@insertSpotList.pastureName",
  1022. "partId": "@insertSpotList.partId",
  1023. "partName": "@insertSpotList.partName",
  1024. "partCode": "@insertSpotList.partCode",
  1025. "specification": "@insertSpotList.specification",
  1026. "price": "@insertSpotList.price",
  1027. "brandId": "@insertSpotList.brandId",
  1028. "brand": "@insertSpotList.brand",
  1029. "planAmount": "@insertSpotList.planAmount",
  1030. "remark": "@insertSpotList.remark",
  1031. "unit": "@insertSpotList.unit",
  1032. "contractId": "@insertSpotList.contractId",
  1033. "taxcode": "@insertSpotList.taxcode"
  1034. }
  1035. }
  1036. ]
  1037. }
  1038. ]
  1039. }
  1040. --
  1041. {
  1042. "common": {
  1043. "returnmap": "0"
  1044. },
  1045. "data": [
  1046. {
  1047. "name": "insertBigPartTransfer",
  1048. "type": "e",
  1049. "parammaps": {
  1050. "pastureId": 18,
  1051. "inPastureId": 94,
  1052. "applyCode": "DB00220930004",
  1053. "empId": 3,
  1054. "applyDate": "2022-09-30",
  1055. "groupName": "JSLLS"
  1056. }
  1057. },
  1058. {
  1059. "name": "insertSpotList",
  1060. "resultmaps": {
  1061. "list": [
  1062. {
  1063. "bigId": 544995,
  1064. "brand": "山猫",
  1065. "brandId": 2035,
  1066. "contractId": "518362",
  1067. "enable": 1,
  1068. "id": 449719,
  1069. "inventoryType": 1,
  1070. "isZeroStock": 0,
  1071. "locationId": 19508,
  1072. "partCode": "04.05.15.01.000002",
  1073. "partId": 449719,
  1074. "partName": "柴油滤芯",
  1075. "partRepId": 422177,
  1076. "pastureId": 18,
  1077. "pastureName": "马鞍山牧场,现代牧业,汶上牧场,商河牧场,合肥牧场,蚌埠牧场,洪雅牧场,宝鸡牧场,和林牧场,恒盛牧场,察北牧场,塞一牧场,塞二牧场,塞三牧场,塞四牧场,通辽牧场,双城牧场,尚志牧场,西藏牧场,新乐牧场",
  1078. "planAmount": "1.00",
  1079. "price": "180",
  1080. "providerId": 1978,
  1081. "providerName": "河北山猫",
  1082. "remark": "货期5-7",
  1083. "reportery": "1.00",
  1084. "specification": "6667352",
  1085. "unit": "只",
  1086. "srcpath": "",
  1087. "picpath": "",
  1088. "amount": "1"
  1089. }
  1090. ]
  1091. },
  1092. "children": [
  1093. {
  1094. "name": "insertParttTransfer",
  1095. "type": "e",
  1096. "parammaps": {
  1097. "bigId": "@insertBigPartTransfer.LastInsertId",
  1098. "pastureId": "@insertSpotList.pastureId",
  1099. "partId": "@insertSpotList.partId",
  1100. "partCode": "@insertSpotList.partCode",
  1101. "partName": "@insertSpotList.partName",
  1102. "specification": "@insertSpotList.specification",
  1103. "price": "@insertSpotList.price",
  1104. "unit": "@insertSpotList.unit",
  1105. "brandId": "@insertSpotList.brandId",
  1106. "brandName": "@insertSpotList.brand",
  1107. "amount": "@insertSpotList.amount",
  1108. "providerName": "@insertSpotList.providerName",
  1109. "providerId": "@insertSpotList.providerId",
  1110. "note": "@insertSpotList.note",
  1111. "partRepId": "@insertSpotList.partRepId"
  1112. }
  1113. }
  1114. ]
  1115. }
  1116. ]
  1117. }
  1118. --lingyong
  1119. {
  1120. "common": {
  1121. "returnmap": "0"
  1122. },
  1123. "data": [
  1124. {
  1125. "name": "insertBigpartapply",
  1126. "type": "e",
  1127. "parammaps": {
  1128. "pastureId": 18,
  1129. "applyCode": "LY00220930001",
  1130. "applyType": 1,
  1131. "departmentId": 20,
  1132. "empId": 3,
  1133. "applyDate": "2022-09-30",
  1134. "SHStatus": 9
  1135. }
  1136. },
  1137. {
  1138. "name": "insertSpotList",
  1139. "resultmaps": {
  1140. "list": [
  1141. {
  1142. "bigId": 544995,
  1143. "brand": "山猫",
  1144. "brandId": 2035,
  1145. "contractId": "518362",
  1146. "enable": 1,
  1147. "id": 449719,
  1148. "inventoryType": 1,
  1149. "isZeroStock": 0,
  1150. "locationId": 19522,
  1151. "partCode": "04.05.15.01.000002",
  1152. "partId": 449719,
  1153. "partName": "柴油滤芯",
  1154. "partRepId": 426080,
  1155. "pastureId": 18,
  1156. "pastureName": "马鞍山牧场,现代牧业,汶上牧场,商河牧场,合肥牧场,蚌埠牧场,洪雅牧场,宝鸡牧场,和林牧场,恒盛牧场,察北牧场,塞一牧场,塞二牧场,塞三牧场,塞四牧场,通辽牧场,双城牧场,尚志牧场,西藏牧场,新乐牧场",
  1157. "planAmount": "1.00",
  1158. "price": "180",
  1159. "providerId": 1978,
  1160. "providerName": "河北山猫",
  1161. "remark": "货期5-7",
  1162. "reportery": "4.00",
  1163. "specification": "6667352",
  1164. "unit": "只",
  1165. "srcpath": "",
  1166. "picpath": "",
  1167. "eqName": "华为笔记本",
  1168. "eqCode": "60000000002",
  1169. "amount": "1",
  1170. "sumPrice": "180.00",
  1171. "note": "test0930"
  1172. }
  1173. ]
  1174. },
  1175. "children": [
  1176. {
  1177. "name": "insertpartapply",
  1178. "type": "e",
  1179. "parammaps": {
  1180. "bigId": "@insertBigpartapply.LastInsertId",
  1181. "pastureId": "@insertSpotList.pastureId",
  1182. "partId": "@insertSpotList.partId",
  1183. "partCode": "@insertSpotList.partCode",
  1184. "partName": "@insertSpotList.partName",
  1185. "specification": "@insertSpotList.specification",
  1186. "brandId": "@insertSpotList.brandId",
  1187. "price": "@insertSpotList.price",
  1188. "amount": "@insertSpotList.amount",
  1189. "eqName": "@insertSpotList.eqName",
  1190. "eqCode": "@insertSpotList.eqCode",
  1191. "providerId": "@insertSpotList.providerId",
  1192. "note": "@insertSpotList.note",
  1193. "reportery": "@insertSpotList.reportery",
  1194. "contractId": "@insertSpotList.contractId",
  1195. "locationId": "@insertSpotList.locationId"
  1196. }
  1197. }
  1198. ]
  1199. }
  1200. ]
  1201. }
  1202. ----
  1203. {
  1204. "common": {
  1205. "returnmap": "0"
  1206. },
  1207. "data": [
  1208. {
  1209. "name": "insertBigPartquit",
  1210. "type": "e",
  1211. "parammaps": {
  1212. "pastureId": 304,
  1213. "deptId": 322,
  1214. "useForm": "CK19220907007",
  1215. "quitId": 2435,
  1216. "quitDate": "2022-10-08",
  1217. "note": ""
  1218. }
  1219. },
  1220. {
  1221. "name": "insertSpotList",
  1222. "resultmaps": {
  1223. "list": [
  1224. {
  1225. "CPM": 1,
  1226. "bigId": 662023,
  1227. "brandId": 5910,
  1228. "brandName": "根",
  1229. "checkoutNumber": "2",
  1230. "contractId": "497099",
  1231. "eqCode": "19.JLM002",
  1232. "eqId": 17424,
  1233. "eqName": "卷帘门",
  1234. "id": 760421,
  1235. "isRefuse": 1,
  1236. "locationId": 10559,
  1237. "maintainId": -1,
  1238. "note": "",
  1239. "partCode": "14.01.07.01.001021",
  1240. "partId": 419629,
  1241. "partName": "拉簧",
  1242. "planUpkeepId": -1,
  1243. "price": "380",
  1244. "proId": 0,
  1245. "proName": "",
  1246. "providerId": 2241,
  1247. "providerName": "凯亿斯",
  1248. "quitNumber": "2",
  1249. "quitNumberC": "0.00",
  1250. "refuseNumber": 0,
  1251. "refuseStatue": 1,
  1252. "reportery": "3.00",
  1253. "specification": "1套",
  1254. "sumPrice": "0.00",
  1255. "unit": "根",
  1256. "useNumber": "2.00",
  1257. "useTypeV": "土建",
  1258. "warehoseCode": "CA-01-21",
  1259. "srcpath": "",
  1260. "picpath": ""
  1261. }
  1262. ]
  1263. },
  1264. "children": [
  1265. {
  1266. "name": "insertPartquit",
  1267. "type": "e",
  1268. "parammaps": {
  1269. "bigId": "@insertBigPartquit.LastInsertId",
  1270. "location": "@insertSpotList.warehoseCode",
  1271. "partId": "@insertSpotList.partId",
  1272. "partCode": "@insertSpotList.partCode",
  1273. "partName": "@insertSpotList.partName",
  1274. "specification": "@insertSpotList.specification",
  1275. "price": "@insertSpotList.price",
  1276. "unit": "@insertSpotList.unit",
  1277. "brand": "@insertSpotList.brandName",
  1278. "contractId": "@insertSpotList.contractId",
  1279. "providerName": "@insertSpotList.providerName",
  1280. "providerId": "@insertSpotList.providerId",
  1281. "applyNumber": "@insertSpotList.quitNumberC",
  1282. "quitNumber": "@insertSpotList.quitNumber",
  1283. "useNumber": "@insertSpotList.checkoutNumber",
  1284. "reportery": "@insertSpotList.reportery",
  1285. "partUseId": "@insertSpotList.id"
  1286. }
  1287. },
  1288. {
  1289. "name": "updatePartRepertoryTK",
  1290. "type": "e",
  1291. "parammaps": {
  1292. "quitNumber": "@insertSpotList.quitNumber",
  1293. "providerId": "@insertSpotList.providerId",
  1294. "partCode": "@insertSpotList.partCode",
  1295. "contractId": "@insertSpotList.contractId",
  1296. "price": "@insertSpotList.price",
  1297. "locationId": "@insertSpotList.locationId"
  1298. }
  1299. },
  1300. {
  1301. "name": "updatePartUseQuit",
  1302. "type": "e",
  1303. "parammaps": {
  1304. "quitNumber": "@insertSpotList.quitNumber",
  1305. "id": "@insertSpotList.id"
  1306. }
  1307. }
  1308. ]
  1309. }
  1310. ]
  1311. }
  1312. --
  1313. {
  1314. "common": {
  1315. "returnmap": "0"
  1316. },
  1317. "data": [
  1318. {
  1319. "name": "insertBigPartquit",
  1320. "type": "e",
  1321. "parammaps": {
  1322. "pastureId": 304,
  1323. "deptId": 322,
  1324. "useForm": "CK19220907007",
  1325. "quitId": 2435,
  1326. "quitDate": "2022-10-08",
  1327. "note": ""
  1328. }
  1329. },
  1330. {
  1331. "name": "insertSpotList",
  1332. "resultmaps": {
  1333. "list": [
  1334. {
  1335. "CPM": 1,
  1336. "bigId": 662023,
  1337. "brandId": 5910,
  1338. "brandName": "根",
  1339. "checkoutNumber": "2",
  1340. "contractId": "497099",
  1341. "eqCode": "19.JLM002",
  1342. "eqId": 17424,
  1343. "eqName": "卷帘门",
  1344. "id": 760421,
  1345. "isRefuse": 1,
  1346. "locationId": 10559,
  1347. "maintainId": -1,
  1348. "note": "",
  1349. "partCode": "14.01.07.01.001021",
  1350. "partId": 419629,
  1351. "partName": "拉簧",
  1352. "planUpkeepId": -1,
  1353. "price": "380",
  1354. "proId": 0,
  1355. "proName": "",
  1356. "providerId": 2241,
  1357. "providerName": "凯亿斯",
  1358. "quitNumber": "2",
  1359. "quitNumberC": "0.00",
  1360. "refuseNumber": 0,
  1361. "refuseStatue": 1,
  1362. "reportery": "3.00",
  1363. "specification": "1套",
  1364. "sumPrice": "0.00",
  1365. "unit": "根",
  1366. "useNumber": "2.00",
  1367. "useTypeV": "土建",
  1368. "warehoseCode": "CA-01-21",
  1369. "srcpath": "",
  1370. "picpath": ""
  1371. }
  1372. ]
  1373. },
  1374. "children": [
  1375. {
  1376. "name": "insertPartquit",
  1377. "type": "e",
  1378. "parammaps": {
  1379. "bigId": "@insertBigPartquit.LastInsertId",
  1380. "location": "@insertSpotList.warehoseCode",
  1381. "partId": "@insertSpotList.partId",
  1382. "partCode": "@insertSpotList.partCode",
  1383. "partName": "@insertSpotList.partName",
  1384. "specification": "@insertSpotList.specification",
  1385. "price": "@insertSpotList.price",
  1386. "unit": "@insertSpotList.unit",
  1387. "brand": "@insertSpotList.brandName",
  1388. "contractId": "@insertSpotList.contractId",
  1389. "providerName": "@insertSpotList.providerName",
  1390. "providerId": "@insertSpotList.providerId",
  1391. "applyNumber": "@insertSpotList.quitNumberC",
  1392. "quitNumber": "@insertSpotList.quitNumber",
  1393. "useNumber": "@insertSpotList.checkoutNumber",
  1394. "reportery": "@insertSpotList.reportery",
  1395. "partUseId": "@insertSpotList.id"
  1396. }
  1397. },
  1398. {
  1399. "name": "updatePartRepertoryTK",
  1400. "type": "e",
  1401. "parammaps": {
  1402. "quitNumber": "@insertSpotList.quitNumber",
  1403. "providerId": "@insertSpotList.providerId",
  1404. "partCode": "@insertSpotList.partCode",
  1405. "contractId": "@insertSpotList.contractId",
  1406. "price": "@insertSpotList.price",
  1407. "locationId": "@insertSpotList.locationId"
  1408. }
  1409. },
  1410. {
  1411. "name": "updatePartUseQuit",
  1412. "type": "e",
  1413. "parammaps": {
  1414. "quitNumber": "@insertSpotList.quitNumber",
  1415. "id": "@insertSpotList.id"
  1416. }
  1417. }
  1418. ]
  1419. }
  1420. ]
  1421. }
  1422. --
  1423. {
  1424. "common": {
  1425. "returnmap": "0"
  1426. },
  1427. "data": [
  1428. {
  1429. "name": "insertBigPartquit",
  1430. "type": "e",
  1431. "parammaps": {
  1432. "pastureId": 304,
  1433. "deptId": 322,
  1434. "useForm": "CK19220907007",
  1435. "quitId": 2435,
  1436. "quitDate": "2022-10-08",
  1437. "note": ""
  1438. }
  1439. },
  1440. {
  1441. "name": "insertSpotList",
  1442. "resultmaps": {
  1443. "list": [
  1444. {
  1445. "CPM": 1,
  1446. "bigId": 662023,
  1447. "brandId": 5910,
  1448. "brandName": "根",
  1449. "checkoutNumber": "2",
  1450. "contractId": "497099",
  1451. "eqCode": "19.JLM002",
  1452. "eqId": 17424,
  1453. "eqName": "卷帘门",
  1454. "id": 760421,
  1455. "isRefuse": 1,
  1456. "locationId": 10559,
  1457. "maintainId": -1,
  1458. "note": "",
  1459. "partCode": "14.01.07.01.001021",
  1460. "partId": 419629,
  1461. "partName": "拉簧",
  1462. "planUpkeepId": -1,
  1463. "price": "380",
  1464. "proId": 0,
  1465. "proName": "",
  1466. "providerId": 2241,
  1467. "providerName": "凯亿斯",
  1468. "quitNumber": "2",
  1469. "quitNumberC": "0.00",
  1470. "refuseNumber": 0,
  1471. "refuseStatue": 1,
  1472. "reportery": "3.00",
  1473. "specification": "1套",
  1474. "sumPrice": "0.00",
  1475. "unit": "根",
  1476. "useNumber": "2.00",
  1477. "useTypeV": "土建",
  1478. "warehoseCode": "CA-01-21",
  1479. "srcpath": "",
  1480. "picpath": ""
  1481. }
  1482. ]
  1483. },
  1484. "children": [
  1485. {
  1486. "name": "insertPartquit",
  1487. "type": "e",
  1488. "parammaps": {
  1489. "bigId": "@insertBigPartquit.LastInsertId",
  1490. "location": "@insertSpotList.warehoseCode",
  1491. "partId": "@insertSpotList.partId",
  1492. "partCode": "@insertSpotList.partCode",
  1493. "partName": "@insertSpotList.partName",
  1494. "specification": "@insertSpotList.specification",
  1495. "price": "@insertSpotList.price",
  1496. "unit": "@insertSpotList.unit",
  1497. "brand": "@insertSpotList.brandName",
  1498. "contractId": "@insertSpotList.contractId",
  1499. "providerName": "@insertSpotList.providerName",
  1500. "providerId": "@insertSpotList.providerId",
  1501. "applyNumber": "@insertSpotList.quitNumberC",
  1502. "quitNumber": "@insertSpotList.quitNumber",
  1503. "useNumber": "@insertSpotList.checkoutNumber",
  1504. "reportery": "@insertSpotList.reportery",
  1505. "partUseId": "@insertSpotList.id"
  1506. }
  1507. },
  1508. {
  1509. "name": "updatePartRepertoryTK",
  1510. "type": "e",
  1511. "parammaps": {
  1512. "quitNumber": "@insertSpotList.quitNumber",
  1513. "providerId": "@insertSpotList.providerId",
  1514. "partCode": "@insertSpotList.partCode",
  1515. "contractId": "@insertSpotList.contractId",
  1516. "price": "@insertSpotList.price",
  1517. "locationId": "@insertSpotList.locationId"
  1518. }
  1519. },
  1520. {
  1521. "name": "updatePartUseQuit",
  1522. "type": "e",
  1523. "parammaps": {
  1524. "quitNumber": "@insertSpotList.quitNumber",
  1525. "id": "@insertSpotList.id"
  1526. }
  1527. }
  1528. ]
  1529. }
  1530. ]
  1531. }
  1532. ---
  1533. --------------------------------
  1534. {
  1535. "common": {
  1536. "returnmap": "0"
  1537. },
  1538. "data": [
  1539. {
  1540. "name": "insertSpotList3",
  1541. "resultmaps": {
  1542. "list": [
  1543. {
  1544. "bigId": 419328,
  1545. "brand": "无",
  1546. "brandId": 1983,
  1547. "contractId": 217665,
  1548. "enable": 1,
  1549. "id": 445500,
  1550. "inventoryType": 1,
  1551. "isZeroStock": 0,
  1552. "locationId": 10573,
  1553. "mr": 0,
  1554. "partCode": "14.06.09.01.000020",
  1555. "partId": 445500,
  1556. "partName": "正压气缸",
  1557. "partRepId": 68719,
  1558. "pastureId": 304,
  1559. "pastureName": "蚌埠",
  1560. "planAmount": "2.00",
  1561. "price": "420",
  1562. "prid": 68719,
  1563. "providerId": 1963,
  1564. "providerName": "赛娜牧业",
  1565. "remark": "",
  1566. "reportery": "40.00",
  1567. "specification": "CP96SB40-250",
  1568. "unit": "套",
  1569. "amount": "1"
  1570. }
  1571. ]
  1572. },
  1573. "children": [
  1574. {
  1575. "name": "updatePartapplyuseAmount_m",
  1576. "type": "e",
  1577. "parammaps": {
  1578. "amount": "@insertSpotList3.amount",
  1579. "paid": "@insertSpotList3.contractId",
  1580. "RUCode": "BX19220929004"
  1581. }
  1582. }
  1583. ]
  1584. },
  1585. {
  1586. "name": "insertBigpartapply_m",
  1587. "type": "e",
  1588. "parammaps": {
  1589. "pastureId": 304,
  1590. "applyCode": "LY19221008014",
  1591. "applyType": 1,
  1592. "departmentId": "438",
  1593. "empId": 3097,
  1594. "applyDate": "2022-10-08",
  1595. "RUCode": "BX19220929004"
  1596. }
  1597. },
  1598. {
  1599. "name": "insertSpotList2",
  1600. "resultmaps": {
  1601. "list": []
  1602. },
  1603. "children": [
  1604. {
  1605. "name": "insertpartapply_m",
  1606. "type": "e",
  1607. "parammaps": {
  1608. "bigId": "BX19220929004",
  1609. "prid": "@insertSpotList2.prid",
  1610. "pastureId": "@insertSpotList2.pastureId",
  1611. "partId": "@insertSpotList2.partId",
  1612. "partCode": "@insertSpotList2.partCode",
  1613. "partName": "@insertSpotList2.partName",
  1614. "specification": "@insertSpotList2.specification",
  1615. "brandId": "@insertSpotList2.brandId",
  1616. "price": "@insertSpotList2.price",
  1617. "amount": "@insertSpotList2.amount",
  1618. "eqName": "柴油叉车",
  1619. "eqCode": "19.CYCC018",
  1620. "providerId": "@insertSpotList2.providerId",
  1621. "note": "@insertSpotList2.note",
  1622. "reportery": "@insertSpotList2.reportery",
  1623. "contractId": "@insertSpotList2.contractId"
  1624. }
  1625. }
  1626. ]
  1627. },
  1628. {
  1629. "name": "insertBigpartapply",
  1630. "type": "e",
  1631. "parammaps": {
  1632. "pastureId": 304,
  1633. "applyCode": "LY19221008014",
  1634. "applyType": 1,
  1635. "departmentId": "438",
  1636. "empId": 3097,
  1637. "applyDate": "2022-10-08",
  1638. "RUCode": "BX19220929004",
  1639. "SHStatus": 9
  1640. }
  1641. },
  1642. {
  1643. "name": "insertSpotList",
  1644. "resultmaps": {
  1645. "list": [
  1646. {
  1647. "amount": "1",
  1648. "bigId": 419328,
  1649. "brand": "无",
  1650. "brandId": 1983,
  1651. "contractId": 217665,
  1652. "enable": 1,
  1653. "id": 445500,
  1654. "inventoryType": 1,
  1655. "isZeroStock": 0,
  1656. "partCode": "14.06.09.01.000020",
  1657. "partId": 445500,
  1658. "partName": "正压气缸",
  1659. "partRepId": 68719,
  1660. "pastureId": 304,
  1661. "pastureName": "蚌埠",
  1662. "planAmount": "2.00",
  1663. "price": "420",
  1664. "providerId": 1963,
  1665. "providerName": "赛娜牧业",
  1666. "remark": "",
  1667. "reportery": "40.00",
  1668. "specification": "CP96SB40-250",
  1669. "unit": "套",
  1670. "prid": 68719,
  1671. "mr": 0,
  1672. "locationId": 10573
  1673. }
  1674. ]
  1675. },
  1676. "children": [
  1677. {
  1678. "name": "insertpartapply",
  1679. "type": "e",
  1680. "parammaps": {
  1681. "bigId": "@insertBigpartapply.LastInsertId",
  1682. "pastureId": "@insertSpotList.pastureId",
  1683. "partId": "@insertSpotList.partId",
  1684. "partCode": "@insertSpotList.partCode",
  1685. "partName": "@insertSpotList.partName",
  1686. "specification": "@insertSpotList.specification",
  1687. "brandId": "@insertSpotList.brandId",
  1688. "price": "@insertSpotList.price",
  1689. "amount": "@insertSpotList.amount",
  1690. "eqName": "柴油叉车",
  1691. "eqCode": "19.CYCC018",
  1692. "providerId": "@insertSpotList.providerId",
  1693. "note": "@insertSpotList.note",
  1694. "reportery": "@insertSpotList.reportery",
  1695. "contractId": "@insertSpotList.contractId",
  1696. "locationId": "@insertSpotList.locationId"
  1697. }
  1698. }
  1699. ]
  1700. }
  1701. ]
  1702. }
  1703. ----
  1704. {
  1705. "common": {
  1706. "returnmap": "0"
  1707. },
  1708. "data": [
  1709. {
  1710. "name": "insertSpotList3",
  1711. "resultmaps": {
  1712. "list": [
  1713. {
  1714. "bigId": 419328,
  1715. "brand": "无",
  1716. "brandId": 1983,
  1717. "contractId": 217665,
  1718. "enable": 1,
  1719. "id": 445500,
  1720. "inventoryType": 1,
  1721. "isZeroStock": 0,
  1722. "locationId": 10573,
  1723. "mr": 0,
  1724. "partCode": "14.06.09.01.000020",
  1725. "partId": 445500,
  1726. "partName": "正压气缸",
  1727. "partRepId": 68719,
  1728. "pastureId": 304,
  1729. "pastureName": "蚌埠",
  1730. "planAmount": "2.00",
  1731. "price": "420",
  1732. "prid": 68719,
  1733. "providerId": 1963,
  1734. "providerName": "赛娜牧业",
  1735. "remark": "",
  1736. "reportery": "40.00",
  1737. "specification": "CP96SB40-250",
  1738. "unit": "套",
  1739. "amount": "1"
  1740. }
  1741. ]
  1742. },
  1743. "children": [
  1744. {
  1745. "name": "updatePartapplyuseAmount_m",
  1746. "type": "e",
  1747. "parammaps": {
  1748. "amount": "@insertSpotList3.amount",
  1749. "paid": "@insertSpotList3.contractId",
  1750. "RUCode": "BX19220929004"
  1751. }
  1752. }
  1753. ]
  1754. },
  1755. {
  1756. "name": "insertBigpartapply_m",
  1757. "type": "e",
  1758. "parammaps": {
  1759. "pastureId": 304,
  1760. "applyCode": "LY19221008015",
  1761. "applyType": 1,
  1762. "departmentId": "438",
  1763. "empId": 3097,
  1764. "applyDate": "2022-10-08",
  1765. "RUCode": "BX19220929004"
  1766. }
  1767. },
  1768. {
  1769. "name": "insertSpotList2",
  1770. "resultmaps": {
  1771. "list": []
  1772. },
  1773. "children": [
  1774. {
  1775. "name": "insertpartapply_m",
  1776. "type": "e",
  1777. "parammaps": {
  1778. "bigId": "BX19220929004",
  1779. "prid": "@insertSpotList2.prid",
  1780. "pastureId": "@insertSpotList2.pastureId",
  1781. "partId": "@insertSpotList2.partId",
  1782. "partCode": "@insertSpotList2.partCode",
  1783. "partName": "@insertSpotList2.partName",
  1784. "specification": "@insertSpotList2.specification",
  1785. "brandId": "@insertSpotList2.brandId",
  1786. "price": "@insertSpotList2.price",
  1787. "amount": "@insertSpotList2.amount",
  1788. "eqName": "柴油叉车",
  1789. "eqCode": "19.CYCC018",
  1790. "providerId": "@insertSpotList2.providerId",
  1791. "note": "@insertSpotList2.note",
  1792. "reportery": "@insertSpotList2.reportery",
  1793. "contractId": "@insertSpotList2.contractId"
  1794. }
  1795. }
  1796. ]
  1797. },
  1798. {
  1799. "name": "insertBigpartapply",
  1800. "type": "e",
  1801. "parammaps": {
  1802. "pastureId": 304,
  1803. "applyCode": "LY19221008015",
  1804. "applyType": 1,
  1805. "departmentId": "438",
  1806. "empId": 3097,
  1807. "applyDate": "2022-10-08",
  1808. "RUCode": "BX19220929004",
  1809. "SHStatus": 9
  1810. }
  1811. },
  1812. {
  1813. "name": "insertSpotList",
  1814. "resultmaps": {
  1815. "list": [
  1816. {
  1817. "amount": "1",
  1818. "bigId": 419328,
  1819. "brand": "无",
  1820. "brandId": 1983,
  1821. "contractId": 217665,
  1822. "enable": 1,
  1823. "id": 445500,
  1824. "inventoryType": 1,
  1825. "isZeroStock": 0,
  1826. "partCode": "14.06.09.01.000020",
  1827. "partId": 445500,
  1828. "partName": "正压气缸",
  1829. "partRepId": 68719,
  1830. "pastureId": 304,
  1831. "pastureName": "蚌埠",
  1832. "planAmount": "2.00",
  1833. "price": "420",
  1834. "providerId": 1963,
  1835. "providerName": "赛娜牧业",
  1836. "remark": "",
  1837. "reportery": "40.00",
  1838. "specification": "CP96SB40-250",
  1839. "unit": "套",
  1840. "prid": 68719,
  1841. "mr": 0,
  1842. "locationId": 10573
  1843. }
  1844. ]
  1845. },
  1846. "children": [
  1847. {
  1848. "name": "insertpartapply",
  1849. "type": "e",
  1850. "parammaps": {
  1851. "bigId": "@insertBigpartapply.LastInsertId",
  1852. "pastureId": "@insertSpotList.pastureId",
  1853. "partId": "@insertSpotList.partId",
  1854. "partCode": "@insertSpotList.partCode",
  1855. "partName": "@insertSpotList.partName",
  1856. "specification": "@insertSpotList.specification",
  1857. "brandId": "@insertSpotList.brandId",
  1858. "price": "@insertSpotList.price",
  1859. "amount": "@insertSpotList.amount",
  1860. "eqName": "柴油叉车",
  1861. "eqCode": "19.CYCC018",
  1862. "providerId": "@insertSpotList.providerId",
  1863. "note": "@insertSpotList.note",
  1864. "reportery": "@insertSpotList.reportery",
  1865. "contractId": "@insertSpotList.contractId",
  1866. "locationId": "@insertSpotList.locationId"
  1867. }
  1868. }
  1869. ]
  1870. }
  1871. ]
  1872. }
  1873. -- lingyong
  1874. {
  1875. "common": {
  1876. "returnmap": "0"
  1877. },
  1878. "data": [
  1879. {
  1880. "name": "insertBigpartapply",
  1881. "type": "e",
  1882. "parammaps": {
  1883. "pastureId": 304,
  1884. "applyCode": "LY19221008017",
  1885. "applyType": 1,
  1886. "departmentId": 313,
  1887. "empId": 3097,
  1888. "applyDate": "2022-10-08",
  1889. "SHStatus": 2
  1890. }
  1891. },
  1892. {
  1893. "name": "insertSpotList",
  1894. "resultmaps": {
  1895. "list": [
  1896. {
  1897. "bigId": 419358,
  1898. "brand": "奥耐尔",
  1899. "brandId": 2392,
  1900. "contractId": 217896,
  1901. "enable": 1,
  1902. "id": 449127,
  1903. "inventoryType": 1,
  1904. "isZeroStock": 0,
  1905. "locationId": 10574,
  1906. "partCode": "14.03.04.02.000094",
  1907. "partId": 449127,
  1908. "partName": "电磁阀",
  1909. "partRepId": 68746,
  1910. "pastureId": 304,
  1911. "pastureName": "蚌埠",
  1912. "planAmount": "330.00",
  1913. "price": "1139.5",
  1914. "providerId": 1986,
  1915. "providerName": "奥耐尔",
  1916. "remark": "",
  1917. "reportery": "1.00",
  1918. "specification": "805007",
  1919. "unit": "个",
  1920. "srcpath": "",
  1921. "picpath": "",
  1922. "eqName": "抛料车",
  1923. "eqCode": "19.PLC017",
  1924. "amount": "1",
  1925. "sumPrice": "1139.50"
  1926. }
  1927. ]
  1928. },
  1929. "children": [
  1930. {
  1931. "name": "insertpartapply",
  1932. "type": "e",
  1933. "parammaps": {
  1934. "bigId": "@insertBigpartapply.LastInsertId",
  1935. "pastureId": "@insertSpotList.pastureId",
  1936. "partId": "@insertSpotList.partId",
  1937. "partCode": "@insertSpotList.partCode",
  1938. "partName": "@insertSpotList.partName",
  1939. "specification": "@insertSpotList.specification",
  1940. "brandId": "@insertSpotList.brandId",
  1941. "price": "@insertSpotList.price",
  1942. "amount": "@insertSpotList.amount",
  1943. "eqName": "@insertSpotList.eqName",
  1944. "eqCode": "@insertSpotList.eqCode",
  1945. "providerId": "@insertSpotList.providerId",
  1946. "note": "@insertSpotList.note",
  1947. "reportery": "@insertSpotList.reportery",
  1948. "contractId": "@insertSpotList.contractId",
  1949. "locationId": "@insertSpotList.locationId"
  1950. }
  1951. }
  1952. ]
  1953. }
  1954. ]
  1955. }