1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
| <%@ Page Language="VB" AutoEventWireup="false" CodeFile="f_sit_caisse.aspx.vb" Inherits="feuille_f_sit_caisse" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
<%@ Register Assembly="Microsoft.Web.UI.WebControls" Namespace="Microsoft.Web.UI.WebControls"
TagPrefix="iewc" %>
<%@ Register Assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
Namespace="System.Web.UI" TagPrefix="asp" %>
<!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" >
<head id="Head1" runat="server">
<title>Situation caisse</title>
<link type="text/css" href="Style/test.CSS" rel="Stylesheet" />
</head>
<body>
<div>
<form id="Form2" runat="server">
<p><strong>
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<cc1:TabContainer ID="TabContainer1" runat="server" ActiveTabIndex="0" Height="401px">
<cc1:TabPanel ID="TabPanel1" runat="server" HeaderText="Synthèses">
<ContentTemplate>
<br />
<br />
<br />
<asp:Label ID="Label1" Text="Total des recéttes en Espéces" runat="server" Width="218px" />
<asp:TextBox ID="txt_rec_esp" runat="server" Width="240px" /><br />
<br />
<asp:Label ID="Label2" Text="Total des recéttes par chéques" runat="server" Width="218px" />
<asp:TextBox ID="txt_rec_chq" runat="server" Width="240px" /><br />
<br />
<asp:Label ID="Label3" Text="Total Recettes" runat="server" Width="218px" />
<asp:TextBox ID="txt_rec" runat="server" Width="240px" /><br />
<br />
<asp:Label ID="Label4" Text="Total Dépenses" runat="server" Width="218px" />
<asp:TextBox ID="txt_sld_esp" runat="server" Width="240px" /><br />
<br />
<asp:Label ID="Label5" Text='Solde Espèce' runat="server" Width="218px" />
<asp:TextBox ID="txt_dep" runat="server" Width="240px" /><br />
<br />
<asp:Label ID="Label6" Text="Solde Chéques" runat="server" Width="218px" />
<asp:TextBox ID="txt_sld_chq" runat="server" Width="240px" /><br />
</ContentTemplate>
</cc1:TabPanel>
<cc1:TabPanel ID="TabPanel2" runat="server" HeaderText="Recettes">
<ContentTemplate>
<asp:GridView ID="data_recette" runat="server" AutoGenerateColumns="False" Height="378px" Width="1201px">
<Columns>
<asp:BoundField DataField="designation" HeaderText="Recette" />
<asp:BoundField DataField="type_mv" HeaderText="Type Mvt" />
<asp:BoundField DataField="Montant" HeaderText="Montant" />
<asp:BoundField DataField="reference_mvt" HeaderText="Reference" />
<asp:BoundField DataField="observation" HeaderText="Observation" />
<asp:BoundField DataField="n_piece" HeaderText="N° Piece" />
<asp:BoundField DataField="Banque" HeaderText="Banque" />
</Columns>
</asp:GridView>
</ContentTemplate>
</cc1:TabPanel>
<cc1:TabPanel ID="TabPanel3" runat="server" HeaderText="Dépenses">
<ContentTemplate>
<asp:GridView ID="data_depense" runat="server" AutoGenerateColumns="False" Height="370px" Width="1202px">
<Columns>
<asp:BoundField DataField="designation" HeaderText="Dépense" />
<asp:BoundField DataField="type_mv" HeaderText="Type Mvt" />
<asp:BoundField DataField="Montant" HeaderText="Montant" />
<asp:BoundField DataField="reference_mvt" HeaderText="Reference" />
<asp:BoundField DataField="observation" HeaderText="Observation" />
</Columns>
</asp:GridView>
</ContentTemplate>
</cc1:TabPanel>
</cc1:TabContainer></strong></p>
</form>
</div>
</body>
</html> |
Partager