Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.24 KB | None | 0 0
  1. <html>
  2.     <head>
  3.         <script src="<?php echo base_url(); ?>js/i18n/grid.locale-en.js"></script>
  4.         <link type="text/css" href="<?php echo base_url(); ?>style/ui.jqgrid.css" rel="stylesheet" media="screen" />
  5.         <script src="<?php echo base_url(); ?>js/jquery.jqGrid.min.js"></script>
  6.         <?php include "js/form/order-beli.php" ?>
  7.         <style>
  8.             body,table,tr,td { font-size: 11px; font-family:Verdana, Geneva, sans-serif; padding:0px;}
  9.         </style>
  10.     </head>
  11.     <body>
  12.         <h3>Order Beli</h3>
  13.         <br />
  14.         <div>
  15.             <form id="form_barang_order" action="" method="post">
  16.                 <label for="no">No Order</label>
  17.                 <input type="text" id="prefix" name="prefix" class="text ui-widget-content ui-corner-all medium ui-state-highlight" readonly="yes" size="6" value="<?php echo $prefix; ?>"/> <input type="text" id="no" name="no" class="text ui-widget-content ui-corner-all medium ui-state-highlight" readonly="yes" size="10" value="<?php echo $noorder; ?>"/>
  18.                 <br />
  19.                 <label for="id">Kode Supplier</label>
  20.                 <input type="text" id="id" name="id" class="enter text ui-widget-content ui-corner-all medium "/><span id="notice" style="display:none;">ID Supplier tidak ditemukan</span>
  21.                 <br />
  22.                 <label for="nama">Nama</label>
  23.                 <input type="text" id="nama" name="nama" class="text ui-widget-content ui-corner-all medium ui-state-highlight" readonly="yes"/>
  24.                 <br />
  25.                 <label for="alamat">Alamat</label>
  26.                 <input type="text" id="alamat" name="alamat" class="text ui-widget-content ui-corner-all medium ui-state-highlight" readonly="yes"/>
  27.                 <br />
  28.                 <label for="kota">Kota</label>
  29.                 <input type="text" id="kota" name="kota" class="text ui-widget-content ui-corner-all medium ui-state-highlight" readonly="yes"/>
  30.                 <br />
  31.             </form>
  32.         </div>
  33.         <div align="left">
  34.             <table id="list_order_beli" cellpadding="0" cellspacing="0">></table>
  35.             <div id="pager2" class="scroll" style="text-align: center;"></div>
  36.         </div>
  37.         <br />
  38.         <button id="delete">Delete</button>
  39.         <div>
  40.             <label for="barcode">Barcode</label>
  41.             <input type="text" id="barcode" name="barcode" class="enter text ui-widget-content ui-corner-all"/>
  42.             <label for="namabarang">Nama Barang</label>
  43.             <input type="text" id="namabarang" name="namabarang" class="text ui-widget-content ui-corner-all medium ui-state-highlight" readonly="yes"/>
  44.             <label for="namabarang">Harga</label>
  45.             <input type="text" id="harga" name="harga" class="text ui-widget-content ui-corner-all medium ui-state-highlight" readonly="yes"/>
  46.             <br />
  47.             <label for="qty">Qty</label>
  48.             <input type="text" id="qty" name="qty" class="enter text ui-widget-content ui-corner-all"/>
  49.             <br />
  50.         </div>
  51.         <br />
  52.         <button id="add" class="enter">Add</button> <button id="save">Save</button><button id="refresh">Refresh</button>
  53.         <div id="dialog-form" style="display: none"></div>
  54.     </body>
  55. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement