index.jsx 33 KB

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