index.jsx 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784
  1. import React,{ Component } from 'react';
  2. import {
  3. AutoComplete,
  4. Button,
  5. DatePicker,
  6. Input,
  7. message,
  8. Modal,
  9. Select,
  10. Spin,
  11. Table,
  12. Tabs,
  13. Tag,
  14. Tooltip
  15. } from "antd";
  16. import {ShowModal,splitUrl,getClockState} from "@/tools";
  17. import {clockState} from "@/dataDic";
  18. import {ChooseList} from "../../order/orderNew/chooseList";
  19. import $ from "jquery/src/ajax";
  20. import './index.less';
  21. import moment from "moment";
  22. import ImgList from "../../../common/imgList";
  23. const {TabPane} = Tabs;
  24. const { RangePicker } = DatePicker;
  25. class PublicSummary extends Component{
  26. constructor(props) {
  27. super(props);
  28. this.state={
  29. pageNo:1,
  30. loading:false,
  31. changeList:[],
  32. annexUrlArr:[],
  33. photoUrlArr:[],
  34. imgListVisible:false,
  35. columns: [
  36. {
  37. title: "编号",
  38. dataIndex: "key",
  39. key: "key",
  40. width: 45
  41. },
  42. {
  43. title: "客户名称",
  44. dataIndex: "nickname",
  45. key: "nickname",
  46. width: 100,
  47. render: (text) => {
  48. return (
  49. <Tooltip title={text}>
  50. <div style={{
  51. width:100,
  52. overflow:'hidden',
  53. textOverflow: "ellipsis",
  54. whiteSpace:'nowrap',
  55. }}>{text}</div>
  56. </Tooltip>
  57. )
  58. },
  59. },
  60. {
  61. title: "跟单人",
  62. dataIndex: "sname",
  63. key: "sname",
  64. width: 100,
  65. render: (text) => {
  66. return (
  67. <Tooltip title={text}>
  68. <div style={{
  69. width:100,
  70. overflow:'hidden',
  71. textOverflow: "ellipsis",
  72. whiteSpace:'nowrap',
  73. }}>{text}</div>
  74. </Tooltip>
  75. )
  76. },
  77. },
  78. {
  79. title: "公出申请人",
  80. dataIndex: "aname",
  81. key: "aname",
  82. width: 100,
  83. render: (text) => {
  84. return (
  85. <Tooltip title={text}>
  86. <div style={{
  87. width:100,
  88. overflow:'hidden',
  89. textOverflow: "ellipsis",
  90. whiteSpace:'nowrap',
  91. }}>{text}</div>
  92. </Tooltip>
  93. )
  94. },
  95. },
  96. {
  97. title: "申请时间",
  98. dataIndex: "createTimes",
  99. key: "createTimes",
  100. width: 130
  101. },
  102. {
  103. title: "公出时间",
  104. dataIndex: "releaseStarts",
  105. key: "releaseStarts",
  106. width: 130,
  107. render: (text, record) => (
  108. <div>
  109. <div>{text}</div>
  110. <div style={{paddingLeft:'44px'}}>至</div>
  111. <div>{record.releaseEnds}</div>
  112. </div>
  113. )
  114. },
  115. {
  116. title: "公出地点",
  117. dataIndex: "userName",
  118. key: "userName",
  119. width: 120,
  120. render: (text) => {
  121. return (
  122. <Tooltip title={text}>
  123. <div style={{
  124. width:120,
  125. overflow:'hidden',
  126. textOverflow: "ellipsis",
  127. whiteSpace:'nowrap',
  128. }}>{text}</div>
  129. </Tooltip>
  130. )
  131. },
  132. },
  133. {
  134. title: "公出时长(时)",
  135. dataIndex: "duration",
  136. key: "duration",
  137. width: 50
  138. },
  139. {
  140. title: "打卡时间",
  141. dataIndex: "clockInTimes",
  142. key: "clockInTimes",
  143. width: 130
  144. },
  145. {
  146. title: "审核状态",
  147. dataIndex: "status",
  148. key: "status",
  149. width: 40,
  150. render: (text) => (
  151. <Tag color={getClockState(text).color}>{getClockState(text).title}</Tag>
  152. )
  153. },
  154. {
  155. title: "打卡状态",
  156. dataIndex: "clockIn",
  157. key: "clockIn",
  158. width: 60,
  159. render: (text) => (
  160. text === 1 ? '已打卡' :
  161. text === 0 ? '未打卡' : ''
  162. )
  163. },
  164. {
  165. title: "公出原因/计划",
  166. dataIndex: "remarks",
  167. key: "remarks",
  168. width: 155,
  169. render: (text) => {
  170. return (<div style={{wordBreak:"break-all"}}>{text}</div>)
  171. },
  172. },
  173. {
  174. title: "补充",
  175. dataIndex: "supplement",
  176. key: "supplement",
  177. width: 155,
  178. render: (text) => {
  179. return (<div style={{wordBreak:"break-all"}}>{text}</div>)
  180. },
  181. },
  182. {
  183. title: "审核/指导",
  184. dataIndex: "auditInfo",
  185. key: "auditInfo",
  186. width: 155,
  187. render: (text) => {
  188. return (<div style={{wordBreak:"break-all"}}>{text}</div>)
  189. },
  190. },
  191. {
  192. title: "操作",
  193. dataIndex: "annexUrl",
  194. key: "annexUrl",
  195. render: (text,record) => (
  196. <div>
  197. <Button
  198. type={"primary"}
  199. onClick={(e) => {
  200. e.stopPropagation();
  201. let arr1 = text || [];
  202. let arr2 = record.photoUrl || [];
  203. this.setState({
  204. annexUrlArr:splitUrl(arr1, ",", globalConfig.avatarHost + "/upload"),
  205. photoUrlArr:splitUrl(arr2, ",", globalConfig.avatarHost + "/upload"),
  206. },()=>{
  207. this.setState({
  208. imgListVisible:true
  209. })
  210. })
  211. }}
  212. >
  213. 查看附件
  214. </Button>
  215. </div>
  216. )
  217. },
  218. ],
  219. pagination: {
  220. defaultCurrent: 1,
  221. defaultPageSize: 10,
  222. showQuickJumper: true,
  223. pageSize: 10,
  224. onChange: function(page) {
  225. this.loadData(page);
  226. }.bind(this),
  227. showTotal: function(total) {
  228. return "共" + total + "条数据";
  229. }
  230. },
  231. dataSource: [],
  232. releaseDate:[],
  233. status:undefined,
  234. clockIn:undefined,
  235. depId:undefined,
  236. theTypes:undefined,
  237. theTypes1:undefined,
  238. theCustomerTypes:undefined,
  239. }
  240. this.loadData = this.loadData.bind(this);
  241. this.resetAll = this.resetAll.bind(this);
  242. this.changeList = this.changeList.bind(this);
  243. this.selectSuperId = this.selectSuperId.bind(this);
  244. this.supervisor = this.supervisor.bind(this);
  245. this.httpChange = this.httpChange.bind(this);
  246. this.blurChange = this.blurChange.bind(this);
  247. this.selectAuto = this.selectAuto.bind(this);
  248. this.httpChange1 = this.httpChange1.bind(this);
  249. this.blurChange1 = this.blurChange1.bind(this);
  250. this.selectAuto1 = this.selectAuto1.bind(this);
  251. this.getCustomer = this.getCustomer.bind(this);
  252. this.selectCustomerAuto = this.selectCustomerAuto.bind(this);
  253. this.httpCustomerChange = this.httpCustomerChange.bind(this);
  254. this.blurCustomerChange = this.blurCustomerChange.bind(this);
  255. this.exportExec = this.exportExec.bind(this);
  256. }
  257. //获取上级组织
  258. selectSuperId() {
  259. $.ajax({
  260. method: "get",
  261. dataType: "json",
  262. crossDomain: false,
  263. url: globalConfig.context + "/api/admin/organization/selectSuperId",
  264. data:{},
  265. success: function (data) {
  266. let theArr = [];
  267. if (data.error && data.error.length === 0) {
  268. for(let i=0;i<data.data.length;i++){
  269. let theData = data.data[i];
  270. theArr.push(
  271. <Select.Option value={theData.id} key={theData.id}>{theData.name}</Select.Option>
  272. );
  273. };
  274. this.setState({
  275. contactsOption: theArr,
  276. });
  277. }else{
  278. message.warning(data.error[0].message);
  279. }
  280. }.bind(this),
  281. }).always(function () {
  282. this.setState({
  283. loading: false
  284. });
  285. }.bind(this));
  286. }
  287. changeList(arr) {
  288. const newArr = [];
  289. this.state.columns.forEach(item => {
  290. arr.forEach(val => {
  291. if (val === item.title) {
  292. newArr.push(item);
  293. }
  294. });
  295. });
  296. this.setState({
  297. changeList: newArr
  298. });
  299. }
  300. loadData(pageNo) {
  301. this.setState({
  302. loading:true
  303. })
  304. $.ajax({
  305. method: "get",
  306. dataType: "json",
  307. crossDomain: false,
  308. url: globalConfig.context + "/api/admin/release/publicReleaseDtails",
  309. data: {
  310. pageNo: pageNo || 1,
  311. pageSize: this.state.pagination.pageSize,
  312. releaseStart:this.state.releaseDate[0] || undefined,
  313. releaseEnd:this.state.releaseDate[1] || undefined,
  314. aid:this.state.theTypes || undefined,
  315. sid:this.state.theTypes1 || undefined,
  316. uid:this.state.theCustomerTypes,
  317. status:this.state.status,
  318. clockIn:this.state.clockIn,
  319. depId:this.state.depId || undefined
  320. },
  321. success: function(data) {
  322. ShowModal(this);
  323. let theArr = [];
  324. this.setState({
  325. loading:false
  326. })
  327. if (data.error && data.error.length === 0) {
  328. for (let i = 0; i < data.data.list.length; i++) {
  329. let thisdata = data.data.list[i];
  330. thisdata.key=(data.data.pageNo - 1) * data.data.pageSize + i + 1;
  331. theArr.push(thisdata);
  332. }
  333. this.state.pagination.current = data.data.pageNo;
  334. this.state.pagination.total = data.data.totalCount;
  335. if (data.data && data.data.list && !data.data.list.length) {
  336. this.state.pagination.current = 0;
  337. this.state.pagination.total = 0;
  338. }
  339. this.setState({
  340. dataSource: theArr,
  341. pagination: this.state.pagination,
  342. pageNo:data.data.pageNo
  343. });
  344. }else{
  345. message.warning(data.error[0].message);
  346. }
  347. }.bind(this)
  348. }).always(
  349. function() {
  350. this.setState({
  351. loading: false
  352. });
  353. }.bind(this)
  354. );
  355. }
  356. resetAll() {
  357. this.setState({
  358. releaseDate:[],
  359. theCustomerTypes:undefined,
  360. status:undefined,
  361. clockIn:undefined,
  362. depId:undefined,
  363. auto:'',
  364. auto1:'',
  365. customer:'',
  366. theTypes:undefined,
  367. theTypes1:undefined,
  368. },()=>{
  369. this.loadData();
  370. })
  371. }
  372. supervisor(e) {
  373. $.ajax({
  374. method: "get",
  375. dataType: "json",
  376. crossDomain: false,
  377. url: globalConfig.context + "/api/admin/customer/listAdminByName",
  378. data: {
  379. adminName: e,
  380. },
  381. success: function (data) {
  382. if (data.error && data.error.length === 0) {
  383. this.setState({
  384. customerArr: data.data,
  385. });
  386. }else{
  387. message.warning(data.error[0].message);
  388. }
  389. }.bind(this),
  390. }).always(
  391. function () {
  392. }.bind(this)
  393. );
  394. }
  395. supervisor1(e) {
  396. $.ajax({
  397. method: "get",
  398. dataType: "json",
  399. crossDomain: false,
  400. url: globalConfig.context + "/api/admin/customer/listAdminByName",
  401. data: {
  402. adminName: e,
  403. },
  404. success: function (data) {
  405. if (data.error && data.error.length === 0) {
  406. this.setState({
  407. customerArr1: data.data,
  408. });
  409. }else{
  410. message.warning(data.error[0].message);
  411. }
  412. }.bind(this),
  413. }).always(
  414. function () {
  415. }.bind(this)
  416. );
  417. }
  418. httpChange(e) {
  419. if (e.length >= 1) {
  420. this.supervisor(e);
  421. }
  422. this.setState({
  423. auto: e,
  424. });
  425. }
  426. httpChange1(e) {
  427. if (e.length >= 1) {
  428. this.supervisor1(e);
  429. }
  430. this.setState({
  431. auto1: e,
  432. });
  433. }
  434. selectAuto(value, options) {
  435. this.setState({
  436. auto: value,
  437. });
  438. }
  439. selectAuto1(value, options) {
  440. this.setState({
  441. auto1: value,
  442. });
  443. }
  444. httpCustomerChange(e) {
  445. if (e.length >= 1) {
  446. this.getCustomer(e);
  447. }
  448. this.setState({
  449. customer: e,
  450. });
  451. }
  452. selectCustomerAuto(value, options) {
  453. this.setState({
  454. customer: value,
  455. });
  456. }
  457. getCustomer(e) {
  458. $.ajax({
  459. method: "get",
  460. dataType: "json",
  461. crossDomain: false,
  462. url: globalConfig.context + "/api/admin/customer/getUserByName",
  463. data: {
  464. name: e,
  465. },
  466. success: function (data) {
  467. if (data.error && data.error.length === 0) {
  468. this.setState({
  469. customerList: data.data,
  470. });
  471. }else{
  472. message.warning(data.error[0].message);
  473. }
  474. }.bind(this),
  475. }).always(
  476. function () {
  477. }.bind(this)
  478. );
  479. }
  480. blurCustomerChange(e) {
  481. let theType = "";
  482. let contactLists = this.state.customerList || [];
  483. if (e) {
  484. contactLists.map(function (item) {
  485. if (item.name == e.toString()) {
  486. theType = item.id;
  487. }
  488. });
  489. }
  490. this.setState({
  491. theCustomerTypes: theType,
  492. });
  493. }
  494. blurChange(e) {
  495. let theType = "";
  496. let contactLists = this.state.customerArr || [];
  497. if (e) {
  498. contactLists.map(function (item) {
  499. if (item.name == e.toString()) {
  500. theType = item.id;
  501. }
  502. });
  503. }
  504. this.setState({
  505. theTypes: theType,
  506. });
  507. }
  508. blurChange1(e) {
  509. let theType = "";
  510. let contactLists = this.state.customerArr1 || [];
  511. if (e) {
  512. contactLists.map(function (item) {
  513. if (item.name == e.toString()) {
  514. theType = item.id;
  515. }
  516. });
  517. }
  518. this.setState({
  519. theTypes1: theType,
  520. });
  521. }
  522. componentWillMount() {
  523. this.loadData();
  524. this.selectSuperId();
  525. }
  526. exportExec(){
  527. let data = {
  528. releaseStart:this.state.releaseDate[0],
  529. releaseEnd:this.state.releaseDate[1],
  530. aid:this.state.theTypes,
  531. sid:this.state.theTypes1,
  532. uid:this.state.theCustomerTypes,
  533. status:this.state.status,
  534. clockIn:this.state.clockIn,
  535. depId:this.state.depId,
  536. };
  537. for(let i of Object.keys(data)){
  538. if(i === 'status' || i === 'clockIn'){
  539. if(isNaN(parseInt(data[i]))){
  540. delete data[i]
  541. }
  542. }else if(!data[i]){
  543. delete data[i]
  544. }
  545. }
  546. window.location.href =
  547. globalConfig.context +
  548. "/api/admin/release/publicReleaseDtails/export?" +
  549. $.param(data);
  550. }
  551. render() {
  552. const dataSources = this.state.customerArr || [];
  553. const dataSources1 = this.state.customerArr1 || [];
  554. const options = dataSources.map((group) => (
  555. <Select.Option key={group.id} value={group.name}>
  556. {group.name}
  557. </Select.Option>
  558. ));
  559. const options1 = dataSources1.map((group) => (
  560. <Select.Option key={group.id} value={group.name}>
  561. {group.name}
  562. </Select.Option>
  563. ));
  564. const customerList = this.state.customerList || [];
  565. const customerOptions = customerList.map((group) => (
  566. <Select.Option key={group.id} value={group.name}>
  567. {group.name}
  568. </Select.Option>
  569. ));
  570. return (
  571. <div>
  572. <div className="user-content">
  573. <div className="content-title">
  574. <span>
  575. 公出详细列表(全部)
  576. </span>
  577. </div>
  578. <Tabs defaultActiveKey="1" className="test">
  579. <TabPane tab="搜索" key="1">
  580. <div className="user-search" style={{
  581. marginTop:'10px',
  582. marginLeft:'10px',
  583. marginRight:'10px'
  584. }}>
  585. <span style={{ marginRight: "10px" }}>
  586. <AutoComplete
  587. className="certain-category-search"
  588. dropdownClassName="certain-category-search-dropdown"
  589. dropdownMatchSelectWidth={false}
  590. dropdownStyle={{ width: 120 }}
  591. style={{ width: "120px" }}
  592. dataSource={customerOptions}
  593. placeholder='输入客户名称'
  594. value={this.state.customer}
  595. onChange={this.httpCustomerChange}
  596. filterOption={true}
  597. onBlur={this.blurCustomerChange}
  598. onSelect={this.selectCustomerAuto}
  599. >
  600. <Input />
  601. </AutoComplete>
  602. </span>
  603. <span style={{ marginRight: "10px" }}>
  604. <Select
  605. placeholder="请选择审核状态"
  606. style={{ width:200,marginLeft:10}}
  607. value={this.state.status}
  608. onChange={(e) => { this.setState({ status: e }) }}>
  609. {
  610. clockState.map((v,k) => (
  611. <Select.Option key={k} value={v.id} >{v.title}</Select.Option>
  612. ))
  613. }
  614. </Select>
  615. </span>
  616. <span style={{ marginRight: "10px" }}>
  617. <Select
  618. placeholder="请选择打卡状态"
  619. style={{ width:200,marginLeft:10}}
  620. value={this.state.clockIn}
  621. onChange={(e) => { this.setState({ clockIn: e }) }}>
  622. <Select.Option value={1} >已打卡</Select.Option>
  623. <Select.Option value={0} >未打卡</Select.Option>
  624. </Select>
  625. </span>
  626. <span style={{ marginRight: "10px" }}>
  627. <AutoComplete
  628. className="certain-category-search"
  629. dropdownClassName="certain-category-search-dropdown"
  630. dropdownMatchSelectWidth={false}
  631. dropdownStyle={{ width: 120 }}
  632. style={{ width: "120px" }}
  633. dataSource={options}
  634. placeholder='输入公出申请人'
  635. value={this.state.auto}
  636. onChange={this.httpChange}
  637. filterOption={true}
  638. onBlur={this.blurChange}
  639. onSelect={this.selectAuto}
  640. >
  641. <Input />
  642. </AutoComplete>
  643. </span>
  644. <span style={{ marginRight: "10px" }}>
  645. <AutoComplete
  646. className="certain-category-search"
  647. dropdownClassName="certain-category-search-dropdown"
  648. dropdownMatchSelectWidth={false}
  649. dropdownStyle={{ width: 120 }}
  650. style={{ width: "120px" }}
  651. dataSource={options1}
  652. placeholder='输入跟单人'
  653. value={this.state.auto1}
  654. onChange={this.httpChange1}
  655. filterOption={true}
  656. onBlur={this.blurChange1}
  657. onSelect={this.selectAuto1}
  658. >
  659. <Input />
  660. </AutoComplete>
  661. </span>
  662. <span style={{ marginRight: "10px" }}>
  663. <Select
  664. placeholder="请选择公出部门"
  665. style={{ width:200,marginLeft:10}}
  666. value={this.state.depId}
  667. onChange={(e) => { this.setState({ depId: e }) }}
  668. notFoundContent="未获取到上级组织列表">
  669. {this.state.contactsOption}
  670. </Select>
  671. </span>
  672. <span style={{ marginRight: "10px" }}>
  673. <span style={{marginRight:'5px',marginBottom:'10px'}}>公出时间 :</span>
  674. <RangePicker
  675. style={{marginRight:'10px',marginBottom:'10px'}}
  676. value={[
  677. this.state.releaseDate[0]
  678. ? moment(this.state.releaseDate[0])
  679. : null,
  680. this.state.releaseDate[1]
  681. ? moment(this.state.releaseDate[1])
  682. : null,
  683. ]}
  684. onChange={(data, dataString) => {
  685. this.setState({ releaseDate: dataString });
  686. }}
  687. />
  688. </span>
  689. <Button type="primary" onClick={()=>{
  690. this.loadData();
  691. }} style={{marginRight:'10px',marginBottom:'10px'}}>搜索</Button>
  692. <Button onClick={this.resetAll} style={{marginRight:'10px',marginBottom:'10px'}}>重置</Button>
  693. </div>
  694. </TabPane>
  695. <TabPane tab="更改表格显示数据" key="2">
  696. <div style={{ marginLeft: 10 }}>
  697. <Spin spinning={this.state.loading}>
  698. <ChooseList
  699. columns={this.state.columns}
  700. changeFn={this.changeList}
  701. changeList={this.state.changeList}
  702. top={55}
  703. margin={11}
  704. />
  705. </Spin>
  706. </div>
  707. </TabPane>
  708. <TabPane tab="导出" key="3">
  709. <div style={{ float: "left" }}>
  710. <Button onClick={this.exportExec} style={{ margin: 10 }}>导出excel</Button>
  711. </div>
  712. </TabPane>
  713. </Tabs>
  714. <div className="patent-table">
  715. <Spin spinning={this.state.loading}>
  716. <Table
  717. bordered
  718. size="middle"
  719. scroll={{ x: 800 }}
  720. columns={
  721. this.state.changeList.length > 0
  722. ? this.state.changeList
  723. : this.state.columns
  724. }
  725. dataSource={this.state.dataSource}
  726. pagination={this.state.pagination}
  727. />
  728. </Spin>
  729. </div>
  730. </div>
  731. {this.state.imgListVisible ? <Modal
  732. maskClosable={false}
  733. visible={this.state.imgListVisible}
  734. onOk={()=>{this.setState({
  735. imgListVisible:false
  736. })}}
  737. onCancel={()=>{this.setState({
  738. imgListVisible:false
  739. })}}
  740. width='500px'
  741. title='图片'
  742. footer=''>
  743. <div>
  744. <div>申请附件</div>
  745. <ImgList fileList={this.state.annexUrlArr} domId='publicStatistics'/>
  746. <div style={{paddingTop:'35px'}}>打卡照片</div>
  747. <ImgList fileList={this.state.photoUrlArr} domId='publicStatistics1'/>
  748. </div>
  749. </Modal> : null}
  750. </div>
  751. )
  752. }
  753. }
  754. export default PublicSummary;