Advertisement
ronikuchan

backup PaketMitraShow

Dec 26th, 2019
405
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.72 KB | None | 0 0
  1. <div className="row clearfix">
  2.                                     <div className="col-lg-2 col-md-2 col-sm-4 col-xs-5 form-control-label">
  3.                                         <label>Detail Paket </label>
  4.                                     </div>
  5.                                     <br/>
  6.                                     <div className="col-lg-6 col-md-6 col-sm-6 col-xs-6">
  7.                                         <p>Untuk Menghapus Produk dari paket, Ketik 0 di kolom jumlah</p>
  8.                                     </div>
  9.                                     <div className="col-lg-12 col-md-12 col-sm-12 col-xs-12">
  10.                                         <div className="body table-responsive">
  11.                                             <table className="table">
  12.                                                 <thead>
  13.                                                     <tr>
  14.                                                         <th>Nama Produk</th>
  15.                                                         <th>Jumlah</th>
  16.                                                         {/* <th>Unset Jumlah</th> */}
  17.                                                         <th>Harga Jual</th>
  18.                                                         <th>Harga Keseluruhan</th>
  19.                                                     </tr>
  20.                                                 </thead>
  21.                                                 <tbody>
  22.                                                     {
  23.                                                         this.state.detailProducts.map((item,i) =>
  24.                                                             <tr key={i}>
  25.                                                                 <td>{item.name}</td>
  26.                                                                 <td>
  27.                                                                     {item.jumlah}
  28.                                                                     {/* <input type="text" name="jumlah" value={item.jumlah} id="jumlah" className="form-control" required/> */}
  29.                                                                 </td>
  30.                                                                 {/* <td>
  31.                                                                     <input type="number" name="jumlah" id="jumlah" className="form-control" required/>
  32.                                                                 </td> */}
  33.                                                                 <td>{formatterPrice(item.harga_jual)}</td>
  34.                                                                 <td>{formatterPrice(item.jumlah * item.harga_jual)}</td>
  35.                                                             </tr>
  36.                                                         )
  37.                                                     }
  38.                                                     {/* {
  39.                                                         this.state.detailProducts.map((item,i) =>
  40.                                                             <li key={i}>{ item.name } jumlah { item.jumlah }</li>
  41.                                                         )
  42.                                                     } */}
  43.                                                 </tbody>
  44.                                             </table>
  45.                                         </div>
  46.                                     </div>
  47.                                 </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement