Procházet zdrojové kódy

资产调拨、验收打印明细时间改为申请时间

金隅分支
zhangli před 3 roky
rodič
revize
ef81a1a01f
7 změnil soubory, kde provedl 23 přidání a 8 odebrání
  1. +3
    -1
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_Acceptance/Form.js
  2. +3
    -2
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_Acceptance/FormView.js
  3. +5
    -1
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_Acceptance/Print.cshtml
  4. +3
    -1
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/AssetsFormView.js
  5. +3
    -1
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/Form.js
  6. +3
    -1
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/FormView.js
  7. +3
    -1
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/Print.cshtml

+ 3
- 1
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_Acceptance/Form.js Zobrazit soubor

@@ -266,10 +266,12 @@ var bootstrap = function ($, learun) {

//打印
$('#detailprint').on('click', function () {
var createTime = $('#CreateTime').val();
createTime = learun.formatDate(createTime, 'yyyy-MM-dd');
learun.layerForm({
id: 'print',
title: '北京金隅科技学校固定资产验收单',
url: top.$.rootUrl + '/AssetManagementSystem/Ass_Acceptance/Print',
url: top.$.rootUrl + '/AssetManagementSystem/Ass_Acceptance/Print?createTime=' + createTime,
width: 1100,
height: 800,
btn: null


+ 3
- 2
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_Acceptance/FormView.js Zobrazit soubor

@@ -256,11 +256,12 @@ var bootstrap = function ($, learun) {

//打印
$('#detailprint').on('click', function () {
console.log(ProcessId);
var createTime = $('#CreateTime').val();
createTime = learun.formatDate(createTime, 'yyyy-MM-dd');
learun.layerForm({
id: 'print',
title: '北京金隅科技学校固定资产验收单',
url: top.$.rootUrl + '/AssetManagementSystem/Ass_Acceptance/Print?keyValue=' + keyValue + '&ProcessId=' + ProcessId,
url: top.$.rootUrl + '/AssetManagementSystem/Ass_Acceptance/Print?keyValue=' + keyValue + '&ProcessId=' + ProcessId + '&createTime=' + createTime,
width: 1100,
height: 800,
btn: null


+ 5
- 1
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_Acceptance/Print.cshtml Zobrazit soubor

@@ -14,7 +14,7 @@
<div class="tableT">北京金隅科技学校固定资产验收单</div>
<div>
<span>项目名称:<span id="name"></span></span>
<span style="margin-right: 20px;float: right;">日期:@ViewBag.Date</span>
<span style="margin-right: 20px;float: right;">日期:<span id="time"></span></span>
</div>
<table class="table">
<tr>
@@ -85,6 +85,10 @@

}
}

var createTime = getQueryString('createTime');
$('#time').text(createTime);

var ProcessId = getQueryString('ProcessId');
if (ProcessId) {
TaskLogData = top.learun.httpGet(


+ 3
- 1
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/AssetsFormView.js Zobrazit soubor

@@ -116,10 +116,12 @@ var bootstrap = function ($, learun) {

//打印
$('#detailprint').on('click', function () {
var createTime = $('#AOCreateTime').val();
createTime = learun.formatDate(createTime, 'yyyy-MM-dd');
learun.layerForm({
id: 'print',
title: '固定资产调拨单',
url: top.$.rootUrl + '/AssetManagementSystem/Ass_AssetsOutApply/Print?keyValue=' + keyValue + '&AOProcessId=' + AOProcessId,
url: top.$.rootUrl + '/AssetManagementSystem/Ass_AssetsOutApply/Print?keyValue=' + keyValue + '&AOProcessId=' + AOProcessId + '&createTime=' + createTime,
width: 1100,
height: 800,
btn: null


+ 3
- 1
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/Form.js Zobrazit soubor

@@ -263,10 +263,12 @@ var bootstrap = function ($, learun) {

//打印
$('#detailprint').on('click', function () {
var createTime = $('#AOCreateTime').val();
createTime = learun.formatDate(createTime, 'yyyy-MM-dd');
learun.layerForm({
id: 'print',
title: '固定资产调拨单',
url: top.$.rootUrl + '/AssetManagementSystem/Ass_AssetsOutApply/Print',
url: top.$.rootUrl + '/AssetManagementSystem/Ass_AssetsOutApply/Print?createTime=' + createTime,
width: 1100,
height: 800,
btn: null


+ 3
- 1
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/FormView.js Zobrazit soubor

@@ -45,10 +45,12 @@ var bootstrap = function ($, learun) {

//打印
$('#detailprint').on('click', function () {
var createTime = $('#AOCreateTime').val();
createTime = learun.formatDate(createTime, 'yyyy-MM-dd');
learun.layerForm({
id: 'print',
title: '固定资产调拨单',
url: top.$.rootUrl + '/AssetManagementSystem/Ass_AssetsOutApply/Print?keyValue=' + keyValue + '&AOProcessId=' + AOProcessId,
url: top.$.rootUrl + '/AssetManagementSystem/Ass_AssetsOutApply/Print?keyValue=' + keyValue + '&AOProcessId=' + AOProcessId + '&createTime=' + createTime,
width: 1100,
height: 800,
btn: null


+ 3
- 1
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/Print.cshtml Zobrazit soubor

@@ -14,7 +14,7 @@
<div class="tableT">固定资产调拨单</div>
<div>
@*<span>项目名称:<span id="name"></span></span>*@
<span style="margin-right: 20px;float: right;">日期:@ViewBag.Date</span>
<span style="margin-right: 20px;float: right;">日期:<span id="time"></span></span>
</div>
<table class="table">
<tr>
@@ -82,6 +82,8 @@
}

var AOProcessId = getQueryString('AOProcessId');
var createTime = getQueryString('createTime');
$('#time').text(createTime);
if (AOProcessId) {
TaskLogData = top.learun.httpGet(
top.$.rootUrl + '/AssetManagementSystem/Ass_AssetsOutApply/GetNWFTaskLogData?processId=' + AOProcessId, '');


Načítá se…
Zrušit
Uložit