index.js 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364
  1. import React,{Component} from 'react';
  2. import {message, Modal, Tabs} from "antd";
  3. import { cuiJieDian } from '@/dataDic.js'
  4. import ProjectOverview from './projectOverview'
  5. import {splitUrl} from '@/tools'
  6. import CheckProject from "../../../../components/checkProject";
  7. import $ from "jquery";
  8. const { TabPane } = Tabs
  9. class DetailsModal extends Component{
  10. constructor(props) {
  11. super(props);
  12. this.state={
  13. loading: false,
  14. activeKey:'2',
  15. paySubject: [],
  16. orderDtails: {},
  17. containOfficialFees:0,//官费缴费情况
  18. }
  19. this.visitCancel = this.visitCancel.bind(this);
  20. this.getCsortData = this.getCsortData.bind(this);
  21. }
  22. async componentDidMount() {
  23. if(this.props.tid){
  24. this.waiDetail();
  25. this.thirdTable(this.props.tid);
  26. await this.xiangqing(this.props.tid);
  27. await this.getCsortData(this.state.sort)
  28. await this.payNodeTable(this.props.tid);
  29. }
  30. }
  31. // 获取csort下的数据
  32. getCsortData(cSort) {
  33. return cuiJieDian.map((item) => {
  34. if (item.value == cSort) {
  35. this.setState({
  36. paySubject: item.children,
  37. })
  38. }
  39. })
  40. }
  41. visitOk(){
  42. this.setState({
  43. oldInfor: {}
  44. });
  45. }
  46. visitCancel(){
  47. this.setState({
  48. oldInfor: {}
  49. });
  50. this.props.visitCancel();
  51. }
  52. waiDetail() {
  53. let url = window.location.href.substring(7)
  54. this.setState({
  55. loading: true,
  56. })
  57. $.ajax({
  58. method: 'get',
  59. dataType: 'json',
  60. crossDomain: false,
  61. url:
  62. globalConfig.context + '/api/admin/outsourceOrg/orderOutsourceDtails',
  63. data: {
  64. tid: this.props.tid,
  65. orderNo: this.props.orderNo,
  66. },
  67. }).done(
  68. function (data) {
  69. this.setState({
  70. loading: false,
  71. })
  72. if (!data.error.length && data.data) {
  73. if(data.data.unitNumber){
  74. this.setState({
  75. oldInfor: {
  76. companyName:data.data.companyName,
  77. unitPrice:data.data.unitPrice,
  78. unitNumber:data.data.unitNumber,
  79. amount:data.data.amount,
  80. outsourceRemarks:data.data.outsourceRemarks,
  81. refundStatus: data.data.refundStatus,
  82. pictureUrl: data.data.pictureUrl
  83. ? splitUrl(
  84. data.data.pictureUrl,
  85. ',',
  86. globalConfig.avatarHost + '/upload',
  87. url
  88. )
  89. : [], //图片地址
  90. }
  91. })
  92. }else{
  93. this.setState({
  94. oldInfor: {}
  95. })
  96. }
  97. this.setState({
  98. containOfficialFees: data.data.actualOfficial,//官费类型 0实际已缴费 1实际未缴费
  99. orderDtails: data.data,
  100. startType: data.data.startType, //类型
  101. mid: data.data.id,
  102. outsourceRemarks: data.data.outsourceRemarks,
  103. refundStatus: data.data.refundStatus,
  104. pictureUrl: data.data.pictureUrl
  105. ? splitUrl(
  106. data.data.pictureUrl,
  107. ',',
  108. globalConfig.avatarHost + '/upload',
  109. url
  110. )
  111. : [], //图片地址
  112. })
  113. } else if (data.error && data.error.length) {
  114. message.warning(data.error[0].message)
  115. } else if (!data.data) {
  116. this.setState({
  117. refundStatus: undefined,
  118. })
  119. }
  120. }.bind(this)
  121. )
  122. }
  123. //查看第三方信息表格
  124. thirdTable(id) {
  125. this.setState({
  126. loadData: true,
  127. })
  128. $.ajax({
  129. method: 'get',
  130. dataType: 'json',
  131. crossDomain: false,
  132. url: globalConfig.context + '/api/admin/company/selectCompany',
  133. data: {
  134. tid: id,
  135. },
  136. success: function (data) {
  137. if (data.error && data.error.length) {
  138. message.warning(data.error[0].message)
  139. } else {
  140. let companyNameArr = []
  141. let theArr = []
  142. let thisData = []
  143. let arr = data.data || []
  144. let allTotalAmount = 0
  145. for (let i = 0; i < arr.length; i++) {
  146. thisData = arr[i]
  147. allTotalAmount =
  148. (allTotalAmount * 10000 + thisData.totalAmount * 10000) / 10000
  149. companyNameArr.push(thisData.companyName);
  150. thisData.key = i;
  151. theArr.push(thisData)
  152. }
  153. for(let d=0;d<theArr.length;d++){
  154. theArr[d].companyName = theArr[d].companyName+ '-' + theArr[d].id;
  155. // companyNameArr[d] = {
  156. // companyName: theArr[d].companyName,
  157. // id: theArr[d].id,
  158. // }
  159. }
  160. if (!allTotalAmount) {
  161. allTotalAmount = 0
  162. }
  163. this.setState({
  164. thirdInfoList: theArr,
  165. allTotalAmount: allTotalAmount,
  166. })
  167. }
  168. }.bind(this),
  169. }).always(
  170. function () {
  171. this.setState({
  172. loading: false,
  173. })
  174. }.bind(this)
  175. )
  176. }
  177. payNodeTable(id) {
  178. this.setState({
  179. loadData: true,
  180. })
  181. return $.ajax({
  182. method: 'get',
  183. dataType: 'json',
  184. crossDomain: false,
  185. url: globalConfig.context + '/api/admin/company/selectPaymentNode',
  186. data: {
  187. tid: id,
  188. },
  189. success: function (data) {
  190. if (data.error && data.error.length) {
  191. message.warning(data.error[0].message)
  192. } else {
  193. let payNodeArr = []
  194. let thisData = []
  195. let arr = data.data || []
  196. //对#5283自定义的补充展示
  197. this.state.paySubject.push({ key: '自定义', value: '0' })
  198. for (let i = 0; i < arr.length; i++) {
  199. thisData = arr[i]
  200. //遍历paySubject,获取当前dunType对应的key
  201. this.state.paySubject.map((item) => {
  202. if (item.value == thisData.dunType) {
  203. thisData.dunType = item.key
  204. }
  205. })
  206. payNodeArr.push({
  207. key: i,
  208. id: thisData.id, //付款节点Id
  209. tid: thisData.tid,
  210. companyName: thisData.companyName, //供应商名称
  211. projectType: thisData.projectType, //项目分类
  212. dunType: thisData.dunType, //催款分类
  213. unitPrice: thisData.unitPrice, //单价
  214. quantity: thisData.quantity, //数量
  215. totalAmount: thisData.totalAmount, //总价
  216. partyAmount: thisData.partyAmount, //付款
  217. partyTimes: thisData.partyTimes, //付款时间
  218. cid: thisData.cid, //机构id
  219. })
  220. }
  221. for(let d=0;d<payNodeArr.length;d++){
  222. payNodeArr[d].companyName = payNodeArr[d].companyName+ '-' + payNodeArr[d].cid;
  223. }
  224. this.setState({
  225. payNodeList: payNodeArr,
  226. })
  227. }
  228. }.bind(this),
  229. }).always(
  230. function () {
  231. this.setState({
  232. loading: false,
  233. })
  234. }.bind(this)
  235. )
  236. }
  237. //订单详情
  238. xiangqing(id) {
  239. return $.ajax({
  240. method: 'get',
  241. dataType: 'json',
  242. crossDomain: false,
  243. url: globalConfig.context + '/api/admin/orderProject/orderTaskDetail',
  244. data: {
  245. id: id,
  246. },
  247. success: function (data) {
  248. let thisdata = data.data
  249. if (data.error.length || data.data.list == '') {
  250. if (data.error && data.error.length) {
  251. message.warning(data.error[0].message)
  252. }
  253. } else {
  254. localStorage.setItem('cSort', thisdata.sort);
  255. this.setState({
  256. orderTaskOfficialCost: thisdata.officialCost, //官费 0无 1有
  257. sort: thisdata.sort,
  258. })
  259. }
  260. }.bind(this),
  261. }).always(
  262. function () {
  263. this.setState({
  264. loading: false,
  265. })
  266. }.bind(this)
  267. )
  268. }
  269. render() {
  270. return(
  271. <Modal
  272. maskClosable={false}
  273. className="customeDetails"
  274. footer=""
  275. title=""
  276. width="900px"
  277. visible={this.props.visible}
  278. onOk={this.visitOk}
  279. onCancel={this.visitCancel}
  280. >
  281. <Tabs
  282. defaultActiveKey='2'
  283. activeKey={this.state.activeKey}
  284. onChange={(e) => {
  285. this.setState({
  286. activeKey: e
  287. })
  288. if(e === '1'){
  289. this.waiDetail();
  290. this.thirdTable(this.props.tid);
  291. this.payNodeTable(this.props.tid);
  292. this.xiangqing(this.props.tid);
  293. }
  294. }}
  295. tabBarExtraContent={
  296. <div style={{fontWeight:'bold',paddingRight:'15px'}}>
  297. <span>
  298. 项目名称:
  299. <span style={{color:'#F00',paddingRight:'5px'}}>{this.props.taskName}</span>
  300. </span>
  301. <span style={{marginLeft:'15px'}}>
  302. 项目编号:
  303. <span style={{color:'#F00',paddingRight:'5px'}}>
  304. {this.props.taskID}
  305. </span>
  306. </span>
  307. </div>
  308. }
  309. >
  310. {/*<TabPane tab="外包/供应商信息" key="1">*/}
  311. {/* {this.state.activeKey === '1' ? <CheckProject*/}
  312. {/* {...this.props}*/}
  313. {/* tid={this.props.tid}*/}
  314. {/* oldInfor={this.state.oldInfor}*/}
  315. {/* orderTaskOfficialCost={this.state.orderTaskOfficialCost} //是否含官费 0无1有*/}
  316. {/* containOfficialFees={this.state.containOfficialFees} //0:实际已缴费 1:实际未缴费*/}
  317. {/* status={this.state.refundStatus}*/}
  318. {/* mid={this.state.mid}*/}
  319. {/* patentNameType={this.state.orderDtails.patentNameType}*/}
  320. {/* patentName={this.state.orderDtails.patentName}*/}
  321. {/* patentType={this.state.orderDtails.patentType}*/}
  322. {/* projectType={this.props.projectType}*/}
  323. {/* projectStatus={this.props.projectStatus}*/}
  324. {/* thirdInfoList={this.state.thirdInfoList}*/}
  325. {/* dataSource={this.state.payNodeList}*/}
  326. {/* outsourceRemarks={this.state.outsourceRemarks}*/}
  327. {/* fileList={this.state.pictureUrl}*/}
  328. {/* startType={this.state.startType}*/}
  329. {/* onRefresh={()=>{*/}
  330. {/* this.waiDetail();*/}
  331. {/* this.thirdTable(this.props.tid);*/}
  332. {/* this.payNodeTable(this.props.tid);*/}
  333. {/* this.xiangqing(this.props.tid);*/}
  334. {/* this.props.refreshList && this.props.refreshList();*/}
  335. {/* }}*/}
  336. {/* /> : <div/>}*/}
  337. {/*</TabPane>*/}
  338. <TabPane tab="项目概况" key="2">
  339. <ProjectOverview projectStatus={this.props.projectStatus} tid={this.props.tid} taskName={this.props.taskName}/>
  340. </TabPane>
  341. </Tabs>
  342. </Modal>
  343. )
  344. }
  345. }
  346. export default DetailsModal;