index.jsx 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985
  1. import React, { Component } from "react";
  2. import Taro, { getCurrentInstance } from "@tarojs/taro";
  3. import { Button, Picker, Text, View } from "@tarojs/components";
  4. import dayjs from "dayjs";
  5. import ImagePicker from "../../components/common/imagePicker";
  6. import InquiryModal from "../../components/common/inquiryModal";
  7. import AccountModal from "../../components/common/accountModal";
  8. import Select from "../applyreimbursement/select";
  9. import {
  10. AtButton,
  11. AtInput,
  12. AtModal,
  13. AtTextarea,
  14. AtModalHeader,
  15. AtModalContent,
  16. AtRadio,
  17. AtModalAction,
  18. AtIcon,
  19. } from "taro-ui";
  20. import {
  21. getPridDetail,
  22. getAccountList,
  23. selectList,
  24. detailsDelete,
  25. subAccount,
  26. getDepartmentList,
  27. } from "../../utils/servers/servers";
  28. import {
  29. getNumHourse,
  30. getAccountName,
  31. getTypeName,
  32. getVehicleName,
  33. commonAdd,
  34. getNewOptions,
  35. removeNull,
  36. } from "../../utils/tools";
  37. import { resourceAddress } from "../../utils/config";
  38. import "taro-ui/dist/style/components/form.scss";
  39. import "taro-ui/dist/style/components/button.scss";
  40. import "taro-ui/dist/style/components/loading.scss";
  41. import "taro-ui/dist/style/components/icon.scss";
  42. import "taro-ui/dist/style/components/textarea.scss";
  43. import "taro-ui/dist/style/components/input.scss";
  44. import "./index.less";
  45. import NewModal from "./modal"
  46. class Drafts extends Component {
  47. $instance = getCurrentInstance();
  48. constructor(props) {
  49. super(props);
  50. this.state = {
  51. imgs: [],
  52. data: {},
  53. visible: "",
  54. list: [],
  55. total: 0,
  56. reality: 0,
  57. accountvisible: "",
  58. typeVisible: "",
  59. bankData: {},
  60. upaccount: false,
  61. accountsList: [],
  62. isShow: false,
  63. };
  64. this.onChange = this.onChange.bind(this);
  65. this.getNumHourse = this.getNumHourse.bind(this);
  66. }
  67. componentDidMount() {
  68. this.getDepartmentList()
  69. this.$instance.router.params && this.$instance.router.params.id &&
  70. (
  71. this.getDetail(),
  72. this.state.data.type != 2 && this.getMyList()
  73. )
  74. }
  75. componentDidShow() { // 对应onShow,只有在onShow中才会监听到当前页面的改变
  76. let pages = Taro.getCurrentPages();
  77. let currPage = pages[pages.length - 1]; // 获取当前页面
  78. // this.setState({
  79. // orderName: currPage.data.name,
  80. // contractNo: currPage.data.contractNo,
  81. // orderNo: currPage.data.orderNo,
  82. // debitId: currPage.data.debitId,
  83. // totalAmount: currPage.data.totalAmount || 0,
  84. // })
  85. const { data } = this.state
  86. const obj = {
  87. buyerName: currPage.data.name || data.buyerName,
  88. contractNo: currPage.data.contractNo || data.contractNo,
  89. orderNo: currPage.data.orderNo || data.orderNo,
  90. debitId: currPage.data.debitId || data.debitId,
  91. debitTotalAmount: currPage.data.totalAmount || data.debitTotalAmount || 0,
  92. }
  93. this.setState({
  94. data: { ...this.state.data, ...obj },
  95. })
  96. this.getAccountList();
  97. }
  98. // 部门数据
  99. getDepartmentList() {
  100. getDepartmentList({}).then(v => {
  101. let thedata = v.data;
  102. let theArr = [];
  103. if (!thedata) {
  104. if (v.error && v.error.length) {
  105. Taro.showToast({ title: v.error[0].message, icon: 'none' })
  106. }
  107. } else {
  108. thedata.map(function (item, index) {
  109. theArr.push({
  110. key: index,
  111. name: item.name,
  112. id: item.id
  113. });
  114. });
  115. }
  116. this.setState({
  117. departmentArr: theArr
  118. });
  119. }).catch(() => {
  120. Taro.showToast({
  121. title: '系统错误,请稍后再试',
  122. icon: 'none'
  123. })
  124. })
  125. }
  126. // 图片上传操作
  127. onChange(value, type) {
  128. let arr = this.state.imgs.concat([]);
  129. if (type === "add") {
  130. arr.push(value);
  131. } else if (type === "remove") {
  132. arr.splice(value, 1);
  133. }
  134. this.setState({
  135. imgs: arr,
  136. });
  137. }
  138. onInputChange(title, value) {
  139. }
  140. // 取消添加
  141. onAccountClose() {
  142. this.setState({
  143. accountvisible: "",
  144. })
  145. }
  146. // 添加收款账户
  147. onAccountOk() {
  148. this.setState({
  149. accountvisible: "",
  150. }, () => { this.getMyList() })
  151. }
  152. // 类型修改 取消
  153. onTypeClose() {
  154. this.setState({
  155. typeVisible: "",
  156. })
  157. }
  158. // 类型修改 确定
  159. onTypeOk(type, typeOther) {
  160. const oldType = this.state.data.type
  161. const oldTypeOther = this.state.data.typeOther
  162. if ((oldType == type) && (typeOther == oldTypeOther)) {
  163. this.setState({
  164. typeVisible: "",
  165. })
  166. } else {
  167. let data = {
  168. updateType: 1,
  169. id: this.$instance.router.params.id,
  170. type,
  171. typeOther,
  172. }
  173. subAccount(removeNull(data))
  174. .then((v) => {
  175. if (v.error.length === 0) {
  176. this.getAccountList()
  177. // 手动刷新
  178. const obj = { type, typeOther }
  179. this.setState({
  180. data: { ...this.state.data, ...obj },
  181. typeVisible: "",
  182. })
  183. Taro.showToast({
  184. title: "修改成功!",
  185. icon: "none",
  186. });
  187. } else {
  188. Taro.showToast({
  189. title: v.error[0].message,
  190. icon: "none",
  191. });
  192. }
  193. })
  194. .catch(() => {
  195. });
  196. }
  197. }
  198. // 费用弹窗
  199. onClose() {
  200. this.setState({
  201. visible: "",
  202. })
  203. this.getAccountList()
  204. }
  205. // 报销账户列表
  206. getMyList(sta) {
  207. let data1 = { status: 1 }
  208. let data2 = {
  209. pageNo: 1,
  210. pageSize: 99,
  211. }
  212. selectList(sta ? data2 : data1).then(v => {
  213. if (v.error.length === 0) {
  214. let list = v.data.list || []
  215. if (list?.length > 0) {
  216. if (sta) {
  217. this.setState({
  218. accountsList: list
  219. })
  220. } else {
  221. this.setState({
  222. bankData: list[0],
  223. })
  224. }
  225. }
  226. } else {
  227. Taro.showToast({ title: v.error[0].message, icon: 'none' })
  228. }
  229. }).catch(() => {
  230. Taro.showToast({
  231. title: '系统错误,请稍后再试',
  232. icon: 'none'
  233. })
  234. })
  235. }
  236. // 确认收款账户
  237. selectOn() {
  238. let list = this.state.accountsList
  239. for (var i = 0; i < list.length; i++) {
  240. if (list[i].id == this.state.aid) {
  241. this.setState({
  242. upaccount: false,
  243. bankData: list[i]
  244. })
  245. }
  246. }
  247. }
  248. // 报销单详情
  249. getDetail() {
  250. getPridDetail({
  251. id: this.$instance.router.params.id,
  252. }).then(v => {
  253. if (v.error.length === 0) {
  254. let list = [];
  255. for (let i of (v.data.attachmentUrl || '').split(',')) {
  256. if (i) {
  257. list.push({ 'url': resourceAddress + i })
  258. }
  259. }
  260. this.setState({
  261. data: v.data,
  262. rangeStartMinuteVal: v.data.releaseStartStr,
  263. rangeEndMinuteVal: v.data.releaseEndStr,
  264. totalDuration: v.data.duration,
  265. imgs: list,
  266. })
  267. this.getAccountList()
  268. } else {
  269. Taro.showToast({ title: v.error[0].message, icon: 'none' })
  270. }
  271. }).catch(() => {
  272. Taro.showToast({
  273. title: '系统错误,请稍后再试',
  274. icon: 'none'
  275. })
  276. })
  277. }
  278. // 报销详情金额列表
  279. getAccountList() {
  280. const { data } = this.state
  281. getAccountList({
  282. eaid: this.$instance.router.params.id,
  283. }).then(v => {
  284. if (v.error.length === 0) {
  285. let sum = 0
  286. for (var i = 0; i < v.data.length; i++) {
  287. // sum += v.data[i].amount
  288. sum = commonAdd(sum, v.data[i].amount)
  289. }
  290. let reality = (sum > data.debitTotalAmount) ? commonAdd(sum, -data.debitTotalAmount) : 0
  291. this.setState({
  292. list: v.data,
  293. total: sum,
  294. reality,
  295. })
  296. } else {
  297. Taro.showToast({ title: v.error[0].message, icon: 'none' })
  298. }
  299. }).catch(() => {
  300. Taro.showToast({
  301. title: '系统错误,请稍后再试',
  302. icon: 'none'
  303. })
  304. }).finally(() => {
  305. console.log("zzz")
  306. this.setState({
  307. isShow: true
  308. })
  309. })
  310. }
  311. // 删除报销详情
  312. detailsDelete(id) {
  313. detailsDelete({
  314. id,
  315. }).then(v => {
  316. if (v.error.length === 0) {
  317. Taro.showToast({ title: "操作成功", icon: 'none' })
  318. this.getAccountList()
  319. } else {
  320. Taro.showToast({ title: v.error[0].message, icon: 'none' })
  321. }
  322. }).catch(() => {
  323. Taro.showToast({
  324. title: '系统错误,请稍后再试',
  325. icon: 'none'
  326. })
  327. })
  328. }
  329. onSubmit() {
  330. const { data, bankData } = this.state
  331. if (data.type == 1) {
  332. if (!data.userNames) {
  333. Taro.showToast({ title: "请填写公出客户名称", icon: "none" });
  334. return;
  335. }
  336. if (!data.districtName) {
  337. Taro.showToast({ title: "请填写公出地点", icon: "none" });
  338. return;
  339. }
  340. if (!this.state.rangeStartMinuteVal) {
  341. Taro.showToast({ title: "请选择公出时间", icon: "none" });
  342. return;
  343. }
  344. if (!this.state.rangeEndMinuteVal) {
  345. Taro.showToast({ title: "请选择公出时间", icon: "none" });
  346. return;
  347. }
  348. }
  349. if (!data.remarks) {
  350. Taro.showToast({ title: "请填写报销事由", icon: "none" });
  351. return;
  352. }
  353. this.setState({
  354. loading: true,
  355. });
  356. let comData = {
  357. updateType: 0,
  358. id: this.$instance.router.params.id,
  359. status: 1, // 提交审核
  360. type: data.type, // 报销类型
  361. typeOther: data.type == 0 ? data.typeOther : undefined, // 其他类型
  362. remarks: data.remarks, // 报销事由
  363. applyDep: data.applyDep, // 申请部门
  364. attachmentUrl: this.state.imgs.length === 0 ? "" : this.state.imgs.join(","), // 附件
  365. payDep: (data.type == 4 || data.type == 5) ? undefined : data.payDep, // 支付部门(借支抵扣不需要)
  366. orderNo: (data.type == 4 || data.type == 5) ? undefined : data.orderNo, // 订单编号(借支抵扣不需要)
  367. debitId: (data.type == 4 || data.type == 5) ? undefined : data.debitId, // 预支单
  368. eaaid: data.type != 3 ? bankData.id : undefined, // 报销账户(第三方付款不需要)
  369. // 差旅费
  370. userNames: data.type == 1 ? data.userNames : undefined, // 公出客户名称
  371. districtName: data.type == 1 ? data.districtName : undefined, // 公出地点
  372. releaseStart: data.type == 1 ? this.state.rangeStartMinuteVal : undefined, // 开始时间
  373. releaseEnd: data.type == 1 ? this.state.rangeEndMinuteVal : undefined, // 结束时间
  374. duration: data.type == 1 ? this.state.totalDuration : undefined, // 公出时长
  375. }
  376. subAccount(removeNull(comData))
  377. .then((v) => {
  378. this.setState({
  379. loading: false,
  380. })
  381. if (v.error.length === 0) {
  382. Taro.showToast({
  383. title: "提交成功!",
  384. icon: "none",
  385. });
  386. Taro.switchTab({
  387. url: "/pages/recordlist/index",
  388. });
  389. } else {
  390. Taro.showToast({
  391. title: v.error[0].message,
  392. icon: "none",
  393. });
  394. }
  395. })
  396. .catch(() => {
  397. this.setState({
  398. loading: false,
  399. });
  400. });
  401. }
  402. getNumHourse(startTime, endTime) {
  403. this.setState({
  404. totalDuration: getNumHourse(
  405. startTime,
  406. endTime,
  407. this.state.validDates.length
  408. ),
  409. });
  410. }
  411. onPickerHide() {
  412. this.setState({
  413. isPickerRender: false,
  414. });
  415. }
  416. onSetPickerTime(val) {
  417. let data = val.detail;
  418. this.setState({
  419. rangeStartMinuteVal: data.selectStartTime,
  420. rangeEndMinuteVal: data.selectEndTime,
  421. });
  422. let arr = [];
  423. if (data.startTime && data.endTime) {
  424. let a = dayjs(data.startTime);
  425. let b = dayjs(data.endTime);
  426. let num;
  427. if (a.hour() <= b.hour()) {
  428. num = b.diff(a, "day") + 1;
  429. } else {
  430. num = b.diff(a, "day") + 2;
  431. }
  432. let strAdd = data.startTime;
  433. for (let i = 0; i < num; i++) {
  434. let time = dayjs(strAdd).add(i, "days").format("YYYY-MM-DD");
  435. arr.push({ value: time });
  436. }
  437. }
  438. this.setState({
  439. rangeEndVal: dayjs(data.endTime).format("YYYY-MM-DD"),
  440. rangeStartVal: dayjs(data.startTime).format("YYYY-MM-DD"),
  441. validDates: arr,
  442. }, () => {
  443. let a1 = dayjs(dayjs(data.endTime).format("YYYY-MM-DD HH:mm:ss"));
  444. let b1 = dayjs(dayjs(data.startTime).format("YYYY-MM-DD HH:mm:ss"));
  445. this.getNumHourse(b1, a1);
  446. });
  447. }
  448. render() {
  449. const { data, list, total, bankData, } = this.state
  450. const departmentArr = this.state.departmentArr || [];
  451. return (
  452. <View className="subform">
  453. <View className="title">{getAccountName(data.type, data.typeOther)}</View>
  454. {data.type == 1 &&
  455. <View className="inputFormItem">
  456. <AtInput
  457. name='userNames'
  458. title='公出企业:'
  459. type='text'
  460. placeholder='请填写公出企业'
  461. value={data.userNames}
  462. onChange={e => { data.userNames = e }}
  463. />
  464. </View>}
  465. {data.type == 1 &&
  466. <View className="inputFormItem">
  467. <AtInput
  468. name='districtName'
  469. title='公出地点:'
  470. type='text'
  471. placeholder='请填写公出地点'
  472. value={data.districtName}
  473. onChange={e => { data.districtName = e }}
  474. />
  475. </View>}
  476. {data.type == 1 &&
  477. <View className="formItem">
  478. <View className="formName">公出时间:</View>
  479. <View className="formValue">
  480. <View
  481. className="time"
  482. onClick={() => {
  483. this.setState({
  484. isPickerRender: true,
  485. });
  486. }}
  487. >
  488. {this.state.rangeStartMinuteVal &&
  489. this.state.rangeEndMinuteVal ? (
  490. <View className="timeContent">
  491. <View style={{ textAlign: "center" }}>{this.state.rangeStartMinuteVal}</View>
  492. &nbsp;&nbsp;至&nbsp;&nbsp;
  493. <View style={{ textAlign: "center" }}>{this.state.rangeEndMinuteVal}</View>
  494. </View>
  495. ) : (
  496. "请选择时间"
  497. )}
  498. </View>
  499. <timePicker
  500. config={{
  501. endDate: true,
  502. column: "minute",
  503. dateLimit: false,
  504. limitStartTime: dayjs()
  505. .subtract(3, "year")
  506. .format("YYYY-MM-DD HH:mm:ss"),
  507. limitEndTime: dayjs()
  508. .add(3, "year")
  509. .format("YYYY-MM-DD HH:mm:ss"),
  510. }}
  511. isPartition
  512. pickerShow={this.state.isPickerRender}
  513. onconditionaljudgment={(v) => {
  514. let a = dayjs(
  515. dayjs(v.detail.endTime)
  516. .second(0)
  517. .format("YYYY-MM-DD HH:mm:ss")
  518. );
  519. }}
  520. onhidepicker={() => {
  521. this.onPickerHide();
  522. }}
  523. onsetpickertime={(v) => {
  524. this.onSetPickerTime(v);
  525. }}
  526. />
  527. </View>
  528. </View>}
  529. {data.type == 1 &&
  530. <View className="formItem">
  531. <View className="formName">公出时长:</View>
  532. <View className="formValue">{this.state.totalDuration}小时</View>
  533. </View>}
  534. <View className="formItem">
  535. <View className="formName">申请类型:</View>
  536. <View className="formValue" onClick={() => {
  537. this.setState({
  538. isInquiryOpened: true,
  539. inquiryTitle: "温馨提示",
  540. inquiryContent: "您是否需要重新选择费用类型?原报销数据将清空后,需重新填写!!!",
  541. inquiryFn: () => {
  542. this.setState({
  543. typeVisible: "edit"
  544. })
  545. },
  546. });
  547. }}>
  548. {getAccountName(data.type, data.typeOther)}
  549. <AtIcon value="chevron-right" size="20" color="#000000" />
  550. </View>
  551. </View>
  552. {data.type != 4 && data.type != 5 &&
  553. <View className="formItem">
  554. <View className="formName">报销至订单:</View>
  555. <View className="formValue" onClick={() => {
  556. Taro.navigateTo({
  557. url: "/pages/dataindex/index"
  558. })
  559. }}>
  560. <View>
  561. <View>{data.buyerName}</View>
  562. <View>{data.contractNo}</View>
  563. </View>
  564. <AtIcon value="chevron-right" size="20" color="#000000" />
  565. </View>
  566. </View>}
  567. <View className="formTitle">
  568. 报销详细
  569. </View>
  570. <View className="formItem">
  571. <View className="formName">申请人:</View>
  572. <View className="formValue">{data.aname}</View>
  573. </View>
  574. {
  575. data.type != 4 && data.type != 5 &&
  576. <View className="formItem">
  577. <View className="formName">报销公司:</View>
  578. <View className="formValue">
  579. <Picker
  580. value={departmentArr.findIndex(item => item.id === data.applyDep)}
  581. range={departmentArr} rangeKey='name' mode='selector'
  582. onChange={(e) => {
  583. const obj = { applyDep: departmentArr[e.detail.value].id, appDepName: departmentArr[e.detail.value].name }
  584. this.setState({
  585. data: { ...data, ...obj },
  586. })
  587. }}>
  588. <View>
  589. {data.appDepName}
  590. <AtIcon value="chevron-right" size="20" color="#000000" />
  591. </View>
  592. </Picker>
  593. </View>
  594. </View>
  595. }
  596. <View className="formItem">
  597. <View className="formName">支付公司:</View>
  598. <View className="formValue">
  599. <Picker
  600. value={departmentArr.findIndex(item => item.id === data.payDep)}
  601. range={departmentArr} rangeKey='name' mode='selector'
  602. onChange={(e) => {
  603. const obj = { payDep: departmentArr[e.detail.value].id, payDepName: departmentArr[e.detail.value].name }
  604. this.setState({
  605. data: { ...data, ...obj },
  606. })
  607. }}>
  608. <View>
  609. {data.payDepName}
  610. <AtIcon value="chevron-right" size="20" color="#000000" />
  611. </View>
  612. </Picker>
  613. </View>
  614. </View>
  615. <View className="formItem">
  616. <View className="formName">报销事由:</View>
  617. <View className="formValues">
  618. <AtTextarea
  619. value={data.remarks == null ? "" : data.remarks}
  620. onChange={e => {
  621. const obj = { remarks: e }
  622. this.setState({
  623. data: { ...data, ...obj }
  624. })
  625. }}
  626. height={75}
  627. maxLength={50}
  628. placeholder="请填写报销事由"
  629. />
  630. </View>
  631. </View>
  632. <View className="formTitle">
  633. 报销费用详细
  634. <Button className="ftBottom" size='mini' type='primary'
  635. onClick={() => {
  636. data.type == 1
  637. ? this.setState({ visible: "add" })
  638. : Taro.navigateTo({
  639. url: `/pages/accountfrom/index?type=${data.type}&id=${this.$instance.router.params.id}`
  640. })
  641. }}>+ 增加</Button>
  642. </View>
  643. {this.state.visible != "" &&
  644. <NewModal
  645. eaid={this.$instance.router.params.id}
  646. visible={this.state.visible}
  647. onClose={this.onClose.bind(this)}
  648. />}
  649. {/* 差旅费显示 */}
  650. {data.type == 1 &&
  651. list?.map(item =>
  652. item.type == 1
  653. ? <View className="unItem" key={item.id}>
  654. <View className="close"
  655. onClick={() => {
  656. this.setState({
  657. isInquiryOpened: true,
  658. inquiryTitle: "提醒",
  659. inquiryContent: "您确定要删除吗?",
  660. inquiryFn: () => {
  661. this.detailsDelete(item.id);
  662. },
  663. });
  664. }}
  665. >删除</View>
  666. {/* <View className="edit">编辑</View> */}
  667. <View className="formItem">
  668. <View className="formName">交通工具:</View>
  669. <View className="formValue">{getVehicleName(item.vehicle, item.vehicleOther)}</View>
  670. </View>
  671. <View className="formItem">
  672. <View className="formName">时间:</View>
  673. <View className="formValue">
  674. <View className="ftxt">{item.startTimeStr}</View>
  675. &nbsp;&nbsp;至&nbsp;&nbsp;
  676. <View className="ftxt">{item.endTimeStr}</View>
  677. </View>
  678. </View>
  679. <View className="formItem">
  680. <View className="formName">地点:</View>
  681. <View className="formValue">
  682. <View className="ftxt">{item.startDistrict}</View>
  683. &nbsp;&nbsp;至&nbsp;&nbsp;
  684. <View className="ftxt">{item.endDistrict}</View>
  685. </View>
  686. </View>
  687. <View className="formItem">
  688. <View className="formName">金额:</View>
  689. <View className="formValue">{item.amount}(元)</View>
  690. </View>
  691. </View>
  692. : <View className="inputFormItems" key={item.id}>
  693. <AtInput
  694. name={item.id}
  695. title={getTypeName(item.type) + ":"}
  696. type='number'
  697. placeholder='请输入金额(元)'
  698. value={item.amount}
  699. />
  700. (元)
  701. <View className="close"
  702. onClick={() => {
  703. this.setState({
  704. isInquiryOpened: true,
  705. inquiryTitle: "提醒",
  706. inquiryContent: "您确定要删除吗?",
  707. inquiryFn: () => {
  708. this.detailsDelete(item.id);
  709. },
  710. });
  711. }}
  712. >删除</View>
  713. </View>)
  714. }
  715. {/* 通用 */}
  716. {(data.type == 0 || data.type == 2 || data.type == 4 || data.type == 5) &&
  717. list?.map(item =>
  718. <View className="unItem" key={item.id}>
  719. <View className="close"
  720. onClick={() => {
  721. this.setState({
  722. isInquiryOpened: true,
  723. inquiryTitle: "提醒",
  724. inquiryContent: "您确定要删除吗?",
  725. inquiryFn: () => {
  726. this.detailsDelete(item.id);
  727. },
  728. });
  729. }}
  730. >删除</View>
  731. {/* <View className="edit">编辑</View> */}
  732. <View className="formItem">
  733. <View className="formName">需付款时间:</View>
  734. <View className="formValue">{item.agreeTimeStr.slice(0, 10)}</View>
  735. </View>
  736. <View className="formItem">
  737. <View className="formName">金额:</View>
  738. <View className="formValue">{item.amount}(元)</View>
  739. </View>
  740. </View>
  741. )
  742. }
  743. {/* 第三方付款 */}
  744. {data.type == 3 &&
  745. list?.map(item =>
  746. <View className="unItem" key={item.id}>
  747. <View className="close"
  748. onClick={() => {
  749. this.setState({
  750. isInquiryOpened: true,
  751. inquiryTitle: "提醒",
  752. inquiryContent: "您确定要删除吗?",
  753. inquiryFn: () => {
  754. this.detailsDelete(item.id);
  755. },
  756. });
  757. }}
  758. >删除</View>
  759. {/* <View className="edit">编辑</View> */}
  760. <View className="formItem">
  761. <View className="formName">需付款时间:</View>
  762. <View className="formValue">{item.agreeTimeStr.slice(0, 10)}</View>
  763. </View>
  764. <View className="formItem">
  765. <View className="formName">付款方式:</View>
  766. <View className="formValue">{["公对公转账"][item.payType]}</View>
  767. </View>
  768. <View className="formItem">
  769. <View className="formName">发票类型:</View>
  770. <View className="formValue">{["普票", "专票"][item.invoiceType]}</View>
  771. </View>
  772. <View className="formItem">
  773. <View className="formName">发票号:</View>
  774. <View className="formValue">{item.invoiceNo}</View>
  775. </View>
  776. <View className="formItem">
  777. <View className="formName">付款单位:</View>
  778. <View className="formValue">{item.payerName}</View>
  779. </View>
  780. <View className="formItem">
  781. <View className="formName">开户银行:</View>
  782. <View className="formValue">{item.openBank}</View>
  783. </View>
  784. <View className="formItem">
  785. <View className="formName">银行账户:</View>
  786. <View className="formValue">{item.bankAccounts}</View>
  787. </View>
  788. <View className="formItem">
  789. <View className="formName">开户行地址:</View>
  790. <View className="formValue">{item.openBankAddress}</View>
  791. </View>
  792. <View className="formItem">
  793. <View className="formName">金额:</View>
  794. <View className="formValue">{item.amount}</View>
  795. </View>
  796. </View>
  797. )
  798. }
  799. {
  800. data.type != 4 && data.type != 5 &&
  801. <View className="formItem">
  802. <View className="formName">预借支:</View>
  803. <View className="formValue"
  804. onClick={() => {
  805. Taro.navigateTo({
  806. url: `/pages/debitnote/index?depId=${data.applyDep}`
  807. })
  808. }}
  809. >
  810. {!data.debitId
  811. ? <Button size='mini' type='primary' style={{ marginRight: 0 }}>选择借支订单</Button>
  812. : <View>{`已选择${data.debitTotalAmount}元借支订单`}<AtIcon value="chevron-right" size="20" color="#000000" /></View>}
  813. </View>
  814. </View>
  815. }
  816. <View className="formItem" style={{ paddingTop: "10px" }}>
  817. <View className="formName">总金额:</View>
  818. <View className="formValue"><Text style={{ color: "red" }}>{total}</Text>(元)</View>
  819. </View>
  820. <View className="formItem" style={{ paddingTop: "10px" }}>
  821. <View className="formName">实报金额:</View>
  822. <View className="formValue"><Text style={{ color: "red" }}>{this.state.reality}</Text>(元)</View>
  823. </View>
  824. <View className="formItem" style={{ display: "block", paddingBottom: 0 }}>
  825. <View className="formName">附件:</View>
  826. <View
  827. className="formValue"
  828. style={{ paddingTop: "10px", textAlign: "left" }}
  829. >
  830. {this.state.isShow &&
  831. <ImagePicker
  832. files={this.state.imgs}
  833. showAddBtn={true}
  834. ref={(ref) => (this.imagePickerRef = ref)}
  835. url="/api/admin/release/upload"
  836. onChange={this.onChange}
  837. />}
  838. </View>
  839. </View>
  840. <View className="tips">上传附件要求</View>
  841. <View className="tips">①需要提供发票报销</View>
  842. <View className="tips">②需要填写报销明细表</View>
  843. <View className="tips">③招待费需要提供报备截图</View>
  844. {data.type != 3 &&
  845. <View className="formTitle" style={{ marginTop: "20px" }}>
  846. 报销收款账户
  847. </View>}
  848. {data.type != 3 &&
  849. <View className="unobstructedList">
  850. {(!bankData.id)
  851. ? <View className="noAccout" onClick={() => { this.setState({ accountvisible: true }) }}>
  852. 暂未有收款账户
  853. <View className="nbt">去添加 &gt;</View>
  854. </View>
  855. : <View className="unItem" >
  856. <View className="edit"
  857. onClick={() => {
  858. this.setState({
  859. upaccount: true,
  860. aid: bankData.id,
  861. }, () => {
  862. this.getMyList(true)
  863. })
  864. }}
  865. >修改</View>
  866. <View className="formItem">
  867. <View className="formName">收款人:{bankData.name}</View>
  868. </View>
  869. <View className="formItem">
  870. <View className="formName">收款银行:{bankData.bank}</View>
  871. </View>
  872. <View className="formItem">
  873. <View className="formName">收款账户:{bankData.accounts}</View>
  874. </View>
  875. </View>}
  876. </View>}
  877. <View className="bottom">
  878. <AtButton
  879. disabled={this.state.loading}
  880. type="primary"
  881. circle
  882. onClick={() => {
  883. this.onSubmit()
  884. }}
  885. >
  886. {data.status == 0 ? "提交申请" : data.status == 3 && "重新发起"}
  887. </AtButton>
  888. </View>
  889. {/* 二级确认弹窗 */}
  890. <InquiryModal
  891. isOpened={this.state.isInquiryOpened}
  892. title={this.state.inquiryTitle}
  893. content={this.state.inquiryContent}
  894. onClose={() => {
  895. this.setState({
  896. isInquiryOpened: false,
  897. inquiryTitle: "",
  898. inquiryContent: "",
  899. isNo: true,
  900. });
  901. }}
  902. onDetermine={() => {
  903. this.state.inquiryFn();
  904. this.setState({
  905. isInquiryOpened: false,
  906. inquiryTitle: "",
  907. inquiryContent: "",
  908. isNo: true,
  909. inquiryFn: () => { },
  910. });
  911. }}
  912. />
  913. {/* 收款账户添加 */}
  914. {this.state.accountvisible != "" &&
  915. <AccountModal
  916. isSub={true}
  917. visible={this.state.accountvisible}
  918. onClose={this.onAccountClose.bind(this)}
  919. onOk={this.onAccountOk.bind(this)}
  920. />}
  921. {/* 收款账户列表 */}
  922. <AtModal isOpened={this.state.upaccount}>
  923. <AtModalHeader>请选择收款账户</AtModalHeader>
  924. <AtModalContent>
  925. <AtRadio
  926. options={getNewOptions(this.state.accountsList)}
  927. value={this.state.aid}
  928. onClick={e => { this.setState({ aid: e }) }}
  929. />
  930. </AtModalContent>
  931. <AtModalAction>
  932. <Button type='secondary' onClick={() => { this.setState({ upaccount: false, accountsList: [] }) }}>取消</Button>
  933. <Button type='primary' onClick={() => { this.selectOn() }}>确定</Button>
  934. </AtModalAction>
  935. </AtModal>
  936. {/* 申请类型修改 */}
  937. {this.state.typeVisible != "" &&
  938. <Select
  939. visible={this.state.typeVisible}
  940. onClose={this.onTypeClose.bind(this)}
  941. onOk={this.onTypeOk.bind(this)}
  942. type={data.type}
  943. other={data.typeOther}
  944. />}
  945. </View>
  946. );
  947. }
  948. }
  949. export default Drafts;