finish_list.aspx
资源名称:web.rar [点击查看]
上传用户:xrffrp
上传日期:2022-03-25
资源大小:22155k
文件大小:8k
源码类别:
OA系统
开发平台:
ASP/ASPX
- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="finish_list.aspx.cs" Inherits="web_fair_finish_list" %>
- <!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 runat="server">
- <title>无标题页</title>
- <link href="../../css/style.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <form id="form1" runat="server">
- <div>
- <center>
- </center>
- <center>
- <asp:Label ID="LblTitle" runat="server" Text="已簽核表單" Font-Bold="True" Font-Size="Medium"></asp:Label> </center>
- <center>
- </center>
- <center>
- <asp:GridView ID="ApprovelList" runat="server" AllowPaging="True" AllowSorting="True"
- AutoGenerateColumns="False" BackColor="White" BorderColor="#CCCCCC" BorderStyle="None"
- BorderWidth="1px" CellPadding="3" DataSourceID="SqlDataSource1" OnRowCreated="ApprovelList_RowCreated"
- OnRowDataBound="ApprovelList_RowDataBound" Style="position: relative" Width="580px">
- <FooterStyle BackColor="White" ForeColor="#000066" />
- <RowStyle ForeColor="Black" />
- <Columns>
- <asp:BoundField DataField="emp_name" HeaderText="寄件者" SortExpression="emp_name" />
- <asp:TemplateField HeaderText="部門">
- <ItemTemplate>
- <asp:Label ID="LblDepartment" runat="server" Style="position: relative"></asp:Label>
- </ItemTemplate>
- </asp:TemplateField>
- <asp:BoundField DataField="apply_date" HeaderText="接收日期" SortExpression="apply_date" />
- <asp:TemplateField HeaderText="狀態">
- <ItemTemplate>
- <asp:Label ID="LblStatus" runat="server" Style="position: relative"></asp:Label>
- </ItemTemplate>
- </asp:TemplateField>
- </Columns>
- <PagerStyle BackColor="White" ForeColor="Black" HorizontalAlign="Left" />
- <SelectedRowStyle BackColor="#669999" Font-Bold="True" ForeColor="White" />
- <HeaderStyle BackColor="Menu" Font-Bold="True" ForeColor="Black" />
- </asp:GridView>
- <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:oaConnection %>"
- SelectCommand="SELECT f.id, e.emp_name, a.apply_date FROM dbo.OA_FAIR_FORM_FLOW AS f INNER JOIN dbo.OA_FAIR AS a ON f.form_id = a.id INNER JOIN dbo.OA_EMPLOYEE AS e ON a.emp_id = e.id WHERE (f.operator_id = @user_id) AND (f.is_check = 'Y') order by a.apply_date desc">
- <SelectParameters>
- <asp:SessionParameter DefaultValue="0" Name="user_id" SessionField="user_id" />
- </SelectParameters>
- </asp:SqlDataSource>
- <br />
- <asp:Table id="TblFair" Visible="false" runat="server" Width="580px">
- <asp:TableHeaderRow BackColor="menu">
- <asp:TableHeaderCell ColumnSpan="2" BorderWidth="1px" HorizontalAlign="Left">費用申請表單</asp:TableHeaderCell>
- </asp:TableHeaderRow>
- <asp:TableRow>
- <asp:TableCell BorderWidth="1px" Width="130px">單號</asp:TableCell>
- <asp:TableCell BorderWidth="1px" HorizontalAlign="Left">
- <asp:TextBox ID="TxtFormNo" runat="server" Enabled="false" Width="300px"></asp:TextBox>
- </asp:TableCell>
- </asp:TableRow>
- <asp:TableRow>
- <asp:TableCell BorderWidth="1px">申請人姓名</asp:TableCell>
- <asp:TableCell BorderWidth="1px" HorizontalAlign="Left">
- <asp:TextBox ID="TxtEmpName" runat="server" Enabled="false" Width="300px"></asp:TextBox>
- </asp:TableCell>
- </asp:TableRow>
- <asp:TableRow>
- <asp:TableCell BorderWidth="1px">申請人工號</asp:TableCell>
- <asp:TableCell BorderWidth="1px" HorizontalAlign="Left">
- <asp:TextBox ID="TxtEmpNo" runat="server" Enabled="false" Width="300px"></asp:TextBox>
- </asp:TableCell>
- </asp:TableRow>
- <asp:TableRow>
- <asp:TableCell BorderWidth="1px">申請日期</asp:TableCell>
- <asp:TableCell BorderWidth="1px" HorizontalAlign="Left">
- <asp:TextBox ID="TxtApplyDate" runat="server" Enabled="false" Width="300px"></asp:TextBox>
- </asp:TableCell>
- </asp:TableRow>
- <asp:TableRow>
- <asp:TableCell BorderWidth="1px">主旨</asp:TableCell>
- <asp:TableCell BorderWidth="1px" HorizontalAlign="Left">
- <asp:TextBox ID="TxtSubject" runat="server" Width="300px" Enabled="false"></asp:TextBox>
- </asp:TableCell>
- </asp:TableRow>
- <asp:TableRow>
- <asp:TableCell BorderWidth="1px">申請金額</asp:TableCell>
- <asp:TableCell BorderWidth="1px" HorizontalAlign="Left">
- <asp:TextBox ID="TxtAmount" runat="server" Width="300px" Enabled="false"></asp:TextBox>
- </asp:TableCell>
- </asp:TableRow>
- <asp:TableRow Visible="false">
- <asp:TableCell BorderWidth="1px">差旅單號</asp:TableCell>
- <asp:TableCell BorderWidth="1px" HorizontalAlign="Left">
- <asp:HyperLink ID="HlFormNo" runat="server"></asp:HyperLink>
- </asp:TableCell>
- </asp:TableRow>
- <asp:TableRow>
- <asp:TableCell BorderWidth="1px">備註</asp:TableCell>
- <asp:TableCell BorderWidth="1px" HorizontalAlign="Left">
- <asp:TextBox ID="TxtRemark" runat="server" Width="400px" Enabled="false" TextMode="MultiLine" Rows="5"></asp:TextBox>
- </asp:TableCell>
- </asp:TableRow>
- <asp:TableRow Visible="false">
- <asp:TableCell BorderWidth="1px">圖檔</asp:TableCell>
- <asp:TableCell BorderWidth="1px" HorizontalAlign="Left">
- <asp:Panel ID="PnlPicture" runat="server" HorizontalAlign="Left">
- </asp:Panel>
- </asp:TableCell>
- </asp:TableRow>
- </asp:Table>
- <br />
- <asp:Panel style="POSITION: relative" id="PnlDeal" runat="server" Visible="false">
- <table border="1" style="position: relative" width="580">
- <tr>
- <td align="center" style="width: 59px">
- </td>
- <td align="left">
- <asp:RadioButtonList ID="RbAgree" runat="server" AutoPostBack="True" BorderStyle="None"
- Enabled="False" RepeatDirection="Horizontal" Style="position: relative" Width="163px">
- <asp:ListItem Selected="True" Value="Y">同意</asp:ListItem>
- <asp:ListItem Value="N">不同意</asp:ListItem>
- </asp:RadioButtonList></td>
- </tr>
- <tr>
- <td align="center" style="width: 59px">
- 意見:
- </td>
- <td align="left">
- <asp:TextBox ID="TxtComment" runat="server" BorderStyle="None" Enabled="False" Rows="5"
- Style="position: relative" TextMode="MultiLine" Width="500px">已同意</asp:TextBox></td>
- </tr>
- <tr>
- <td align="center" style="width: 59px">處理日期:</td>
- <td align="left">
- <asp:TextBox ID="TxtCheckDate" runat="server" BorderStyle="None" Enabled="false"></asp:TextBox>
- </td>
- </tr>
- </table>
- </asp:Panel>
- </center>
- </div>
- </form>
- </body>
- </html>