edit.vue 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591
  1. <template>
  2. <div class="allocateBillEdit-wrap">
  3. <!-- <a-spin :spinning="spinning" tip="Loading..."> -->
  4. <div class="ant-spin-nested-loading">
  5. <a-page-header :ghost="false" :backIcon="false" class="allocateBillEdit-back" >
  6. <!-- 自定义的二级文字标题 -->
  7. <template slot="subTitle">
  8. <a id="allocateBillEdit-back-btn" href="javascript:;" @click="handleBack"><a-icon type="left" /> 返回列表</a>
  9. </template>
  10. <!-- 操作区,位于 title 行的行尾 -->
  11. <template slot="extra">
  12. <print :params="{allocateReturnSn: $route.params.sn}" :disabled="localDataSource.length==0" @loading="spinning=true" @unloading="spinning=false"></print>
  13. </template>
  14. </a-page-header>
  15. <a-card size="small" :bordered="false" v-if="basicInfoData" class="allocateBillEdit-cont">
  16. <a-collapse :activeKey="['0']">
  17. <a-collapse-panel key="0" header="基础信息">
  18. <a-descriptions :column="3">
  19. <a-descriptions-item label="调拨退货单号">{{ (basicInfoData&&basicInfoData.allocateReturnNo) || '--' }}</a-descriptions-item>
  20. <a-descriptions-item label="调拨退货对象">{{ (basicInfoData&&basicInfoData.targetTypeDictValue) || '--' }}</a-descriptions-item>
  21. <a-descriptions-item label="调拨退货对象名称">{{ (basicInfoData&&basicInfoData.targetName) || '--' }}</a-descriptions-item>
  22. <a-descriptions-item label="调拨退货类型">
  23. <AllocateType id="allocateEdit-allocateReturnTypeSn" style="width: 200px;" @change="changeAllocateType" v-model="basicInfoData.allocateReturnTypeSn"></AllocateType>
  24. </a-descriptions-item>
  25. <a-descriptions-item label="是否抓单">{{ (basicInfoData&&basicInfoData.grabFlagDictValue) || '--' }}</a-descriptions-item>
  26. <a-descriptions-item label="备注">
  27. {{ (basicInfoData&&basicInfoData.remarks) }}
  28. <a-icon type="form" title="编辑备注" @click="editRemark = true" style="color: dodgerblue;font-size: 14px;" />
  29. </a-descriptions-item>
  30. </a-descriptions>
  31. </a-collapse-panel>
  32. </a-collapse>
  33. </a-card>
  34. <!-- 选择产品 -->
  35. <a-card size="small" :bordered="false" class="allocateBillEdit-cont">
  36. <a-collapse :activeKey="['1']">
  37. <a-collapse-panel key="1" :forceRender="true" header="选择产品">
  38. <!-- 筛选条件 -->
  39. <div class="table-page-search-wrapper">
  40. <a-form layout="inline" @keyup.enter.native="$refs.table.refresh(true)">
  41. <a-row :gutter="15">
  42. <a-col :md="6" :sm="24">
  43. <a-form-item label="产品编码" prop="productCode">
  44. <a-input id="allocateBillEdit-productCode" v-model.trim="queryParam.productCode" placeholder="请输入产品编码" allowClear />
  45. </a-form-item>
  46. </a-col>
  47. <a-col :md="6" :sm="24">
  48. <a-form-item label="产品名称" prop="productName">
  49. <a-input id="allocateBillEdit-productName" v-model.trim="queryParam.productName" placeholder="请输入产品名称" allowClear />
  50. </a-form-item>
  51. </a-col>
  52. <a-col :md="6" :sm="24" style="margin-bottom: 10px;">
  53. <a-button type="primary" @click="$refs.table.refresh(true)" :disabled="disabled" id="storeTransferOutList-refresh">查询</a-button>
  54. <a-button style="margin-left: 8px" @click="resetSearchForm" :disabled="disabled" id="storeTransferOutList-reset">重置</a-button>
  55. </a-col>
  56. </a-row>
  57. </a-form>
  58. </div>
  59. <!-- 列表 -->
  60. <s-table
  61. class="sTable"
  62. ref="table"
  63. size="small"
  64. index="0"
  65. tableId="table1"
  66. :rowKey="(record) => record.stockSn"
  67. :columns="columns"
  68. :customRow="handleClickRow"
  69. :data="loadData"
  70. :scroll="{ y: 300 }"
  71. :defaultLoadData="false"
  72. bordered>
  73. <!-- 退货单价 -->
  74. <template slot="returnPrice" slot-scope="text, record">
  75. <div @dblclick.stop>
  76. <a-input-number
  77. size="small"
  78. v-model="record.productPrice"
  79. :precision="2"
  80. :min="0"
  81. :max="999999"
  82. placeholder="请输入"
  83. style="width: 100%;" />
  84. </div>
  85. </template>
  86. <!-- 退货数量 -->
  87. <template slot="returnQty" slot-scope="text, record">
  88. <div @dblclick.stop>
  89. <a-input-number
  90. size="small"
  91. v-model="record.qty"
  92. :precision="0"
  93. :min="1"
  94. :max="999999"
  95. placeholder="请输入"
  96. style="width: 100%;" />
  97. </div>
  98. </template>
  99. <!-- 操作 -->
  100. <template slot="action" slot-scope="text, record">
  101. <a-button
  102. size="small"
  103. type="link"
  104. v-if="record.lastStockCost"
  105. class="button-primary"
  106. @click="handleAdd(record)"
  107. id="allocateBillEdit-add-btn">添加</a-button>
  108. <span v-else>--</span>
  109. </template>
  110. </s-table>
  111. </a-collapse-panel>
  112. </a-collapse>
  113. </a-card>
  114. <!-- 已选产品 -->
  115. <a-card size="small" :bordered="false" class="allocateBillEdit-cont">
  116. <a-collapse :activeKey="['2']">
  117. <a-collapse-panel key="2" :forceRender="true" header="已选产品">
  118. <!-- 总计 -->
  119. <a-alert type="info" style="margin-bottom:10px">
  120. <div slot="message">
  121. 退货总数量:<strong>{{ (basicInfoData&&(basicInfoData.totalQty || basicInfoData.totalQty==0)) ? basicInfoData.totalQty : '--' }}</strong> ,
  122. <span>退货总金额(¥):<strong>{{ (basicInfoData&&(basicInfoData.totalPrice || basicInfoData.totalPrice==0)) ? basicInfoData.totalPrice : '--' }}</strong></span>
  123. </div>
  124. </a-alert>
  125. <!-- 筛选条件 -->
  126. <a-row :gutter="15">
  127. <a-col :span="17">
  128. <div class="table-page-search-wrapper">
  129. <a-form layout="inline" @keyup.enter.native="$refs.chooseTable.refresh(true)">
  130. <a-row :gutter="15">
  131. <a-col :md="9" :sm="24">
  132. <a-form-item label="产品编码" prop="productCode">
  133. <a-input id="editGrap-productCode" v-model.trim="chooseQueryParam.productCode" placeholder="请输入产品编码" allowClear />
  134. </a-form-item>
  135. </a-col>
  136. <a-col :md="9" :sm="24">
  137. <a-form-item label="产品名称" prop="productName">
  138. <a-input id="editGrap-productName" v-model.trim="chooseQueryParam.productName" placeholder="请输入产品名称" allowClear />
  139. </a-form-item>
  140. </a-col>
  141. <a-col :md="6" :sm="24" style="margin-bottom: 10px;">
  142. <a-button type="primary" @click="$refs.chooseTable.refresh(true)" :disabled="chooseDisabled" id="storeTransferOutList-refresh">查询</a-button>
  143. <a-button style="margin-left: 8px" @click="chooseResetSearchForm" :disabled="chooseDisabled" id="storeTransferOutList-reset">重置</a-button>
  144. </a-col>
  145. </a-row>
  146. </a-form>
  147. </div>
  148. </a-col>
  149. <a-col :span="7" style="text-align: right;">
  150. <!-- <a-button size="small" id="editGrap-import-btn" @click="openGuideModal=true">导入产品</a-button> -->
  151. <!-- <a-button size="small" type="danger" style="margin-left: 5px" @click.stop="handleDel('', 'all')" id="chainTransferOutEdit-del-all-btn">整单删除</a-button> -->
  152. </a-col>
  153. </a-row>
  154. <!-- 列表 -->
  155. <s-table
  156. class="sTable"
  157. ref="chooseTable"
  158. size="small"
  159. index="1"
  160. tableId="table2"
  161. :rowKey="(record) => record.id"
  162. :columns="chooseColumns"
  163. :data="chooseLoadData"
  164. :scroll="{ y: 300 }"
  165. :defaultLoadData="false"
  166. bordered>
  167. <!-- 退货单价 -->
  168. <template slot="returnPrice" slot-scope="text, record">
  169. <a-input-number
  170. size="small"
  171. v-model="record.price"
  172. :precision="2"
  173. :min="0"
  174. :max="999999"
  175. @blur="e => priceChange(e.target.value, record)"
  176. placeholder="请输入"
  177. style="width: 100%;" />
  178. </template>
  179. <!-- 退货数量 -->
  180. <template slot="returnQty" slot-scope="text, record">
  181. <a-input-number
  182. size="small"
  183. v-model="record.returnQty"
  184. :precision="0"
  185. :min="1"
  186. :max="999999"
  187. @blur="e => qtyBlur(e.target.value, record)"
  188. placeholder="请输入"
  189. style="width: 100%;" />
  190. </template>
  191. <!-- 操作 -->
  192. <template slot="action" slot-scope="text, record">
  193. <a-button size="small" type="link" class="button-error" @click="handleDel(record)" id="allocateBillEdit-del-btn">删除</a-button>
  194. </template>
  195. </s-table>
  196. </a-collapse-panel>
  197. </a-collapse>
  198. </a-card>
  199. <!-- </a-spin> -->
  200. </div>
  201. <div class="affix-cont">
  202. <a-button
  203. type="primary"
  204. id="allocateBillEdit-submit"
  205. size="large"
  206. :disabled="spinning"
  207. class="button-primary"
  208. @click="handleSubmit"
  209. style="padding: 0 60px;">提交</a-button>
  210. </div>
  211. <!-- 导入产品 -->
  212. <!-- <importGuideModal :openModal="openGuideModal" :params="{allocateReturnSn: $route.params.sn}" @close="openGuideModal=false" @ok="handleGuideOk" /> -->
  213. <!-- 修改基础信息 -->
  214. <a-modal
  215. centered
  216. wrapClassName="allocateBill-editRemark-modal"
  217. v-if="basicInfoData"
  218. :footer="null"
  219. :maskClosable="false"
  220. title="修改备注"
  221. v-model="editRemark"
  222. @cancle="editRemark = false"
  223. :width="600">
  224. <a-textarea
  225. v-model="basicInfoData.remarks"
  226. placeholder="请输入备注(最多120个字符)"
  227. :maxLength="120"
  228. :auto-size="{ minRows: 3, maxRows: 5 }"
  229. />
  230. <div class="btn-cont">
  231. <a-button type="primary" id="allocateBill-basicInfo-modal-save" @click="handleEditRemark">保存</a-button>
  232. <a-button id="allocateBill-basicInfo-modal-back" @click="editRemark = false" style="margin-left: 15px;">取消</a-button>
  233. </div>
  234. </a-modal>
  235. </div>
  236. </template>
  237. <script>
  238. import { commonMixin } from '@/utils/mixin'
  239. import { STable, VSelect } from '@/components'
  240. // import ImportGuideModal from './importGuideModal.vue'
  241. import print from './print.vue'
  242. import { queryStockProductPage } from '@/api/stock'
  243. import AllocateType from '@/views/common/allocateType.js'
  244. import {
  245. allocateReturnSave,
  246. allocReturnDetailQueryPage,
  247. allocateReturnQueryBySn,
  248. allocReturnDetailInsert,
  249. allocReturnDetailUpdate,
  250. allocateReturnSubmit,
  251. allocReturnDetailDelete
  252. // allocateBillBatchInsert
  253. } from '@/api/allocateReturn'
  254. export default {
  255. name: 'TransferReturnEdit',
  256. mixins: [commonMixin],
  257. components: { STable, VSelect, print, AllocateType },
  258. data () {
  259. return {
  260. spinning: false,
  261. queryParam: {
  262. productCode: '',
  263. productName: '',
  264. productOrigCode: ''
  265. },
  266. chooseQueryParam: {
  267. productCode: '',
  268. productName: ''
  269. },
  270. editRemark: false,
  271. disabled: false, // 查询、重置按钮是否可操作
  272. loading: false,
  273. chooseDisabled: false, // 查询、重置按钮是否可操作
  274. advanced: false, // 高级搜索 展开/关闭
  275. // 加载数据方法 必须为 Promise 对象
  276. loadData: parameter => {
  277. this.disabled = true
  278. const dealerLevel = this.$route.params.dealerLevel == 'OTHER' ? undefined : this.$route.params.dealerLevel
  279. return queryStockProductPage(Object.assign(parameter, this.queryParam, { dealerLevel: dealerLevel })).then(res => {
  280. const data = res.data
  281. const no = (data.pageNo - 1) * data.pageSize
  282. for (var i = 0; i < data.list.length; i++) {
  283. data.list[i].no = no + i + 1
  284. data.list[i].qty = 1
  285. }
  286. this.loadDataSource = data.list || []
  287. this.disabled = false
  288. return data
  289. })
  290. },
  291. loadDataSource: [],
  292. localDataSource: [],
  293. columns: [
  294. { title: '序号', dataIndex: 'no', width: '4%', align: 'center' },
  295. { title: '产品编码', dataIndex: 'productCode', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
  296. { title: '产品名称', dataIndex: 'productName', align: 'center', width: '29%', customRender: function (text) { return text || '--' }, ellipsis: true },
  297. { title: '单位', dataIndex: 'productUnit', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
  298. { title: '退货单价', scopedSlots: { customRender: 'returnPrice' }, width: '10%', align: 'center' },
  299. { title: '退货数量', scopedSlots: { customRender: 'returnQty' }, width: '10%', align: 'center' },
  300. { title: '操作', scopedSlots: { customRender: 'action' }, width: '10%', align: 'center' }
  301. ],
  302. chooseColumns: [
  303. { title: '序号', dataIndex: 'no', width: '4%', align: 'center' },
  304. { title: '产品编码', dataIndex: 'product.code', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
  305. { title: '产品名称', dataIndex: 'product.name', align: 'center', width: '29%', customRender: function (text) { return text || '--' }, ellipsis: true },
  306. { title: '单位', dataIndex: 'product.unit', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
  307. { title: '退货单价', scopedSlots: { customRender: 'returnPrice' }, width: '10%', align: 'center' },
  308. { title: '退货数量', scopedSlots: { customRender: 'returnQty' }, width: '10%', align: 'center' },
  309. { title: '退货金额', dataIndex: 'totalReturnPrice', width: '10%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
  310. { title: '操作', scopedSlots: { customRender: 'action' }, width: '10%', align: 'center' }
  311. ],
  312. // 加载数据方法 必须为 Promise 对象
  313. chooseLoadData: parameter => {
  314. this.chooseDisabled = true
  315. const params = Object.assign(parameter, { product: { name: this.chooseQueryParam.productName, code: this.chooseQueryParam.productCode }, allocateReturnSn: this.$route.params.sn })
  316. return allocReturnDetailQueryPage(params).then(res => {
  317. const data = res.data
  318. const no = (data.pageNo - 1) * data.pageSize
  319. for (var i = 0; i < data.list.length; i++) {
  320. data.list[i].no = no + i + 1
  321. data.list[i].qtyBackups = data.list[i].returnQty
  322. data.list[i].oldPrice = data.list[i].price
  323. }
  324. this.localDataSource = data.list || []
  325. this.chooseDisabled = false
  326. return data
  327. })
  328. },
  329. basicInfoData: null, // 基本信息
  330. openGuideModal: false, // 导入产品引导
  331. openModal: false,
  332. nowType: null
  333. }
  334. },
  335. methods: {
  336. // 修改备注
  337. handleEditRemark () {
  338. const _this = this
  339. const params = _this.basicInfoData
  340. allocateReturnSave(params).then(res => {
  341. if (res.status == 200) {
  342. _this.$message.success(res.message)
  343. _this.getDetail(true)
  344. } else {
  345. _this.spinning = false
  346. }
  347. })
  348. _this.editRemark = false
  349. },
  350. // 修改调拨类型
  351. changeAllocateType (val) {
  352. const _this = this
  353. this.$confirm({
  354. title: '提示',
  355. content: '确定要更改调拨退货类型吗?',
  356. centered: true,
  357. onOk () {
  358. _this.handleEditRemark()
  359. },
  360. onCancel () {
  361. _this.getDetail(true)
  362. }
  363. })
  364. },
  365. // 重置
  366. resetSearchForm () {
  367. this.queryParam.productCode = ''
  368. this.queryParam.productName = ''
  369. this.queryParam.productOrigCode = ''
  370. this.$refs.table.refresh(true)
  371. },
  372. // 双击快速添加
  373. handleClickRow (record) {
  374. return {
  375. on: {
  376. dblclick: (event) => {
  377. this.handleAdd(record)
  378. }
  379. }
  380. }
  381. },
  382. // 导入产品
  383. // handleGuideOk (obj) {
  384. // allocateBillBatchInsert(obj).then(res => {
  385. // if (res.status == 200) {
  386. // this.$refs.chooseTable.refresh(true)
  387. // }
  388. // })
  389. // },
  390. // 已选产品 重置
  391. chooseResetSearchForm () {
  392. this.chooseQueryParam.productCode = ''
  393. this.chooseQueryParam.productName = ''
  394. this.$refs.chooseTable.refresh(true)
  395. },
  396. // 添加/编辑
  397. handleAdd (row, isEdit, isRefresh) {
  398. const params = {
  399. allocateReturnSn: this.$route.params.sn,
  400. productSn: row.productSn,
  401. price: isEdit ? row.price : row.productPrice,
  402. returnQty: isEdit ? row.returnQty : row.qty,
  403. cost: isEdit ? row.cost : row.lastStockCost
  404. }
  405. const fun = isEdit ? allocReturnDetailUpdate : allocReturnDetailInsert
  406. if (isEdit) { // 编辑
  407. // 清空数量时,值应保持未清空前的值,因数量不可为空
  408. if (!row.returnQty) {
  409. row.returnQty = row.qtyBackups
  410. return
  411. }
  412. if (!row.price) {
  413. row.price = row.oldPrice
  414. return
  415. }
  416. params.oldPrice = row.oldPrice
  417. params.allocateReturnDetailSn = row.allocateReturnDetailSn
  418. }
  419. this.spinning = true
  420. fun(params).then(res => {
  421. if (res.status == 200) {
  422. this.getDetail(true)
  423. this.$message.success(res.message)
  424. if (isRefresh != 'noRefresh') {
  425. this.$refs.table.refresh()
  426. }
  427. this.$refs.chooseTable.refresh()
  428. this.spinning = false
  429. } else {
  430. this.spinning = false
  431. }
  432. })
  433. },
  434. // 删除
  435. handleDel (row, isAll) {
  436. const _this = this
  437. const content = isAll ? '删除后不可恢复,确定要进行整单删除吗?' : '删除后不可恢复,确定要进行删除吗?'
  438. this.$confirm({
  439. title: '提示',
  440. content: content,
  441. centered: true,
  442. onOk () {
  443. if (isAll) { // 整单删除
  444. // allocateBillDetailDelAll({ sn: _this.$route.params.sn }).then(res => {
  445. // if (res.status == 200) {
  446. // _this.$message.success(res.message)
  447. // _this.refashPage()
  448. // }
  449. // })
  450. } else { // 单个删除
  451. allocReturnDetailDelete({
  452. allocateReturnSn: _this.$route.params.sn,
  453. allocateDetailSn: row.allocateDetailSn,
  454. price: row.price,
  455. productSn: row.productSn
  456. }).then(res => {
  457. if (res.status == 200) {
  458. _this.$message.success(res.message)
  459. _this.refashPage()
  460. }
  461. })
  462. }
  463. }
  464. })
  465. },
  466. // 提交
  467. handleSubmit () {
  468. const _this = this
  469. if (this.localDataSource.length == 0) {
  470. _this.$message.error('请先选择产品!')
  471. return
  472. }
  473. _this.spinning = true
  474. allocateReturnSubmit({ allocateReturnSn: this.$route.params.sn }).then(res => {
  475. if (res.status == 200) {
  476. this.$message.success(res.message)
  477. setTimeout(() => {
  478. _this.handleBack()
  479. _this.spinning = false
  480. }, 1000)
  481. } else {
  482. _this.spinning = false
  483. }
  484. })
  485. },
  486. // 基本信息
  487. getDetail (flag) {
  488. this.spinning = true
  489. allocateReturnQueryBySn({ allocateReturnSn: this.$route.params.sn }).then(res => {
  490. if (res.status == 200) {
  491. this.basicInfoData = res.data
  492. if (!flag) {
  493. this.resetSearchForm()
  494. }
  495. } else {
  496. this.basicInfoData = null
  497. }
  498. this.spinning = false
  499. })
  500. },
  501. // 返回列表
  502. handleBack () {
  503. this.$router.push({ name: 'transferReturnList', query: { closeLastOldTab: true } })
  504. },
  505. // 已选产品 退货数量 blur
  506. qtyBlur (val, record) {
  507. // 光标移出,值发生改变再调用编辑接口
  508. if (val != record.qtyBackups) {
  509. this.handleAdd(record, 'edit')
  510. }
  511. },
  512. // 已选产品 退货单价 change
  513. priceChange (val, record) {
  514. // 光标移出,值发生改变再调用编辑接口
  515. if (val != record.oldPrice) {
  516. this.handleAdd(record, 'edit', 'noRefresh')
  517. }
  518. },
  519. // 刷新当前页面
  520. refashPage () {
  521. this.getDetail(true)
  522. this.$refs.table.refresh()
  523. this.$refs.chooseTable.refresh()
  524. },
  525. pageInit () {
  526. this.getDetail()
  527. this.resetSearchForm()
  528. this.chooseResetSearchForm()
  529. }
  530. },
  531. mounted () {
  532. if (!this.$store.state.app.isNewTab) { // 页签刷新时调用
  533. this.pageInit()
  534. }
  535. },
  536. activated () {
  537. // 如果是新页签打开或者进入新的子页(例:存在列表第2条数据编辑页页签时再打开第4条数据的编辑页),则重置当前页面
  538. if (this.$store.state.app.isNewTab || !this.$store.state.app.isNewSubTab) {
  539. this.pageInit()
  540. }
  541. },
  542. beforeRouteEnter (to, from, next) {
  543. next(vm => {})
  544. }
  545. }
  546. </script>
  547. <style lang="less">
  548. .allocateBillEdit-wrap{
  549. position: relative;
  550. height: 100%;
  551. box-sizing: border-box;
  552. >.ant-spin-nested-loading{
  553. overflow-y: scroll;
  554. height: 100%;
  555. padding-bottom: 51px;
  556. }
  557. .allocateBillEdit-back{
  558. margin-bottom: 10px;
  559. }
  560. .allocateBillEdit-cont{
  561. margin-bottom: 10px;
  562. .sub-title{
  563. font-size: 12px;
  564. color: #808695;
  565. margin-left: 10px;
  566. }
  567. .tag-txt{
  568. font-size: 12px;
  569. color: #ed1c24;
  570. }
  571. .edit-circle-btn{
  572. margin-left: 15px;
  573. i{
  574. vertical-align: text-bottom;
  575. }
  576. }
  577. .import-btn{
  578. margin-left: 15px;
  579. }
  580. }
  581. }
  582. .allocateBill-editRemark-modal{
  583. .btn-cont{
  584. text-align: center;
  585. padding-top: 20px;
  586. }
  587. }
  588. </style>