Просмотр исходного кода

调整资产房间号空白

金隅分支
zhangli 3 лет назад
Родитель
Сommit
956a7e11c0
5 измененных файлов: 105 добавлений и 25 удалений
  1. +8
    -5
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_Acceptance/Form.js
  2. +3
    -0
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/AssetsFormView.js
  3. +67
    -4
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/FormView.js
  4. +21
    -15
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutItemApply/Form.js
  5. +6
    -1
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/AssetManagementSystem/Ass_Storage_Room/AssStorageRoomService.cs

+ 8
- 5
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_Acceptance/Form.js Просмотреть файл

@@ -122,15 +122,18 @@ var bootstrap = function ($, learun) {
{
label: '设备名称', name: 'AAIName', width: 150, align: 'left'
},
//{
// label: '资产型号', name: 'AAIModel', width: 100, align: 'left'
//},
{
label: '规格型号', name: 'AAISpecification', width: 100, align: 'left'
label: '规格型号', name: 'AAIModel', width: 100, align: 'left'
},
{
label: '单位', name: 'AAIUnit', width: 80, align: 'left', formatterAsync: function (callback, value, row, op, $cell) {

learun.clientdata.getAsync('dataItem', {
key: value,
code: 'sldw',
callback: function (_data) {
callback(_data.text);
}
});
}
},
{


+ 3
- 0
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/AssetsFormView.js Просмотреть файл

@@ -136,6 +136,9 @@ var bootstrap = function ($, learun) {
{
label: '规格型号', name: 'AOIModel ', width: 150, align: 'left'
},
//{
// label: '数量', name: 'AOIStock', width: 80, align: 'left'
//},
{
label: "调出部门", name: "AOIOldDepartment", width: 150, align: "left",
formatterAsync: function (callback, value, row, op, $cell) {


+ 67
- 4
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutApply/FormView.js Просмотреть файл

@@ -63,13 +63,13 @@ var bootstrap = function ($, learun) {
label: '资产名称', name: 'AOIName', width: 150, align: 'left'
},
{
label: '规格型号', name: 'AOISpecification', width: 100, align: 'left'
label: '规格型号', name: 'AOIModel', width: 150, align: 'left'
},
//{
// label: '数量', name: 'AOIStock', width: 80, align: 'left'
// label: '数量', name: 'AOIStock', width: 80, align: 'left'
//},
{
label: "调出部门", name: "AOIOldDepartment", width: 100, align: "left",
label: "调出部门", name: "AOIOldDepartment", width: 150, align: "left",
formatterAsync: function (callback, value, row, op, $cell) {
learun.clientdata.getAsync('custmerData', {
url: '/LR_SystemModule/DataSource/GetDataTable?code=' + 'classdata',
@@ -154,7 +154,70 @@ var bootstrap = function ($, learun) {
},
{
label: '备注', name: 'AOIContent', width: 150, align: 'left'
}
},

//{
// label: '资产类别', name: 'AOITId', width: 150, align: 'left', formatterAsync: function (callback, value, row, op, $cell) {
// learun.clientdata.getAsync('custmerData', {
// url: '/LR_SystemModule/DataSource/GetDataTable?code=' + 'Ass_AssetsType',
// key: value,
// keyId: 'atid',
// callback: function (_data) {
// callback(_data['aname']);
// }
// });
// }
//},
//{
// label: '单价', name: 'AOIPrice', width: 100, align: 'left'
//},

//{
// label: '单位', name: 'AOIUnit', width: 80, align: 'left', formatterAsync: function (callback, value, row, op, $cell) {
// learun.clientdata.getAsync('dataItem', {
// key: value,
// code: 'sldw',
// callback: function (_data) {
// callback(_data.text);
// }
// });
// }
//},
//{
// label: "使用人", name: "AOIUserPeople", width: 100, align: "left",
// formatterAsync: function (callback, value, row, op, $cell) {
// learun.clientdata.getAsync('custmerData', {
// url: '/LR_SystemModule/DataSource/GetDataTable?code=' + 'BaseUser',
// key: value,
// keyId: 'f_userid',
// callback: function (_data) {
// callback(_data['f_realname']);
// }
// });
// }
//},
//{
// label: "新使用人", name: "AOINewUsePeople", width: 100, align: "left",
// formatterAsync: function (callback, value, row, op, $cell) {
// learun.clientdata.getAsync('custmerData', {
// url: '/LR_SystemModule/DataSource/GetDataTable?code=' + 'BaseUser',
// key: value,
// keyId: 'f_userid',
// callback: function (_data) {
// callback(_data['f_realname']);
// }
// });
// }
//},
//{
// label: '资产型号', name: 'AOIModel', width: 100, align: 'left'
//},
//{
// label: '生产厂家', name: 'AOIManufacturer', width: 100, align: 'left'
//},
//{
// label: '用途', name: 'AOIUse', width: 100, align: 'left'
//},
],
height: 400,
mainId: 'AOIId',


+ 21
- 15
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/AssetManagementSystem/Views/Ass_AssetsOutItemApply/Form.js Просмотреть файл

@@ -42,20 +42,25 @@ var bootstrap = function ($, learun) {
allowSearch: true,
url: top.$.rootUrl + '/AssetManagementSystem/AssStorageRoom/GetTree',
param: {},
select: function (val) {
var storageId = "";
if (val) {
storageId = val.value;
}
$('#AOIRoomId').lrselectRefresh({
url: top.$.rootUrl + '/AssetManagementSystem/AssStorageRoom/GetListForStorageId?storageId=' + storageId,
text: "RCode",
value: "RId", allowSearch: true
});
}
//select: function (val) {
// var storageId = "";
// if (val) {
// storageId = val.value;
// }
// $('#AOIRoomId').lrselectRefresh({
// url: top.$.rootUrl + '/AssetManagementSystem/AssStorageRoom/GetListForStorageId?storageId=' + storageId,
// text: "RCode",
// value: "RId", allowSearch: true
// });
//}
});
//原房间
$('#AOIRoomId').lrselect({ value: 'RId', text: 'RCode', allowSearch: true });
$('#AOIRoomId').lrselect({
url: top.$.rootUrl + '/AssetManagementSystem/AssStorageRoom/GetListForStorageId',
text: "RCode",
value: "RId", allowSearch: true
});
//$('#AOIRoomId').lrselect({ value: 'RId', text: 'RCode', allowSearch: true });
//新楼宇
$('#AOINewStorageId').lrselect({
type: 'tree',
@@ -95,7 +100,7 @@ var bootstrap = function ($, learun) {
});
$('#AOINewUsePeople').lrselect({ value: 'F_UserId', text: 'F_RealName' });

$("#AAOldCode").on('click', function () {
learun.layerFormForPercent({
id: 'formitem_AAOldCode',
@@ -214,14 +219,15 @@ var bootstrap = function ($, learun) {
}
});
$('#form').lrSetFormData(selectedRow);
// $('#AAOldCode').find('span').text(selectedRow.AOIName);
// $('#AAOldCode').find('span').text(selectedRow.AOIName);
}
}
}
};
refreshGirdData = function (temprow) {
learun.layerClose('formitem_AAOldCode','');
learun.layerClose('formitem_AAOldCode', '');
var data = temprow[0];
$('#AOITId').lrselectSet(data.AIASSClass);
$('#AOICode').val(data.AICodeNumJY);
$('#AOIName').val(data.AIASSName);


+ 6
- 1
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/AssetManagementSystem/Ass_Storage_Room/AssStorageRoomService.cs Просмотреть файл

@@ -143,7 +143,12 @@ namespace Learun.Application.TwoDevelopment.AssetManagementSystem
{
try
{
string sql = $"select RId,RCode+'('+RFunction+')' as RCode from Ass_Storage_Room where StorageId='{storageId}'";
string sql = $"select RId,RCode+'('+RFunction+')' as RCode from Ass_Storage_Room";
if (!string.IsNullOrEmpty(storageId))
{
sql += $" where StorageId='{storageId}'";
}
sql += " order by RCode";
return this.BaseRepository().FindList<Ass_Storage_RoomEntity>(sql);
}


Загрузка…
Отмена
Сохранить