mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 01:47:32 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			246 lines
		
	
	
		
			8.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			246 lines
		
	
	
		
			8.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| @extends('header')
 | |
| 
 | |
| @section('head')
 | |
| 	@parent
 | |
| 
 | |
|     @include('money_script')
 | |
|         <link href="{{ asset('css/jsoneditor.min.css') }}" rel="stylesheet" type="text/css">
 | |
|         <script src="{{ asset('js/jsoneditor.min.js') }}" type="text/javascript"></script>
 | |
| 
 | |
|     @foreach ($account->getFontFolders() as $font)
 | |
|         <script src="{{ asset('js/vfs_fonts/'.$font.'.js') }}" type="text/javascript"></script>
 | |
|     @endforeach
 | |
|         <script src="{{ asset('pdf.built.js') }}" type="text/javascript"></script>
 | |
| 
 | |
|       <style type="text/css">
 | |
| 
 | |
|         select.form-control {
 | |
|             background: #FFFFFF !important;        
 | |
|             margin-right: 12px;
 | |
|         }
 | |
|         table {
 | |
|             background: #FFFFFF !important;        
 | |
|         }
 | |
| 
 | |
|         /* http://stackoverflow.com/questions/4810841/how-can-i-pretty-print-json-using-javascript */
 | |
|         pre {outline: 1px solid #ccc; padding: 5px; margin: 5px; }
 | |
|         .string { color: green; }
 | |
|         .number { color: red; }
 | |
|         .boolean { color: blue; }
 | |
|         .null { color: gray; }
 | |
|         .key { color: black; }
 | |
| 
 | |
|       </style>
 | |
| 
 | |
| @stop
 | |
| 
 | |
| @section('content')	
 | |
|     @parent
 | |
| 
 | |
|   <script>
 | |
|     var invoiceDesigns = {!! $invoiceDesigns !!};
 | |
|     var invoiceFonts = {!! $invoiceFonts !!};
 | |
|     var invoice = {!! json_encode($invoice) !!};      
 | |
|     var sections = ['content', 'styles', 'defaultStyle', 'pageMargins', 'header', 'footer'];
 | |
|     var customDesign = origCustomDesign = {!! $customDesign ?: 'JSON.parse(invoiceDesigns[0].javascript);' !!};
 | |
| 
 | |
|     function getPDFString(cb, force) {
 | |
|       invoice.is_pro = {!! Auth::user()->isPro() ? 'true' : 'false' !!};
 | |
|       invoice.account.hide_quantity = {!! Auth::user()->account->hide_quantity ? 'true' : 'false' !!};
 | |
|       invoice.account.hide_paid_to_date = {!! Auth::user()->account->hide_paid_to_date ? 'true' : 'false' !!};
 | |
|       invoice.invoice_design_id = {!! Auth::user()->account->invoice_design_id !!};
 | |
| 
 | |
|       NINJA.primaryColor = '{!! Auth::user()->account->primary_color !!}';
 | |
|       NINJA.secondaryColor = '{!! Auth::user()->account->secondary_color !!}';
 | |
|       NINJA.fontSize = {!! Auth::user()->account->font_size !!};
 | |
|       NINJA.headerFont = {!! json_encode(Auth::user()->account->getHeaderFontName()) !!};
 | |
|       NINJA.bodyFont = {!! json_encode(Auth::user()->account->getBodyFontName()) !!};
 | |
| 
 | |
|       generatePDF(invoice, getDesignJavascript(), force, cb);
 | |
|     }
 | |
| 
 | |
|     function getDesignJavascript() {
 | |
|       var id = $('#invoice_design_id').val();
 | |
|       if (id == '-1') {
 | |
|         showMoreDesigns(); 
 | |
|         $('#invoice_design_id').val(1);
 | |
|         return invoiceDesigns[0].javascript;        
 | |
|       } else if (customDesign) {
 | |
|         return JSON.stringify(customDesign);
 | |
|       } else {
 | |
|         return invoiceDesigns[0].javascript;
 | |
|       }
 | |
|     }
 | |
| 
 | |
|     function loadEditor(section)
 | |
|     {
 | |
|         editorSection = section;
 | |
|         editor.set(customDesign[section]);
 | |
| 
 | |
|         // the function throws an error if the editor is in code view
 | |
|         try {
 | |
|             editor.expandAll();            
 | |
|         } catch(err) {}
 | |
|     }    
 | |
| 
 | |
|     function saveEditor(data)
 | |
|     {        
 | |
|         setTimeout(function() {
 | |
|             customDesign[editorSection] = editor.get();
 | |
|             clearError();
 | |
|             refreshPDF();
 | |
|         }, 100)
 | |
|     }
 | |
| 
 | |
|     function onSelectChange()
 | |
|     {
 | |
|         var id = $('#invoice_design_id').val();        
 | |
|         if (parseInt(id)) {
 | |
|             var design = _.find(invoiceDesigns, function(design){ return design.id == id});
 | |
|             customDesign = JSON.parse(design.javascript);
 | |
|         } else {
 | |
|             customDesign = origCustomDesign;
 | |
|         }
 | |
| 
 | |
|         loadEditor(editorSection);
 | |
|         clearError();
 | |
|         refreshPDF(true);
 | |
|     }
 | |
| 
 | |
|     function submitForm()
 | |
|     {
 | |
|         if (!NINJA.isPDFValid) {
 | |
|             return;
 | |
|         }
 | |
| 
 | |
|         $('#custom_design').val(JSON.stringify(customDesign));
 | |
|         $('form.warn-on-exit').submit();
 | |
|     }
 | |
| 
 | |
|     window.onerror = function(e) {
 | |
|         $('#pdf-error').html(e.message ? e.message : e).show();
 | |
|         $('button.save-button').prop('disabled', true);
 | |
|         NINJA.isPDFValid = false;
 | |
|     }
 | |
| 
 | |
|     function clearError() {
 | |
|         NINJA.isPDFValid = true;
 | |
|         $('#pdf-error').hide();
 | |
|         $('button.save-button').prop('disabled', false);
 | |
|     }
 | |
| 
 | |
|     $(function() {
 | |
|        clearError();
 | |
|       
 | |
|         var container = document.getElementById("jsoneditor");
 | |
|           var options = {
 | |
|             mode: 'form',
 | |
|             modes: ['form', 'code'],
 | |
|             change: function() {
 | |
|               saveEditor();
 | |
|             }
 | |
|           };
 | |
|         window.editor = new JSONEditor(container, options);
 | |
|         loadEditor('content');
 | |
|         
 | |
|         $('a[data-toggle="tab"]').on('shown.bs.tab', function (e) {
 | |
|           var target = $(e.target).attr("href") // activated tab
 | |
|           target = target.substring(1); // strip leading #
 | |
|           loadEditor(target);
 | |
|         });
 | |
| 
 | |
|         refreshPDF(true);
 | |
| 
 | |
|         @if (isset($sampleInvoice) && $sampleInvoice)
 | |
|             var sample = {!! $sampleInvoice->toJSON() !!}
 | |
|             console.log(sample);
 | |
|             $('#sampleData').show().html(prettyJson(sample));
 | |
|         @endif
 | |
|     });
 | |
| 
 | |
|   </script> 
 | |
| 
 | |
| 
 | |
|   <div class="row">
 | |
|     <div class="col-md-6">
 | |
| 
 | |
|       {!! Former::open()->addClass('warn-on-exit') !!}      
 | |
|       {!! Former::populateField('invoice_design_id', $account->invoice_design_id) !!}
 | |
| 
 | |
|         <div style="display:none">
 | |
|             {!! Former::text('custom_design') !!}
 | |
|         </div>
 | |
| 
 | |
| 
 | |
|       <div role="tabpanel">
 | |
|         <ul class="nav nav-tabs" role="tablist" style="border: none">
 | |
|             <li role="presentation" class="active"><a href="#content" aria-controls="content" role="tab" data-toggle="tab">{{ trans('texts.content') }}</a></li>
 | |
|             <li role="presentation"><a href="#styles" aria-controls="styles" role="tab" data-toggle="tab">{{ trans('texts.styles') }}</a></li>
 | |
|             <li role="presentation"><a href="#defaultStyle" aria-controls="defaultStyle" role="tab" data-toggle="tab">{{ trans('texts.defaults') }}</a></li>
 | |
|             <li role="presentation"><a href="#pageMargins" aria-controls="margins" role="tab" data-toggle="tab">{{ trans('texts.margins') }}</a></li>
 | |
|             <li role="presentation"><a href="#header" aria-controls="header" role="tab" data-toggle="tab">{{ trans('texts.header') }}</a></li>
 | |
|             <li role="presentation"><a href="#footer" aria-controls="footer" role="tab" data-toggle="tab">{{ trans('texts.footer') }}</a></li>
 | |
|         </ul>
 | |
|     </div>
 | |
|     <div id="jsoneditor" style="width: 550px; height: 743px;"></div>
 | |
|     <p> </p>
 | |
| 
 | |
|     <div>
 | |
|     {!! Former::select('invoice_design_id')->style('display:inline;width:120px')->fromQuery($invoiceDesigns, 'name', 'id')->onchange('onSelectChange()')->raw() !!}
 | |
|     <div class="pull-right">
 | |
|         {!! Button::normal(trans('texts.help'))->withAttributes(['onclick' => 'showHelp()'])->appendIcon(Icon::create('question-sign')) !!}
 | |
|         {!! Button::normal(trans('texts.cancel'))->asLinkTo(URL::to('/settings/invoice_design'))->appendIcon(Icon::create('remove-circle')) !!}
 | |
|         {!! Button::success(trans('texts.save'))->withAttributes(['onclick' => 'submitForm()'])->appendIcon(Icon::create('floppy-disk'))->withAttributes(['class' => 'save-button']) !!}
 | |
|     </div>
 | |
|     </div>
 | |
| 
 | |
|       <script>
 | |
|       @if (!Auth::user()->isPro())
 | |
|         $(function() {   
 | |
|             $('form.warn-on-exit input, .save-button').prop('disabled', true);
 | |
|         });
 | |
|       @endif
 | |
| 
 | |
|         function showHelp() {            
 | |
|             $('#helpModal').modal('show');   
 | |
|         }   
 | |
| 
 | |
|       </script> 
 | |
| 
 | |
|       {!! Former::close() !!}
 | |
| 
 | |
| 
 | |
|     <div class="modal fade" id="helpModal" tabindex="-1" role="dialog" aria-labelledby="helpModalLabel" aria-hidden="true">
 | |
|       <div class="modal-dialog">
 | |
|         <div class="modal-content">
 | |
|           <div class="modal-header">
 | |
|             <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
 | |
|             <h4 class="modal-title" id="helpModalLabel">{{ trans('texts.help') }}</h4>
 | |
|           </div>
 | |
| 
 | |
|           <div class="panel-body" style="background-color: #fff">
 | |
|             {!! trans('texts.customize_help') !!}
 | |
| 
 | |
|             <pre id="sampleData" style="display:none;height:200px;padding-top:16px;"></pre>
 | |
|           </div>
 | |
| 
 | |
|          <div class="modal-footer" style="margin-top: 0px">
 | |
|             <button type="button" class="btn btn-default" data-dismiss="modal">{{ trans('texts.close') }}</button>            
 | |
|          </div>
 | |
|             
 | |
|         </div>
 | |
|       </div>
 | |
|     </div>
 | |
| 
 | |
| 
 | |
| 
 | |
|     </div>
 | |
|     <div class="col-md-6">
 | |
|       <div id="pdf-error" class="alert alert-danger" style="display:none"></div>
 | |
| 
 | |
|       @include('invoices.pdf', ['account' => Auth::user()->account, 'pdfHeight' => 800])
 | |
| 
 | |
|     </div>
 | |
|   </div>
 | |
| 
 | |
| @stop |