Procházet zdrojové kódy

add receipt

master
Alex Cheung před 1 rokem
rodič
revize
c86281b476
3 změnil soubory, kde provedl 9 přidání a 2 odebrání
  1. +4
    -1
      src/pages/Payment/Details_GLD/index.js
  2. +4
    -1
      src/pages/Payment/Details_Public/index.js
  3. +1
    -0
      src/utils/ApiPathConst.js

+ 4
- 1
src/pages/Payment/Details_GLD/index.js Zobrazit soubor

@@ -53,7 +53,10 @@ const Index = () => {
}

const doPrint = () => {
window.print();
// window.print();
HttpUtils.fileDownload({
url: UrlUtils.GEN_PAYMENT_RECEIPT+"/"+params.id,
});
};

const loadForm = () => {


+ 4
- 1
src/pages/Payment/Details_Public/index.js Zobrazit soubor

@@ -54,7 +54,10 @@ const Index = () => {
}

const doPrint = () => {
window.print();
// window.print();
HttpUtils.fileDownload({
url: UrlUtils.GEN_PAYMENT_RECEIPT+"/"+params.id,
});
};




+ 1
- 0
src/utils/ApiPathConst.js Zobrazit soubor

@@ -125,6 +125,7 @@ export const GET_SMART_LOGIN = apiPath+'/smart/login'; //POST

//gen report
export const GEN_GAZETTE_PROOF = apiPath+'/proof/gazetteProof'; //POST
export const GEN_PAYMENT_RECEIPT = apiPath+'/payment/receipt'; //POST

//gen report
export const GEN_GFMIS_XML = apiPath+'/gfmis'; //GET

Načítá se…
Zrušit
Uložit