doctor-admin-components 1.0.13-beta.90 → 1.0.13-beta.91

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "doctor-admin-components",
3
3
  "version1": "1.0.11",
4
- "version": "1.0.13-beta.90",
4
+ "version": "1.0.13-beta.91",
5
5
  "private": false,
6
6
  "main1": "lib/index.umd.min.js",
7
7
  "main": "packages/index.js",
@@ -2306,6 +2306,7 @@ export default {
2306
2306
  return this.contractFileInfo.bills.filter(item => {
2307
2307
  if(item.billType == 'receipt') {
2308
2308
  item.url = item.billNo + '.pdf'
2309
+ item.fileName = 'DebitNote' + item.billNo + '.pdf'
2309
2310
  item.downloadUrl = '/bill/download?id=' + item.id
2310
2311
  return item
2311
2312
  }
@@ -2319,6 +2320,7 @@ export default {
2319
2320
  return this.contractFileInfo.bills.filter(item => {
2320
2321
  if(item.billType == 'payment') {
2321
2322
  item.url = item.billNo + '.pdf'
2323
+ item.fileName = 'CreditNote' + item.billNo + '.pdf'
2322
2324
  item.downloadUrl = '/bill/download?id=' + item.id
2323
2325
  return item
2324
2326
  }