c48972cc60
历史出库数据需要批量补录并同步形成出库申请单、出库单和库存扣减。 新增出库申请历史导入入口,按仓库、材料编码、炉号、批号、数量、 出库时间和领用单位校验模板数据,并按材料单位拆分管段/管件单据。
50 lines
2.4 KiB
Plaintext
50 lines
2.4 KiB
Plaintext
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="OutPlanMasterHistoryImport.aspx.cs" Inherits="FineUIPro.Web.CLGL.OutPlanMasterHistoryImport" %>
|
|
|
|
<!DOCTYPE html>
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head runat="server">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<title>历史出库数据导入</title>
|
|
</head>
|
|
<body>
|
|
<form id="form1" runat="server">
|
|
<f:PageManager ID="PageManager1" AutoSizePanelID="SimpleForm1" runat="server" />
|
|
<f:Form ID="SimpleForm1" ShowBorder="false" ShowHeader="false" BodyPadding="10px"
|
|
runat="server" RedStarPosition="BeforeText" LabelAlign="Right">
|
|
<Toolbars>
|
|
<f:Toolbar ID="Toolbar1" Position="Top" ToolbarAlign="Right" runat="server">
|
|
<Items>
|
|
<f:HiddenField ID="hdFileName" runat="server">
|
|
</f:HiddenField>
|
|
<f:Button ID="btnDownLoad" runat="server" Icon="ApplicationGo" ToolTip="下载模板"
|
|
Text="下载模板" OnClick="btnDownLoad_Click" EnablePostBack="true" EnableAjax="false">
|
|
</f:Button>
|
|
<f:ToolbarFill runat="server">
|
|
</f:ToolbarFill>
|
|
<f:Button ID="btnImport" Icon="ApplicationGet" runat="server" ToolTip="导入"
|
|
Text="导入" ValidateForms="SimpleForm1" OnClick="btnImport_Click">
|
|
</f:Button>
|
|
</Items>
|
|
</f:Toolbar>
|
|
</Toolbars>
|
|
<Rows>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:FileUpload runat="server" ID="fuAttachUrl" EmptyText="选择要导入的文件"
|
|
Label="选择要导入的文件" LabelWidth="150px">
|
|
</f:FileUpload>
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:Label runat="server" ID="lblTip" EncodeText="false"
|
|
Text="模板列:仓库、材料编码、炉号、批号、数量、出库时间、领用单位。导入后会按材料单位自动拆分管段/管件单据,并直接生成出库单扣减对应仓库的库存。">
|
|
</f:Label>
|
|
</Items>
|
|
</f:FormRow>
|
|
</Rows>
|
|
</f:Form>
|
|
</form>
|
|
</body>
|
|
</html>
|