addInvoice.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419
  1. <!-- 新增发票 -->
  2. <template>
  3. <view class="invoice">
  4. <!-- 导航栏 -->
  5. <u-navbar
  6. title-color="#fff"
  7. :custom-back="customBack"
  8. :border-bottom="false"
  9. back-icon-color="#CCE8FF"
  10. :background="{ background: '#008CFF' }"
  11. title="开发票"
  12. />
  13. <view class="invoice-form">
  14. <u-form :model="form" :rules="rules" ref="uForm" label-width="150" label-align="right">
  15. <u-form-item label="抬头:" required>
  16. <u-radio-group v-model="queryParams.invoHeadType" @change="invoTypeChange">
  17. <u-radio :name="1">企业</u-radio>
  18. <u-radio :name="2">个人</u-radio>
  19. </u-radio-group>
  20. </u-form-item>
  21. <u-form-item label="抬头名称:" prop="invoName" required>
  22. <u-input v-model="form.invoName" placeholder="请选择发票抬头" border disabled />
  23. <u-icon slot="right" name="list-dot" size="40" color="#606266" @click="moreCompany" />
  24. </u-form-item>
  25. <u-form-item label="税号:" prop="invoCode" required v-if="queryParams.invoHeadType === 1">
  26. <u-input v-model="form.invoCode" placeholder="税号自动填充" border disabled />
  27. </u-form-item>
  28. <u-form-item label="更多内容:" prop="moreContentValue">
  29. <u-input v-model="moreContentPop.moreContentValue" placeholder="开户银行、银行账号等" border disabled />
  30. <u-icon slot="right" name="arrow-right" size="36" color="#606266" @click="moreContent" />
  31. </u-form-item>
  32. <u-form-item label="发票金额:"> ¥{{ form.amount }} </u-form-item>
  33. </u-form>
  34. </view>
  35. <view class="invoice-form margin-top">
  36. <u-form :model="form" ref="uForm1" label-width="150" label-align="right">
  37. <u-form-item label="电子邮箱:" prop="invoMail">
  38. <u-input v-model="form.invoMail" placeholder="选填" border />
  39. </u-form-item>
  40. <u-form-item label="手机号码:" prop="invoPhone">
  41. <u-input v-model="form.invoPhone" placeholder="选填" border />
  42. </u-form-item>
  43. </u-form>
  44. </view>
  45. <view class="invoice-submit">
  46. <u-button type="primary" :loading="loading" @click="submitForm">提交</u-button>
  47. </view>
  48. <!-- 公司弹框 -->
  49. <u-popup v-model="companyPop.show" mode="bottom" :closeable="true" height="50vh">
  50. <view class="popup">
  51. <view class="popup-list" v-if="companyPop.list.length">
  52. <u-radio-group class="popup-list-group" v-model="companyPop.form.name" :wrap="true">
  53. <u-radio class="popup-list-item" v-for="(item, index) in companyPop.list" :key="index" :name="item.id" @change="companyRadioClick(item)">
  54. {{ item.invoName }}
  55. </u-radio>
  56. </u-radio-group>
  57. </view>
  58. <view class="popup-list" v-else>
  59. <view class="popup-list-item">暂无抬头,请先添加</view>
  60. </view>
  61. <view class="popup-bottom">
  62. <u-button type="primary" @click="addInvoiceHeader">添加常用发票抬头</u-button>
  63. </view>
  64. </view>
  65. </u-popup>
  66. <!-- 更多内容 -->
  67. <u-popup v-model="moreContentPop.show" mode="center" width="100%" height="100%">
  68. <view class="invoice-more-pop">
  69. <view class="invoice-more-pop-form">
  70. <u-form :model="moreContentPop.form" ref="uForm2" label-width="150" label-align="right">
  71. <u-form-item label="开户银行:" prop="openBank">
  72. <u-input v-model="form.openBank" placeholder="选填" border />
  73. </u-form-item>
  74. <u-form-item label="银行账号:" prop="numBank">
  75. <u-input v-model="form.numBank" placeholder="选填" border />
  76. </u-form-item>
  77. <u-form-item label="企业地址:" prop="mapCom">
  78. <u-input v-model="form.mapCom" placeholder="选填" border />
  79. </u-form-item>
  80. <u-form-item label="企业电话:" prop="phoneCom">
  81. <u-input v-model="form.phoneCom" placeholder="选填" border />
  82. </u-form-item>
  83. </u-form>
  84. </view>
  85. <view class="invoice-more-pop-submit">
  86. <u-button type="primary" @click="moreContentConfirm">确定</u-button>
  87. </view>
  88. </view>
  89. </u-popup>
  90. <!-- 可开票订单 -->
  91. <u-popup v-model="orderPop.show" mode="top" length="100%">
  92. <view class="order-box">
  93. <u-navbar
  94. back-text=""
  95. title="可开票订单"
  96. :background="orderPop.background"
  97. title-color="#fff"
  98. back-icon-color="#fff"
  99. :custom-back="orderCustomBack"
  100. />
  101. <z-paging ref="paging" :fixed="false" v-model="orderPop.list" @query="queryList">
  102. <view class="order-box-list">
  103. <view class="order-box-list-item" v-for="(item, index) in orderPop.list" :key="index" @click="radioClick(item)">
  104. <view class="left">
  105. <view class="left-radio small-radio">
  106. <radio value="true" :checked="orderPop.currentIds.includes(item.id)" />
  107. </view>
  108. <view class="left-content">
  109. <view class="left-content-item money">¥{{ item.amount }}</view>
  110. <view class="left-content-item">{{ item.name }}</view>
  111. <view class="left-content-item time">{{ $u.timeFormat(new Date(item.payTime), 'yyyy-mm-dd hh:MM:ss') }}</view>
  112. </view>
  113. </view>
  114. <view class="right">{{ item.vehicleNo }}</view>
  115. </view>
  116. </view>
  117. <view class="order-box-bottom" slot="bottom">
  118. <view class="order-box-bottom-radio small-radio">
  119. <radio value="true" :checked="orderPop.checkedAll" :disabled="this.orderPop.list.length === 0" @click="checkedChange" />本页全选
  120. </view>
  121. <view class="order-box-bottom-next">
  122. <u-button type="primary" size="medium" :disabled="!orderPop.currentIds.length" @click="nextStep">下一步</u-button>
  123. </view>
  124. </view>
  125. </z-paging>
  126. </view>
  127. </u-popup>
  128. <u-toast ref="uToast" />
  129. </view>
  130. </template>
  131. <script>
  132. export default {
  133. data() {
  134. return {
  135. form: {
  136. invoName: '',
  137. invoCode: '',
  138. invoHeadId: '',
  139. invoMail: '',
  140. invoPhone: '',
  141. invoType: 1,
  142. phoneCom: '',
  143. mapCom: '',
  144. openBank: '',
  145. numBank: '',
  146. amount: '',
  147. orderIds: []
  148. },
  149. rules: {
  150. invoType: [{ required: true, message: '请选择发票类型', trigger: 'change' }],
  151. invoName: [{ required: true, message: '请输入抬头名称', trigger: 'blur' }],
  152. invoCode: [{ required: true, message: '请输入税号', trigger: 'blur' }]
  153. },
  154. companyPop: {
  155. show: false,
  156. form: {
  157. name: ''
  158. },
  159. list: []
  160. },
  161. loading: false,
  162. queryParams: {
  163. invoHeadType: 1
  164. },
  165. moreContentPop: {
  166. show: false,
  167. moreContentValue: ''
  168. },
  169. orderPop: {
  170. show: true,
  171. background: {
  172. backgroundColor: '#008CFF'
  173. },
  174. checkedAll: false,
  175. queryParams: {
  176. pageNum: 1,
  177. pageSize: 10,
  178. invoType: 1
  179. },
  180. list: [],
  181. currentIds: [],
  182. currentList: []
  183. }
  184. };
  185. },
  186. watch: {
  187. 'orderPop.currentIds'(val) {
  188. this.orderPop.checkedAll = val.length === this.orderPop.list.length && val.length !== 0;
  189. },
  190. 'orderPop.list'(val) {
  191. this.orderPop.checkedAll = val.length === this.orderPop.currentIds.length && val.length !== 0;
  192. }
  193. },
  194. onLoad(options) {
  195. const { invoType } = options;
  196. this.form.invoType = invoType;
  197. this.orderPop.queryParams.invoType = invoType;
  198. },
  199. onShow() {
  200. this.getInvoiceHeaderSelect();
  201. },
  202. onReady() {
  203. this.$refs.uForm.setRules(this.rules);
  204. },
  205. methods: {
  206. /**
  207. * @description: 订单关闭
  208. * @return {*}
  209. */
  210. orderCustomBack() {
  211. this.$u.route({
  212. url: '/pages/invoiceModule/myInvoice/myInvoice'
  213. });
  214. },
  215. /**
  216. * @description: 分页触发
  217. * @param {*} pageNo
  218. * @param {*} pageSize
  219. * @return {*}
  220. */
  221. queryList(pageNo, pageSize) {
  222. this.orderPop.queryParams.pageNum = pageNo;
  223. this.orderPop.queryParams.pageSize = pageSize;
  224. this.getList();
  225. },
  226. /**
  227. * @description: 获取列表
  228. * @return {*}
  229. */
  230. async getList() {
  231. const { code, data } = await this.$u.api.invoiceModuleApi.getInvoiceOrderListApi({ ...this.orderPop.queryParams });
  232. if (code === 200) {
  233. this.$refs.paging.complete(data?.pageInfo?.rows || []);
  234. }
  235. },
  236. /**
  237. * @description: 单项条目点击
  238. * @param {*} item
  239. * @return {*}
  240. */
  241. radioClick(item) {
  242. if (this.orderPop.currentIds.includes(item.id)) {
  243. const index = this.orderPop.currentIds.indexOf(item.id);
  244. this.orderPop.currentIds.splice(index, 1);
  245. this.orderPop.currentList.splice(index, 1);
  246. } else {
  247. this.orderPop.currentIds.push(item.id);
  248. this.orderPop.currentList.push(item);
  249. }
  250. },
  251. /**
  252. * @description: 全选
  253. * @return {*}
  254. */
  255. checkedChange() {
  256. this.orderPop.checkedAll = !this.orderPop.checkedAll;
  257. this.orderPop.currentIds = this.orderPop.checkedAll ? this.orderPop.list.map((item) => item.id) : [];
  258. this.orderPop.currentList = this.orderPop.checkedAll
  259. ? this.orderPop.list.map((item) => {
  260. return { ...item };
  261. })
  262. : [];
  263. },
  264. /**
  265. * @description: 下一步
  266. * @return {*}
  267. */
  268. nextStep() {
  269. if (this.orderPop.currentIds.length) {
  270. this.form.amount = this.countSum(this.orderPop.currentList);
  271. this.form.orderIds = this.orderPop.currentIds;
  272. this.orderPop.show = false;
  273. } else {
  274. this.$refs.uToast.show({
  275. title: '请先选择订单',
  276. type: 'warning'
  277. });
  278. }
  279. },
  280. /**
  281. * @description: 计算累加精度丢失问题
  282. * @param {*} arr
  283. * @return {*}
  284. */
  285. countSum(arr) {
  286. if (!arr.length) return 0;
  287. arr = arr.map((v) => {
  288. if (v.amount && !Number.isNaN(Number(v.amount))) return Math.round(v.amount.toFixed(2) * 100);
  289. return 0;
  290. });
  291. const result = arr.reduce((prev, curr) => {
  292. return prev + curr;
  293. }, 0);
  294. return result / 100;
  295. },
  296. /**
  297. * @description: 选择企业
  298. * @return {*}
  299. */
  300. moreCompany() {
  301. this.companyPop.show = true;
  302. },
  303. customBack() {
  304. this.orderPop.show = true;
  305. // uni.navigateBack();
  306. },
  307. moreContent() {
  308. this.moreContentPop.show = true;
  309. },
  310. /**
  311. * @description: 获取发票抬头下拉
  312. * @return {*}
  313. */
  314. async getInvoiceHeaderSelect() {
  315. const { code, data } = await this.$u.api.invoiceModuleApi.getInvoiceHeadSelectApi({ ...this.queryParams });
  316. if (code === 200) {
  317. this.companyPop.list = data;
  318. const { invoName, invoCode, id, invoMail, invoPhone, invoStatus } = data[0] || {};
  319. const isEmpty = invoStatus !== 1;
  320. this.form.invoName = isEmpty ? '' : invoName;
  321. this.form.invoCode = isEmpty ? '' : invoCode;
  322. this.form.invoHeadId = isEmpty ? '' : id;
  323. this.form.invoMail = isEmpty ? '' : invoMail;
  324. this.form.invoPhone = isEmpty ? '' : invoPhone;
  325. this.companyPop.form.name = isEmpty ? '' : id;
  326. }
  327. },
  328. /**
  329. * @description: 选择抬头
  330. * @param {*} item
  331. * @return {*}
  332. */
  333. companyRadioClick(item) {
  334. this.companyPop.show = false;
  335. this.form.invoName = item.invoName;
  336. this.form.invoCode = item.invoCode;
  337. this.form.invoHeadId = item.id;
  338. this.form.invoMail = item.invoMail;
  339. this.form.invoPhone = item.invoPhone;
  340. this.companyPop.form.name = item.id;
  341. },
  342. addInvoiceHeader() {
  343. this.companyPop.show = false;
  344. this.$u.route({
  345. url: '/pages/invoiceModule/invoiceHeaderList/invoiceHeaderList',
  346. params: {
  347. invoType: this.form.invoType
  348. }
  349. });
  350. },
  351. /**
  352. * @description: 抬头类型切换
  353. * @param {*} val
  354. * @return {*}
  355. */
  356. invoTypeChange(val) {
  357. this.queryParams.invoHeadType = val;
  358. this.getInvoiceHeaderSelect();
  359. },
  360. /**
  361. * @description: 更多内容弹框确认
  362. * @return {*}
  363. */
  364. moreContentConfirm() {
  365. this.moreContentPop.show = false;
  366. const { openBank, numBank, mapCom, phoneCom } = this.form;
  367. const moreContentTotal = [openBank, numBank, mapCom, phoneCom].filter(Boolean).length;
  368. this.moreContentPop.moreContentValue = moreContentTotal ? `共4项 已填写${moreContentTotal}项` : '';
  369. },
  370. submitForm() {
  371. this.$refs.uForm.validate(async (valid) => {
  372. if (!valid) return;
  373. try {
  374. this.loading = true;
  375. uni.showLoading({
  376. title: '提交中...'
  377. });
  378. const { invoHeadId, invoName, invoCode, invoMail, invoPhone, invoType, phoneCom, mapCom, openBank, numBank, orderIds } = this.form;
  379. const { code } = await this.$u.api.invoiceModuleApi.addInvoiceApi({
  380. invoHeadId,
  381. invoName,
  382. invoCode,
  383. invoMail,
  384. invoPhone,
  385. invoType,
  386. phoneCom,
  387. mapCom,
  388. openBank,
  389. numBank,
  390. orderIds
  391. });
  392. if (code === 200) {
  393. this.$refs.uToast.show({
  394. title: '添加成功!',
  395. type: 'success',
  396. duration: 1000
  397. });
  398. setTimeout(() => {
  399. uni.redirectTo({
  400. url: `/pages/invoiceModule/invoiceSuccess/invoiceSuccess`
  401. });
  402. uni.hideLoading();
  403. this.loading = false;
  404. }, 1000);
  405. }
  406. } catch (error) {
  407. uni.hideLoading();
  408. this.loading = false;
  409. }
  410. });
  411. }
  412. }
  413. };
  414. </script>
  415. <style lang="scss" scoped>
  416. @import './addInvoice.scss';
  417. </style>