editGrp.vue 23 KB

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