Subversion Repositories SmartDukaan

Rev

Rev 33658 | Rev 33749 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 33658 Rev 33710
Line 13... Line 13...
13
        @media print {
13
        @media print {
14
            .header dark-bg {
14
            .header dark-bg {
15
                display: none;
15
                display: none;
16
            }
16
            }
17
        }
17
        }
-
 
18
 
-
 
19
        del {
-
 
20
            text-decoration-color: red;
-
 
21
        }
18
    </style>
22
    </style>
19
</head>
23
</head>
20
 
24
 
21
 
25
 
22
<body>
26
<body>
Line 265... Line 269...
265
                        #end
269
                        #end
266
 
270
 
267
                    </tr>
271
                    </tr>
268
                    <tr>
272
                    <tr>
269
 
273
 
270
                        <td>Current charges for you</td>
274
                        <td>You pay</td>
-
 
275
                        #if($loiForm.getBrandType()=="STUDIO")
271
                        <td><b>$givenFee.getStudio()</b></td>
276
                            <td><b>$loiForm.getAgreedBrandFees()</b></td>
-
 
277
                        #else
-
 
278
                            <td><b>--</b></td>
-
 
279
                        #end
-
 
280
 
-
 
281
 
-
 
282
                        #if($loiForm.getBrandType()=="ARCADE")
272
                        <td><b>$givenFee.getArcade()</b></td>
283
                            <td><b>$loiForm.getAgreedBrandFees()</b></td>
-
 
284
                        #else
-
 
285
                            <td><b>--</b></td>
-
 
286
                        #end
-
 
287
                        #if($loiForm.getBrandType()=="PLAZA")
273
                        <td><b>$givenFee.getPlaza()</b></td>
288
                            <td><b>$loiForm.getAgreedBrandFees()</b></td>
-
 
289
                        #else
-
 
290
                            <td><b>--</b></td>
-
 
291
                        #end
274
                    </tr>
292
                    </tr>
275
                    </tbody>
293
                    </tbody>
276
                </table>
294
                </table>
277
                <hr>
295
                <hr>
278
                <b>NOTE : * as per requirement</b>
296
                <b>NOTE : * as per requirement</b>
Line 477... Line 495...
477
                        console.log("pdf- ", pdf);
495
                        console.log("pdf- ", pdf);
478
                        const file = new Blob([pdf], {type: 'application/pdf'});
496
                        const file = new Blob([pdf], {type: 'application/pdf'});
479
                        uploadDocument(file, function (documentId) {
497
                        uploadDocument(file, function (documentId) {
480
                            console.log("documentIdddd-", documentId);
498
                            console.log("documentIdddd-", documentId);
481
                            saveLoiDoc(loiId, documentId);
499
                            saveLoiDoc(loiId, documentId);
482
                            doGetAjaxRequestHandler(`${context}/pendingOnboardingForm`,
500
                            doGetAjaxRequestHandler(`${context}/pendingLoiForm`,
483
                                    function (response) {
501
                                    function (response) {
484
                                        $('#' + 'main-content').html(response);
502
                                        $('#' + 'main-content').html(response);
485
                                    });
503
                                    });
486
                        });
504
                        });
487
                    });
505
                    });