NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io

<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:pt="http://xmlns.jcp.org/jsf/passthrough"
xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:p="http://primefaces.org/ui">
<h:head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>

<title>ERP JAVA| Siparis Olustur</title>

<ui:include src="../../../sablon/stiller.xhtml"></ui:include>
<link href="../../../resources/font-awesome/css/font-awesome.css" rel="stylesheet"/>
<ui:include src="../../../sablon/scriptler.xhtml"></ui:include>

</h:head>
<h:body>

<div id="wrapper">

<ui:include src="../../../sablon/adminustmenu.xhtml"></ui:include>

<div id="page-wrapper" class="gray-bg">
<ui:include src="../../../sablon/ustmenu.xhtml"></ui:include>

<div class="row wrapper border-bottom white-bg page-heading">
<div class="col-lg-10">
<h2>Yeni Sipariş Oluştur</h2>
<ol class="breadcrumb">
<li>
<a href="index.html">Anasayfa</a>
</li>
<li>
<a>Yeni Sipariş Oluştur</a>
</li>
</ol>
</div>
<div class="col-lg-2">

</div>
</div>
<div class="wrapper wrapper-content animated fadeInRight">
<div class="row">
<div class="col-lg-12">
<div class="ibox float-e-margins">
<div class="ibox-title">
<h5>Sipariş Oluştur <small>With custom checbox and radion elements.</small></h5>
<div class="ibox-tools">
<a class="collapse-link">
<i class="fa fa-chevron-up"></i>
</a>
<a class="close-link">
<i class="fa fa-times"></i>
</a>
</div>
</div>
<div class="ibox-content">
<h:form class="form-horizontal">
<div class="form-group"><label class="col-sm-2 control-label">Sipariş Numarası </label>
<div class="col-sm-6"><h:inputText value="#{siparisEkleBean.siparis.siparisNo}" pt:type="text" class="form-control"/></div>
</div>

<div class="form-group"><label class="col-sm-2 control-label">Sipariş Açıklama </label>
<div class="col-sm-6"><h:inputText value="#{siparisEkleBean.siparis.aciklama}" pt:type="text" class="form-control"/></div>
</div>

<div class="form-group"><label class="col-sm-2 control-label">Müşteri Tedarikçi </label>
<div class="col-sm-6">
<h:selectOneMenu value="#{siparisEkleBean.siparis.musteriTedarikciId}" class="form-control" converter="#{musteriTedarikciConverter}">
<f:selectItems value="#{siparisEkleBean.musteriTedarikciListe}" var="mT" itemValue="#{mT}" itemLabel="#{mT.firmaTuru}" />
</h:selectOneMenu>
</div>
</div>
<div class="form-group"><label class="col-sm-2 control-label">Sipariş Durumu </label>
<div class="col-sm-6">
<h:selectOneMenu class="form-control" value="#{siparisEkleBean.siparis.durum}">
<f:selectItem itemLabel="Hiçbiri" itemValue="Hiçbiri" />
<f:selectItem itemLabel="Beklemede" itemValue="Beklemede" />
<f:selectItem itemLabel="Başarılı" itemValue="Başarılı" />
<f:selectItem itemLabel="İptal" itemValue="İptal" />
</h:selectOneMenu>
</div>
</div>
<div class="form-group"><label class="col-sm-2 control-label">Toplam Tutar </label>
<div class="col-sm-6">
<h:outputText value="#{siparisEkleBean.toplam_tutar}" pt:type="text" class="form-control"></h:outputText>
</div>
</div>

<h:panelGrid id="panelSatir" class="col-lg-12">
<h:dataTable value="#{siparisEkleBean.siparisSatirEkleListesi}" class="form-group col-lg-12" var="satir">
<h:column>
<div class="hr-line-dashed"></div>
<label class="col-sm-1 control-label">Ürün Seç </label>
<div class="col-sm-2">
<h:selectOneMenu value="#{satir.stokKalemleriId}" class="form-control" converter="#{stokKalemleriConverter}">
<f:selectItems value="#{siparisEkleBean.stokListesi}" var="s" itemValue="#{s}" itemLabel="#{s.adi}" />
</h:selectOneMenu>
</div>

<label class="col-sm-1 control-label">Miktar </label>
<div class="col-sm-2"><h:inputText value="#{satir.miktar}" pt:type="text" class="form-control"></h:inputText>
</div>
<label class="col-sm-1 control-label">Birim Fiyatı </label>
<div class="col-sm-2">
<h:inputText value="#{satir.birimFiyati}" pt:type="text" class="form-control"></h:inputText>
</div>

<label class="col-sm-1 control-label">Ölçü Birimi </label>
<div class="col-sm-2">
<h:selectOneMenu value="#{satir.olcuBirimiKod}" class="form-control" >
<f:selectItems value="#{siparisEkleBean.olcuBirimiListesi}" var="oB" itemValue="#{oB.kod}" itemLabel="#{oB.adi}" />
</h:selectOneMenu>
</div>

<!-- <label class="col-sm-1 control-label">İskonto Oranları </label>
<div class="col-sm-2">
<h:selectOneMenu value="#{satir.iskontoOrani}" class="form-control">
<f:selectItem itemLabel="Hiçbiri" itemValue="Hiçbiri" />
<f:selectItem itemLabel="0.1" itemValue="0.1" />
<f:selectItem itemLabel="0.2" itemValue="0.2" />
<f:selectItem itemLabel="0.3" itemValue="0.3" />
</h:selectOneMenu>
</div>-->
<label class="col-sm-1 control-label">İskonto Oranı </label>
<div class="col-sm-2">

<h:inputText value="#{satir.iskontoOrani}" pt:type="text" class="form-control"></h:inputText>
</div>
<label class="col-sm-1 control-label">İskonto Tutarı </label>
<div class="col-sm-2">
<h:outputText value="#{satir.iskontoTutari}" pt:type="text" class="form-control"></h:outputText>
</div>
<!-- <label class="col-sm-1 control-label">Kdv Oranları </label>
<div class="col-sm-2">
<h:selectOneMenu value="#{satir.kdvOranı}" class="form-control">
<f:selectItem itemLabel="Hiçbiri" itemValue="Hiçbiri" />
<f:selectItem itemLabel="1" itemValue="1" />
<f:selectItem itemLabel="8" itemValue="8" />
<f:selectItem itemLabel="18" itemValue="18" />
</h:selectOneMenu>
</div>-->


<label class="col-sm-1 control-label">Kdv Oranı </label>
<div class="col-sm-2">
<h:inputText value="#{satir.kdvOranı}" pt:type="text" class="form-control"></h:inputText>
</div>
<label class="col-sm-1 control-label">Kdv Tutarı </label>
<div class="col-sm-2">
<h:outputText value="#{satir.kdvTutarı}" pt:type="text" class="form-control"></h:outputText>
</div>

<label class="col-sm-1 control-label">Para Birimleri </label>
<div class="col-sm-2">
<h:selectOneMenu value="#{satir.paraBirimi}" class="form-control">

<f:selectItem itemLabel="TL" itemValue="TL" />
<f:selectItem itemLabel="Dolar" itemValue="Dolar" />
<f:selectItem itemLabel="Euro" itemValue="Euro" />
</h:selectOneMenu>
</div>

<label class="col-sm-1 control-label">Tutar </label>
<div class="col-sm-2">
<h:outputText value="#{satir.tutar}" pt:type="text" class="form-control"></h:outputText>
</div>

<label class="col-sm-1 control-label"> </label>
<div class="col-sm-2">
<h:commandButton value="Kaldır" class="btn btn-danger" action="#{siparisEkleBean.itemKaldir(satir)}" >
</h:commandButton>
</div>
<div class="col-sm-2">
<h:commandButton value="Hesapla" class="btn btn-danger" action="#{satir.tumHesaplamalar()}" >
</h:commandButton>
</div>
</h:column>
</h:dataTable>



<div class="form-group">
<div class="col-sm-6">
<h:commandButton class="btn btn-success" value="Ürün Ekle" action="#{siparisEkleBean.itemEkle()}">
</h:commandButton>
</div>
</div>
</h:panelGrid>

<div class="form-group">
<h:button class="btn btn-white" outcome="GonderilenSiparisIndex" value="Iptal"></h:button>
<div class="col-sm-6 col-sm-offset-2">

<h:commandButton class="btn btn-primary" style="float: right" action="#{siparisEkleBean.siparisEkle()}" type="submit" value="Ekle"></h:commandButton>

</div>
</div>
</h:form>
</div>
</div>
</div>
</div>
</div>
<div class="footer">
<div class="pull-right">
</div>
<div>
<strong>Java</strong> ERP &copy; 2016-2017
</div>
</div>
</div>

</div>

<script>
$(document).ready(function () {


$('#data_1 .input-group.date').datepicker({
todayBtn: "linked",
keyboardNavigation: false,
forceParse: false,
calendarWeeks: true,
autoclose: true
});

});

</script>
</h:body>
</html>

     
 
what is notes.io
 

Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...

With notes.io;

  • * You can take a note from anywhere and any device with internet connection.
  • * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
  • * You can quickly share your contents without website, blog and e-mail.
  • * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
  • * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.

Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.

Easy: Notes.io doesn’t require installation. Just write and share note!

Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )

Free: Notes.io works for 12 years and has been free since the day it was started.


You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;


Email: [email protected]

Twitter: http://twitter.com/notesio

Instagram: http://instagram.com/notes.io

Facebook: http://facebook.com/notesio



Regards;
Notes.io Team

     
 
Shortened Note Link
 
 
Looding Image
 
     
 
Long File
 
 

For written notes was greater than 18KB Unable to shorten.

To be smaller than 18KB, please organize your notes, or sign in.