You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
2.2 KiB
Plaintext
75 lines
2.2 KiB
Plaintext
2 years ago
|
<%@ Page Title="" Language="C#" MasterPageFile="~/Areas/MvcShipping/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<dynamic>" %>
|
||
|
|
||
|
|
||
|
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
|
||
|
|
||
|
<script type="text/javascript">
|
||
|
var GID;
|
||
|
function getSessgion1() {
|
||
|
GID = '<%= Session["USERID"] %>';
|
||
|
}
|
||
|
getSessgion1();
|
||
|
|
||
|
var usercode;
|
||
|
function getSessgion2() {
|
||
|
usercode = '<%= Session["CODENAME"] %>';
|
||
|
}
|
||
|
getSessgion2();
|
||
|
|
||
|
var SHOWNAME;
|
||
|
function getSessgion3() {
|
||
|
SHOWNAME = '<%= Session["SHOWNAME"] %>';
|
||
|
}
|
||
|
getSessgion3();
|
||
|
|
||
|
var COMPANYID;
|
||
|
function getSessgion4() {
|
||
|
COMPANYID = '<%=Session["COMPANYID"] %>';
|
||
|
}
|
||
|
getSessgion4();
|
||
|
|
||
|
var DEPTNAME;
|
||
|
function getSessgion5() {
|
||
|
DEPTNAME = '<%= Session["DEPTNAME"] %>';
|
||
|
}
|
||
|
getSessgion5();
|
||
|
</script>
|
||
|
|
||
|
<script type="text/javascript" src="../../../../Areas/MvcShipping/Viewsjs/MsCodeAirPort/MsCodeAirPortModel.js"></script>
|
||
|
|
||
|
<script type="text/javascript" src="../../../../Areas/MvcShipping/Viewsjs/MsOpAirn/MsOpAirnModel.js"></script>
|
||
|
<script type="text/javascript" src="../../../../Areas/MvcShipping/Viewsjs/MsOpAirn/MsOpBillModel.js"></script>
|
||
|
<script type="text/javascript" src="../../../../Areas/MvcShipping/Viewsjs/MsOpAirn/MsOpBillEdit.js"></script>
|
||
|
<script type="text/javascript" src="../../../../Areas/MvcShipping/Viewsjs/MsOpAirn/PiLiangOpBill.js"></script>
|
||
|
|
||
|
|
||
|
|
||
|
<script type="text/javascript">
|
||
|
var pnl = null;
|
||
|
Ext.onReady(function () {
|
||
|
Ext.QuickTips.init();
|
||
|
Ext.form.Field.prototype.msgTarget = 'side';
|
||
|
pnl = new Shipping.PiliangOpBill({ layout: 'border', region: 'center' });
|
||
|
|
||
|
var view = new Ext.Viewport({
|
||
|
layout: 'border',
|
||
|
renderTo: 'viewport',
|
||
|
border: false,
|
||
|
items: [{
|
||
|
region: 'center',
|
||
|
layout: 'fit',
|
||
|
items: [pnl]
|
||
|
}]
|
||
|
});
|
||
|
});
|
||
|
|
||
|
function getSaved() {
|
||
|
return pnl.getIsModify();
|
||
|
}
|
||
|
</script>
|
||
|
</asp:Content>
|
||
|
|
||
|
<asp:Content ID="Content2" ContentPlaceHolderID="head" runat="server">
|
||
|
<div id="viewport" ></div>
|
||
|
</asp:Content>
|