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">
<h:head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>

<title>ERP JAVA| Satış 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 Satış Oluştur</h2>
<ol class="breadcrumb">
<li>
<a href="index.html">Anasayfa</a>
</li>
<li>
<a>Yeni Satış 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>Satış 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">Satış Numarası </label>
<div class="col-sm-6"><h:inputText value="#{satisEkleBean.satis.satisNo}" pt:type="text" class="form-control"/></div>
</div>
<div class="hr-line-dashed"></div>
<div class="form-group"><label class="col-sm-2 control-label">Açıklama </label>
<div class="col-sm-6"><h:inputText value="#{satisEkleBean.satis.aciklama}" pt:type="text" class="form-control"/></div>
</div>
<div class="hr-line-dashed"></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="#{satisEkleBean.satis.musteriTedarikciId}" class="form-control" converter="#{musteriTedarikciConverter}">
<f:selectItems value="#{satisEkleBean.musteriTedarikciListe}" var="mT" itemValue="#{mT}" itemLabel="#{mT.unvan}" />
</h:selectOneMenu>
</div>
</div>
<div class="hr-line-dashed"></div>
<div class="form-group"><label class="col-sm-2 control-label">Durum </label>
<div class="col-sm-6">
<h:selectOneMenu value="#{satisEkleBean.satis.durum}" class="form-control" converter="#{durumConverter}">
<f:selectItems value="#{satisEkleBean.durumListesi}" var="d" itemValue="#{d}" itemLabel="#{d.adi}" />
</h:selectOneMenu>
</div>
</div>
<h:panelGrid id="panelSatir" class="col-lg-12">
<h:dataTable value="#{satisEkleBean.satisSatirEkleListe}" class="form-group col-lg-12" var="satir">
<h:column>
<div class="hr-line-dashed"></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">Ölçü Birimi </label>
<div class="col-sm-2">
<h:selectOneMenu value="#{satir.olcuBirimiKod}" class="form-control" converter="#{olcuBirimiConverter}">
<f:selectItems value="#{satisEkleBean.olcuBirimiListesi}" var="oB" itemValue="#{oB}" itemLabel="#{oB.adi}" />
</h:selectOneMenu>
</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="#{satisEkleBean.stokListesi}" var="s" itemValue="#{s}" itemLabel="#{s.adi}" />
</h:selectOneMenu>
</div>
<label class="col-sm-1 control-label"> </label>
<div class="col-sm-2">
<h:commandButton value="Kaldır" class="btn btn-danger" action="#{satisEkleBean.itemKaldir(satir)}" >
</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="#{satisEkleBean.itemEkle()}">
</h:commandButton>
</div>
</div>
</h:panelGrid>

<div class="form-group">
<div class="col-sm-6 col-sm-offset-2">
<h:commandButton class="btn btn-white" style="float: right" type="submit" value="Geri"></h:commandButton>
<h:commandButton class="btn btn-primary" style="float: right" action="#{satisEkleBean.satisEkle()}" type="submit" value="Ekle"></h:commandButton>
<h:commandButton class="btn btn-danger" style="float: right" action="#{gidenFaturaBean.gidenFatura()}" type="submit" value="FATURA OLUŞTUR"></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.