リビジョン 360
全般コメント修正
工事情報:担当者変更時、台帳変更処理バグ修正(台帳明細データ:ソース工事番号追加)
工事台帳:起動時クリアインデックスバグ修正・発注金額表示合計追加
branches/src/ProcessManagement/ProcessManagement/Common/CommonVersion.cs | ||
---|---|---|
14 | 14 |
/// <summary> |
15 | 15 |
/// 本体バージョン |
16 | 16 |
/// </summary> |
17 |
public static int s_SystemVersion = 210;
|
|
17 |
public static int s_SystemVersion = 212;
|
|
18 | 18 |
|
19 | 19 |
/// <summary> |
20 | 20 |
/// コピー・環境バージョン |
branches/src/ProcessManagement/ProcessManagement/Common/Process/ClsProcessExist.cs | ||
---|---|---|
409 | 409 |
string ProcName = ClsExcute.ProcessExecuteName[ProcNo].Replace("-", "").Replace("入力", ""); |
410 | 410 |
ProcList.Add(new KeyValuePair<int, string>(ProcNo, ProcName)); |
411 | 411 |
} |
412 |
// 12:工事詳細台帳
|
|
412 |
// 13:工事詳細台帳
|
|
413 | 413 |
if (ExistConstructionLedger()) |
414 | 414 |
{ |
415 | 415 |
int ProcNo = (int)ClsExcute.ProcessExecuteNo.ConstructionLedger; |
416 | 416 |
string ProcName = ClsExcute.ProcessExecuteName[ProcNo].Replace("-", "").Replace("入力", ""); |
417 | 417 |
ProcList.Add(new KeyValuePair<int, string>(ProcNo, ProcName)); |
418 | 418 |
} |
419 |
// 13:交通費及び購入品入力
|
|
419 |
// 14:交通費及び購入品入力
|
|
420 | 420 |
if (ExistTAndPCosts()) |
421 | 421 |
{ |
422 | 422 |
int ProcNo = (int)ClsExcute.ProcessExecuteNo.TAndPCosts; |
... | ... | |
866 | 866 |
} |
867 | 867 |
#endregion |
868 | 868 |
|
869 |
#region 12:工事詳細台帳入力データ存在確認
|
|
869 |
#region 13:工事詳細台帳入力データ存在確認
|
|
870 | 870 |
/// <summary> |
871 |
/// 12:工事詳細台帳入力データ存在確認
|
|
871 |
/// 13:工事詳細台帳入力データ存在確認
|
|
872 | 872 |
/// </summary> |
873 | 873 |
/// <returns></returns> |
874 | 874 |
private static bool ExistConstructionLedger() |
... | ... | |
912 | 912 |
} |
913 | 913 |
#endregion |
914 | 914 |
|
915 |
#region 13:交通費及び購入品入力データ存在確認
|
|
915 |
#region 14:交通費及び購入品入力データ存在確認
|
|
916 | 916 |
/// <summary> |
917 |
/// 13:交通費及び購入品入力データ存在確認
|
|
917 |
/// 14:交通費及び購入品入力データ存在確認
|
|
918 | 918 |
/// </summary> |
919 | 919 |
/// <returns></returns> |
920 | 920 |
private static bool ExistTAndPCosts() |
branches/src/ProcessManagement/ProcessManagement/Common/Process/ClsSecurityPermission.cs | ||
---|---|---|
383 | 383 |
case (int)ClsExcute.ProcessExecuteNo.ConstructionBaseInfo: // 2:工事情報入力 |
384 | 384 |
case (int)ClsExcute.ProcessExecuteNo.ConstructionBudget: // 6:工事予算書入力 |
385 | 385 |
case (int)ClsExcute.ProcessExecuteNo.PurchaseOrderPrint: // 10:注文書印刷 |
386 |
case (int)ClsExcute.ProcessExecuteNo.ConstructionLedger: // 12:工事詳細台帳
|
|
386 |
case (int)ClsExcute.ProcessExecuteNo.ConstructionLedger: // 13:工事詳細台帳
|
|
387 | 387 |
bReturn = true; |
388 | 388 |
break; |
389 | 389 |
default: |
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ApprovalScreen/FrmApprovalScreen.cs | ||
---|---|---|
437 | 437 |
{ |
438 | 438 |
try |
439 | 439 |
{ |
440 |
// ???F???`?F?b?N |
|
440 |
// ???F???f?[?^??`?F?b?N |
|
441 |
if (!CheckAppData()) return; |
|
442 |
|
|
443 |
// ???F???`?F?b?N |
|
441 | 444 |
if (!CheckUserAppStat()) return; |
442 | 445 |
|
443 | 446 |
// ???F?????`?F?b?N |
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ApprovalScreen/FrmApprovalScreenAuxiliary.cs | ||
---|---|---|
1291 | 1291 |
} |
1292 | 1292 |
#endregion |
1293 | 1293 |
|
1294 |
#region 承認対象データのチェック |
|
1295 |
/// <summary> |
|
1296 |
/// 承認対象データのチェック |
|
1297 |
/// </summary> |
|
1298 |
/// <returns></returns> |
|
1299 |
private bool CheckAppData() |
|
1300 |
{ |
|
1301 |
try |
|
1302 |
{ |
|
1303 |
// 承認機能によってデータチェックを行う |
|
1304 |
switch (m_ApprovalCode) |
|
1305 |
{ |
|
1306 |
case (int)ClsExcute.ApprovalListNo.ConstructionBudgetApproval: |
|
1307 |
// 工事予算承認 |
|
1308 |
if (!FrmConstructionBudget.CheckAppPriceValue(m_ConstructionCode)) |
|
1309 |
{ |
|
1310 |
MessageBox.Show("対象データにエラーがあります、データを確認してください。","データ確認"); |
|
1311 |
return false; |
|
1312 |
} |
|
1313 |
break; |
|
1314 |
default: |
|
1315 |
break; |
|
1316 |
} |
|
1317 |
|
|
1318 |
|
|
1319 |
return true; |
|
1320 |
} |
|
1321 |
catch (Exception ex) |
|
1322 |
{ |
|
1323 |
logger.ErrorFormat("システムエラー:{0}:{1}", CommonMotions.GetMethodName(), ex.Message); |
|
1324 |
return false; |
|
1325 |
} |
|
1326 |
} |
|
1327 |
#endregion |
|
1328 |
|
|
1294 | 1329 |
#region ---------->> 指示連絡コメント処理 |
1295 | 1330 |
#region 指示連絡コメント表示処理 |
1296 | 1331 |
/// <summary> |
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionBaseInfo/DataChange.cs | ||
---|---|---|
1218 | 1218 |
ConstructionLedgerDetail NewDetailRec = new ConstructionLedgerDetail(); |
1219 | 1219 |
NewDetailRec.ConstructionCode = ProcConstrCode; // ?H????? |
1220 | 1220 |
NewDetailRec.GroupCount = GroupCode; // ?O???[?v??? |
1221 |
NewDetailRec.LineCount = 99; // ?s???
|
|
1221 |
NewDetailRec.LineCount = 9990; // ?s???
|
|
1222 | 1222 |
|
1223 | 1223 |
frm.GetTitileParametar = GroupCode; |
1224 | 1224 |
NewDetailRec.FirstString = frm.GetTitleString; // ??????? |
1225 | 1225 |
|
1226 | 1226 |
NewDetailRec.SecondString = string.Empty; // ?H?????e |
1227 |
NewDetailRec.ComponentCode = DepartmentCode; // ?S????????R?[?h |
|
1227 |
NewDetailRec.ComponentCode = DepartmentCode; // ?S????????R?[?h
|
|
1228 | 1228 |
NewDetailRec.CompanyType = (int)CommonDefine.CodeDataType.Person; // ??????R?[?h?^?C?v |
1229 | 1229 |
NewDetailRec.CompanyCode = ConstructorCode; // ?S????R?[?h |
1230 | 1230 |
NewDetailRec.ExecutionAmount = 0; // ???s???z |
... | ... | |
1234 | 1234 |
NewDetailRec.SalaryFlg = DetailRec.SalaryFlg; // ???^?U???? |
1235 | 1235 |
NewDetailRec.SalaryDays = DetailRec.SalaryDays; // ???^?U?????? |
1236 | 1236 |
NewDetailRec.OperatingFlg = (int)ConstructionLedgerDetail.SalOpeKindDef.Oparateing; // ?S?????t???O |
1237 |
NewDetailRec.SourceCode = ProcConstrCode; // ???H????? |
|
1237 | 1238 |
|
1238 | 1239 |
NewDetailRec.SalaryOnRegist = MonthryCost; // ?o?^?????z???^ |
1239 | 1240 |
|
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionBaseInfo/FrmConstructionBaseInfoAuxiliary.cs | ||
---|---|---|
5283 | 5283 |
try |
5284 | 5284 |
{ |
5285 | 5285 |
// ?T?u?t?H?[???N?????????????? |
5286 |
if (m_SubForm) return; |
|
5286 |
if (m_SubForm) |
|
5287 |
{ |
|
5288 |
MessageBox.Show("?w???????x?{?^???????N?????g?p????????A\r\n?H??????????N????????????B" |
|
5289 |
, "" |
|
5290 |
, MessageBoxButtons.OK |
|
5291 |
, MessageBoxIcon.Information); |
|
5292 |
return; |
|
5293 |
} |
|
5287 | 5294 |
|
5288 | 5295 |
// ?Q????????????? |
5289 | 5296 |
//if (m_EditLock) return; |
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionBaseInfo/ProcessControl.cs | ||
---|---|---|
114 | 114 |
case (int)ClsExcute.ProcessExecuteNo.PurchaseOrderPrint: // 10:注文書印刷 |
115 | 115 |
handle = ProcessExecute_PurchaseOrderPrint; |
116 | 116 |
break; |
117 |
case (int)ClsExcute.ProcessExecuteNo.ConstructionLedger: // 12:工事詳細台帳
|
|
117 |
case (int)ClsExcute.ProcessExecuteNo.ConstructionLedger: // 13:工事詳細台帳
|
|
118 | 118 |
handle = ProcessExecute_ConstructionLedger; |
119 | 119 |
break; |
120 |
case (int)ClsExcute.ProcessExecuteNo.TAndPCosts: // 13:交通費及び購入品入力
|
|
120 |
case (int)ClsExcute.ProcessExecuteNo.TAndPCosts: // 14:交通費及び購入品入力
|
|
121 | 121 |
handle = ProcessExecute_TAndPCosts; |
122 | 122 |
break; |
123 | 123 |
} |
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionBudget/FrmConstructionBudget.cs | ||
---|---|---|
251 | 251 |
/// </summary> |
252 | 252 |
private static Color s_CommonCalculatedValueFColor = Color.White; |
253 | 253 |
#endregion |
254 |
|
|
254 |
|
|
255 | 255 |
#region ?O???b?h????s?^?C?g?? |
256 | 256 |
/// <summary> |
257 | 257 |
/// ?O???b?h????s?^?C?g?? |
... | ... | |
363 | 363 |
/// <summary> |
364 | 364 |
/// ?O???b?h?J???[???F?G???A |
365 | 365 |
/// </summary> |
366 |
private Color[] m_GridColor = new Color[] { Color.FromArgb(255, 255, 192) , Color.FromArgb(255, 224, 192) };
|
|
366 |
private Color[] m_GridColor = new Color[] { Color.FromArgb(255, 255, 192), Color.FromArgb(255, 224, 192) }; |
|
367 | 367 |
#endregion |
368 | 368 |
|
369 | 369 |
#endregion |
... | ... | |
388 | 388 |
/// ?H?????F?t???O |
389 | 389 |
/// </summary> |
390 | 390 |
private bool m_ApprovalFlg = false; |
391 |
|
|
391 |
|
|
392 | 392 |
/// <summary> |
393 | 393 |
/// ?I???{?^???????t???O |
394 | 394 |
/// </summary> |
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionBudget/FrmConstructionBudgetAuxiliary.cs | ||
---|---|---|
4873 | 4873 |
{ |
4874 | 4874 |
if (pnlApproval.Visible) |
4875 | 4875 |
{ |
4876 |
if (MessageBox.Show("発注希望金額と実行金額に差異があります、申請しますか?"
|
|
4877 |
, "承認申請エラー"
|
|
4876 |
DialogResult drRet = MessageBox.Show("発注希望金額と実行金額に差異があります、申請しますか?"
|
|
4877 |
, "申請チェック"
|
|
4878 | 4878 |
, MessageBoxButtons.OKCancel |
4879 |
, MessageBoxIcon.Error) == DialogResult.Cancel) |
|
4880 |
{ |
|
4881 |
return false; |
|
4882 |
} |
|
4879 |
, MessageBoxIcon.Error); |
|
4880 |
|
|
4881 |
if (drRet == DialogResult.Cancel) return false; |
|
4883 | 4882 |
} |
4884 | 4883 |
else |
4885 | 4884 |
{ |
4886 | 4885 |
MessageBox.Show("発注希望金額と実行金額に差異があります、承認できません。" |
4887 |
, "承認申請エラー"
|
|
4886 |
, "承認エラー" |
|
4888 | 4887 |
, MessageBoxButtons.OK |
4889 | 4888 |
, MessageBoxIcon.Error); |
4890 | 4889 |
return false; |
... | ... | |
4900 | 4899 |
} |
4901 | 4900 |
} |
4902 | 4901 |
#endregion |
4902 |
|
|
4903 |
#region 希望金額・実行金額チェック |
|
4904 |
/// <summary> |
|
4905 |
/// 希望金額・実行金額チェック |
|
4906 |
/// </summary> |
|
4907 |
/// <returns></returns> |
|
4908 |
public static bool CheckAppPriceValue(int ConstrCode) |
|
4909 |
{ |
|
4910 |
IOConstructionBudgetDetail DetalDB = new IOConstructionBudgetDetail(); |
|
4911 |
try |
|
4912 |
{ |
|
4913 |
StringBuilder strSQL = new StringBuilder(); |
|
4914 |
strSQL.AppendFormat(" Where ConstructionCode = {0}", ConstrCode); |
|
4915 |
strSQL.AppendFormat(" And GroupCount In ({0}, {1}, {2})" |
|
4916 |
// 2:共通仮設費 |
|
4917 |
, (int)FrmConstructionBudget.DataGroup.CommonTempCosts |
|
4918 |
// 3:外注費 |
|
4919 |
, (int)FrmConstructionBudget.DataGroup.OutSourceCosts |
|
4920 |
// 4:自社施工 |
|
4921 |
, (int)FrmConstructionBudget.DataGroup.MyConstruction); |
|
4922 |
strSQL.Append(" And CompanyCode > 0"); |
|
4923 |
List<ConstructionBudgetDetail> DataList = new List<ConstructionBudgetDetail>(); |
|
4924 |
if (!DetalDB.SelectAction(strSQL.ToString(), ref DataList)) return false; |
|
4925 |
|
|
4926 |
bool bRet = true; |
|
4927 |
foreach (ConstructionBudgetDetail CurRec in DataList) |
|
4928 |
{ |
|
4929 |
if (CurRec.OrderDesiredAmount != CurRec.ExecutionAmount |
|
4930 |
&& CurRec.OrderDesiredAmount > CurRec.ExecutionAmount) |
|
4931 |
{ |
|
4932 |
bRet = false; |
|
4933 |
break; |
|
4934 |
} |
|
4935 |
} |
|
4936 |
|
|
4937 |
return bRet; |
|
4938 |
} |
|
4939 |
catch (Exception ex) |
|
4940 |
{ |
|
4941 |
logger.ErrorFormat("システムエラー:{0}:{1}", CommonMotions.GetMethodName(), ex.Message); |
|
4942 |
return false; |
|
4943 |
} |
|
4944 |
finally |
|
4945 |
{ |
|
4946 |
DetalDB.close(); DetalDB = null; |
|
4947 |
} |
|
4948 |
} |
|
4949 |
#endregion |
|
4903 | 4950 |
} |
4904 | 4951 |
} |
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionBudget/ProcessControl.cs | ||
---|---|---|
114 | 114 |
case (int)ClsExcute.ProcessExecuteNo.PurchaseOrderPrint: // 10:注文書印刷 |
115 | 115 |
handle = ProcessExecute_PurchaseOrderPrint; |
116 | 116 |
break; |
117 |
case (int)ClsExcute.ProcessExecuteNo.ConstructionLedger: // 12:工事詳細台帳
|
|
117 |
case (int)ClsExcute.ProcessExecuteNo.ConstructionLedger: // 13:工事詳細台帳
|
|
118 | 118 |
handle = ProcessExecute_ConstructionLedger; |
119 | 119 |
break; |
120 |
case (int)ClsExcute.ProcessExecuteNo.TAndPCosts: // 13:交通費及び購入品入力
|
|
120 |
case (int)ClsExcute.ProcessExecuteNo.TAndPCosts: // 14:交通費及び購入品入力
|
|
121 | 121 |
handle = ProcessExecute_TAndPCosts; |
122 | 122 |
break; |
123 | 123 |
} |
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionLedger/FrmConstructionLedger.cs | ||
---|---|---|
1100 | 1100 |
|
1101 | 1101 |
// 1?s???I?? |
1102 | 1102 |
dgvAllDisplay.Rows[0].Selected = true; |
1103 |
m_BeforeGridRow = dgvAllDisplay.CurrentRow.Index;
|
|
1103 |
m_BeforeGridRow = 0;
|
|
1104 | 1104 |
// ?s?I??F???? |
1105 | 1105 |
SelectRowChangeColor(m_BeforeGridRow); |
1106 | 1106 |
} |
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionLedger/FrmConstructionLedgerAuxiliary.cs | ||
---|---|---|
2547 | 2547 |
// 合計値取得 |
2548 | 2548 |
GetDetailTotal(ref EstimatePriceValue, ref ExecPriceValue, ref PercentValue, ref TotalValue, ref ResultPriceValue, ref MTotal); |
2549 | 2549 |
|
2550 |
// 実行・発注金額取得 |
|
2551 |
long lPurchasePrice = GetLoopBeginValue(); |
|
2552 |
|
|
2550 | 2553 |
int EstimateValue = OrdersPrice - EstimatePriceValue; |
2551 | 2554 |
int ExecValue = OrdersPrice - ExecPriceValue; |
2555 |
long POrderPrice = OrdersPrice - lPurchasePrice; |
|
2552 | 2556 |
|
2553 | 2557 |
object[] RowData = new object[dgv.Columns.Count]; |
2554 | 2558 |
// データセット |
... | ... | |
2558 | 2562 |
RowData[(int)GridColumn.EstimatePrice] = EstimateValue.ToString("#,0"); |
2559 | 2563 |
RowData[(int)GridColumn.ExecPrice] = ExecValue.ToString("#,0"); |
2560 | 2564 |
RowData[(int)GridColumn.Percent] = CalculattionPercent((double)ExecValue).ToString("0.00"); |
2565 |
RowData[(int)GridColumn.OrderPrice] = POrderPrice.ToString("#,0"); |
|
2561 | 2566 |
RowData[(int)GridColumn.IndependentFlg] = "1"; |
2562 | 2567 |
RowData[(int)GridColumn.SourceCode] = m_ConstructionCode; |
2563 | 2568 |
|
... | ... | |
2634 | 2639 |
|
2635 | 2640 |
// 合計値取得 |
2636 | 2641 |
GetDetailTotal(ref EstimatePriceValue, ref ExecPriceValue, ref PercentValue, ref TotalValue, ref ResultPriceValue, ref MTotal); |
2642 |
// 実行・発注金額取得 |
|
2643 |
long lPurchasePrice = GetLoopBeginValue(); |
|
2637 | 2644 |
|
2638 | 2645 |
// 純利益取得 |
2639 | 2646 |
int NetIncomeLine = m_CostsRowCount[(int)CostsRowLine.NetIncomeRowLine]; |
2640 | 2647 |
EstimatePriceValue += CommonMotions.cnvInt(dgv.Rows[NetIncomeLine].Cells[(int)GridColumn.EstimatePrice].Value); |
2641 | 2648 |
ExecPriceValue += CommonMotions.cnvInt(dgv.Rows[NetIncomeLine].Cells[(int)GridColumn.ExecPrice].Value); |
2649 |
lPurchasePrice += CommonMotions.cnvInt(dgv.Rows[NetIncomeLine].Cells[(int)GridColumn.OrderPrice].Value); |
|
2642 | 2650 |
|
2643 | 2651 |
if (bCreateRow) |
2644 | 2652 |
{ |
... | ... | |
2653 | 2661 |
RowData[(int)GridColumn.EstimatePrice] = EstimatePriceValue.ToString("#,0"); |
2654 | 2662 |
RowData[(int)GridColumn.ExecPrice] = ExecPriceValue.ToString("#,0"); |
2655 | 2663 |
RowData[(int)GridColumn.Percent] = CalculattionPercent((double)ExecPriceValue).ToString("0.00"); |
2664 |
RowData[(int)GridColumn.OrderPrice] = lPurchasePrice.ToString("#,0"); |
|
2656 | 2665 |
|
2657 | 2666 |
// 月毎合計 |
2658 | 2667 |
int arrayCnt = 0; |
... | ... | |
2702 | 2711 |
dgv.Rows[LineCnt].Cells[(int)GridColumn.EstimatePrice].Value = EstimatePriceValue.ToString("#,0"); |
2703 | 2712 |
dgv.Rows[LineCnt].Cells[(int)GridColumn.ExecPrice].Value = ExecPriceValue.ToString("#,0"); |
2704 | 2713 |
dgv.Rows[LineCnt].Cells[(int)GridColumn.Percent].Value = CalculattionPercent((double)ExecPriceValue).ToString("0.00"); |
2714 |
dgv.Rows[LineCnt].Cells[(int)GridColumn.OrderPrice].Value = lPurchasePrice.ToString("#,0"); |
|
2705 | 2715 |
|
2706 | 2716 |
// 月毎合計 |
2707 | 2717 |
int arrayCnt = 0; |
... | ... | |
3128 | 3138 |
IOConstructionLedger LedgerDB = new IOConstructionLedger(); |
3129 | 3139 |
IOConstructionLedgerDetail DetailDB = new IOConstructionLedgerDetail(); |
3130 | 3140 |
IOProcessApproval ProAppDB = new IOProcessApproval(); |
3131 |
DataGridViewEX dgv = dgvAllDisplay;
|
|
3141 |
DataGridViewEX dgv = dgvAllDisplay; |
|
3132 | 3142 |
try |
3133 | 3143 |
{ |
3134 | 3144 |
// 工事詳細台帳データを読み込む |
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionLedger/ProcessControl.cs | ||
---|---|---|
113 | 113 |
case (int)ClsExcute.ProcessExecuteNo.PurchaseOrderPrint: // 10:注文書印刷 |
114 | 114 |
handle = ProcessExecute_PurchaseOrderPrint; |
115 | 115 |
break; |
116 |
case (int)ClsExcute.ProcessExecuteNo.ConstructionLedger: // 12:工事詳細台帳
|
|
116 |
case (int)ClsExcute.ProcessExecuteNo.ConstructionLedger: // 13:工事詳細台帳
|
|
117 | 117 |
handle = ProcessExecute_ConstructionLedger; |
118 | 118 |
break; |
119 |
case (int)ClsExcute.ProcessExecuteNo.TAndPCosts: // 13:交通費及び購入品入力
|
|
119 |
case (int)ClsExcute.ProcessExecuteNo.TAndPCosts: // 14:交通費及び購入品入力
|
|
120 | 120 |
handle = ProcessExecute_TAndPCosts; |
121 | 121 |
break; |
122 | 122 |
} |
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionLedgerList/CommonLedgerData.cs | ||
---|---|---|
18 | 18 |
using ProcessManagement.DB.IOAccess; |
19 | 19 |
using ProcessManagement.DataModel; |
20 | 20 |
using ProcessManagement.DB.Core; |
21 |
using ProcessManagement.Forms.CustomControls; |
|
22 |
using ProcessManagement.Forms.ControlsAction; |
|
23 |
using ProcessManagement.Forms.SubForms; |
|
24 | 21 |
//*---------------------------- 台帳データ取得SQL作成クラス -------------------* |
25 | 22 |
// 2017/08/21 Ver1.0.0.0 Create Source |
26 | 23 |
// |
... | ... | |
651 | 648 |
/// <summary> |
652 | 649 |
/// 担当者毎の部署外補助振分を取得する |
653 | 650 |
/// </summary> |
654 |
public static void GetPersonOuterCostValue(int TargetYear, int DepartmentCode, ref ArrayList CostValue) |
|
651 |
public static void GetPersonOuterCostValue(int TargetYear, int DepartmentCode, int PersonCode, ref ArrayList CostValue)
|
|
655 | 652 |
{ |
656 | 653 |
IOConstructionLedgerDetail DetailDB = new IOConstructionLedgerDetail(); |
657 | 654 |
try |
... | ... | |
680 | 677 |
, (int)FrmConstructionLedger.DataGroup.Assistant |
681 | 678 |
, (int)FrmConstructionLedger.DataGroup.Payroll); |
682 | 679 |
strSQL.AppendFormat(" AND B.ComponentCode != {0}", DepartmentCode); |
680 |
if (PersonCode > 0) strSQL.AppendFormat(" AND C.ConstructionPersonCode = {0}", PersonCode); |
|
683 | 681 |
strSQL.Append(" Group by A.GROUPCOUNT"); |
684 | 682 |
|
685 | 683 |
// 工事詳細台帳データより他部署の工事で該当部署の補助振分を取得する |
... | ... | |
703 | 701 |
, (int)FrmConstructionLedger.DataGroup.Assistant |
704 | 702 |
, (int)FrmConstructionLedger.DataGroup.Payroll); |
705 | 703 |
strSQL.AppendFormat(" AND B.ComponentCode = {0}", DepartmentCode); |
704 |
if (PersonCode > 0) strSQL.AppendFormat(" AND C.ConstructionPersonCode = {0}", PersonCode); |
|
706 | 705 |
strSQL.Append(" Group by A.GROUPCOUNT"); |
707 | 706 |
|
708 | 707 |
if (!DetailDB.ExecuteReader(strSQL.ToString(), ref CostValue)) return; |
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionLedgerList/ProcessControl.cs | ||
---|---|---|
113 | 113 |
case (int)ClsExcute.ProcessExecuteNo.PurchaseOrderPrint: // 10:注文書印刷 |
114 | 114 |
handle = ProcessExecute_PurchaseOrderPrint; |
115 | 115 |
break; |
116 |
case (int)ClsExcute.ProcessExecuteNo.ConstructionLedger: // 12:工事詳細台帳
|
|
116 |
case (int)ClsExcute.ProcessExecuteNo.ConstructionLedger: // 13:工事詳細台帳
|
|
117 | 117 |
handle = ProcessExecute_ConstructionLedger; |
118 | 118 |
break; |
119 |
case (int)ClsExcute.ProcessExecuteNo.TAndPCosts: // 13:交通費及び購入品入力
|
|
119 |
case (int)ClsExcute.ProcessExecuteNo.TAndPCosts: // 14:交通費及び購入品入力
|
|
120 | 120 |
handle = ProcessExecute_TAndPCosts; |
121 | 121 |
break; |
122 | 122 |
} |
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/DRConstruction/ProcessControl.cs | ||
---|---|---|
113 | 113 |
case (int)ClsExcute.ProcessExecuteNo.PurchaseOrderPrint: // 10:注文書印刷 |
114 | 114 |
handle = ProcessExecute_PurchaseOrderPrint; |
115 | 115 |
break; |
116 |
case (int)ClsExcute.ProcessExecuteNo.ConstructionLedger: // 12:工事詳細台帳
|
|
116 |
case (int)ClsExcute.ProcessExecuteNo.ConstructionLedger: // 13:工事詳細台帳
|
|
117 | 117 |
handle = ProcessExecute_ConstructionLedger; |
118 | 118 |
break; |
119 |
case (int)ClsExcute.ProcessExecuteNo.TAndPCosts: // 13:交通費及び購入品入力
|
|
119 |
case (int)ClsExcute.ProcessExecuteNo.TAndPCosts: // 14:交通費及び購入品入力
|
|
120 | 120 |
handle = ProcessExecute_TAndPCosts; |
121 | 121 |
break; |
122 | 122 |
} |
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/EstimateBudget/ProcessControl.cs | ||
---|---|---|
113 | 113 |
case (int)ClsExcute.ProcessExecuteNo.PurchaseOrderPrint: // 10:注文書印刷 |
114 | 114 |
handle = ProcessExecute_PurchaseOrderPrint; |
115 | 115 |
break; |
116 |
case (int)ClsExcute.ProcessExecuteNo.ConstructionLedger: // 12:工事詳細台帳
|
|
116 |
case (int)ClsExcute.ProcessExecuteNo.ConstructionLedger: // 13:工事詳細台帳
|
|
117 | 117 |
handle = ProcessExecute_ConstructionLedger; |
118 | 118 |
break; |
119 |
case (int)ClsExcute.ProcessExecuteNo.TAndPCosts: // 13:交通費及び購入品入力
|
|
119 |
case (int)ClsExcute.ProcessExecuteNo.TAndPCosts: // 14:交通費及び購入品入力
|
|
120 | 120 |
handle = ProcessExecute_TAndPCosts; |
121 | 121 |
break; |
122 | 122 |
} |
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/EstimateInput/ProcessControl.cs | ||
---|---|---|
113 | 113 |
case (int)ClsExcute.ProcessExecuteNo.PurchaseOrderPrint: // 10:注文書印刷 |
114 | 114 |
handle = ProcessExecute_PurchaseOrderPrint; |
115 | 115 |
break; |
116 |
case (int)ClsExcute.ProcessExecuteNo.ConstructionLedger: // 12:工事詳細台帳
|
|
116 |
case (int)ClsExcute.ProcessExecuteNo.ConstructionLedger: // 13:工事詳細台帳
|
|
117 | 117 |
handle = ProcessExecute_ConstructionLedger; |
118 | 118 |
break; |
119 |
case (int)ClsExcute.ProcessExecuteNo.TAndPCosts: // 13:交通費及び購入品入力
|
|
119 |
case (int)ClsExcute.ProcessExecuteNo.TAndPCosts: // 14:交通費及び購入品入力
|
|
120 | 120 |
handle = ProcessExecute_TAndPCosts; |
121 | 121 |
break; |
122 | 122 |
} |
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/EstimatePrint/ProcessControl.cs | ||
---|---|---|
113 | 113 |
case (int)ClsExcute.ProcessExecuteNo.PurchaseOrderPrint: // 10:注文書印刷 |
114 | 114 |
handle = ProcessExecute_PurchaseOrderPrint; |
115 | 115 |
break; |
116 |
case (int)ClsExcute.ProcessExecuteNo.ConstructionLedger: // 12:工事詳細台帳
|
|
116 |
case (int)ClsExcute.ProcessExecuteNo.ConstructionLedger: // 13:工事詳細台帳
|
|
117 | 117 |
handle = ProcessExecute_ConstructionLedger; |
118 | 118 |
break; |
119 |
case (int)ClsExcute.ProcessExecuteNo.TAndPCosts: // 13:交通費及び購入品入力
|
|
119 |
case (int)ClsExcute.ProcessExecuteNo.TAndPCosts: // 14:交通費及び購入品入力
|
|
120 | 120 |
handle = ProcessExecute_TAndPCosts; |
121 | 121 |
break; |
122 | 122 |
} |
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/Material/MaterialReserveEntry/ProcessControl.cs | ||
---|---|---|
119 | 119 |
case (int)ClsExcute.ProcessExecuteNo.PurchaseOrderPrint: // 10:注文書印刷 |
120 | 120 |
handle = ProcessExecute_PurchaseOrderPrint; |
121 | 121 |
break; |
122 |
case (int)ClsExcute.ProcessExecuteNo.ConstructionLedger: // 12:工事詳細台帳
|
|
122 |
case (int)ClsExcute.ProcessExecuteNo.ConstructionLedger: // 13:工事詳細台帳
|
|
123 | 123 |
handle = ProcessExecute_ConstructionLedger; |
124 | 124 |
break; |
125 |
case (int)ClsExcute.ProcessExecuteNo.TAndPCosts: // 13:交通費及び購入品入力
|
|
125 |
case (int)ClsExcute.ProcessExecuteNo.TAndPCosts: // 14:交通費及び購入品入力
|
|
126 | 126 |
handle = ProcessExecute_TAndPCosts; |
127 | 127 |
break; |
128 | 128 |
} |
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/Material/MaterialReturnEntry/ProcessControl.cs | ||
---|---|---|
119 | 119 |
case (int)ClsExcute.ProcessExecuteNo.PurchaseOrderPrint: // 10:注文書印刷 |
120 | 120 |
handle = ProcessExecute_PurchaseOrderPrint; |
121 | 121 |
break; |
122 |
case (int)ClsExcute.ProcessExecuteNo.ConstructionLedger: // 12:工事詳細台帳
|
|
122 |
case (int)ClsExcute.ProcessExecuteNo.ConstructionLedger: // 13:工事詳細台帳
|
|
123 | 123 |
handle = ProcessExecute_ConstructionLedger; |
124 | 124 |
break; |
125 |
case (int)ClsExcute.ProcessExecuteNo.TAndPCosts: // 13:交通費及び購入品入力
|
|
125 |
case (int)ClsExcute.ProcessExecuteNo.TAndPCosts: // 14:交通費及び購入品入力
|
|
126 | 126 |
handle = ProcessExecute_TAndPCosts; |
127 | 127 |
break; |
128 | 128 |
} |
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/Proceedings/ProcessControl.cs | ||
---|---|---|
113 | 113 |
case (int)ClsExcute.ProcessExecuteNo.PurchaseOrderPrint: // 10:注文書印刷 |
114 | 114 |
handle = ProcessExecute_PurchaseOrderPrint; |
115 | 115 |
break; |
116 |
case (int)ClsExcute.ProcessExecuteNo.ConstructionLedger: // 12:工事詳細台帳
|
|
116 |
case (int)ClsExcute.ProcessExecuteNo.ConstructionLedger: // 13:工事詳細台帳
|
|
117 | 117 |
handle = ProcessExecute_ConstructionLedger; |
118 | 118 |
break; |
119 |
case (int)ClsExcute.ProcessExecuteNo.TAndPCosts: // 13:交通費及び購入品入力
|
|
119 |
case (int)ClsExcute.ProcessExecuteNo.TAndPCosts: // 14:交通費及び購入品入力
|
|
120 | 120 |
handle = ProcessExecute_TAndPCosts; |
121 | 121 |
break; |
122 | 122 |
} |
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/PurchaseOrderEntry/ProcessControl.cs | ||
---|---|---|
113 | 113 |
case (int)ClsExcute.ProcessExecuteNo.PurchaseOrderPrint: // 10:注文書印刷 |
114 | 114 |
handle = ProcessExecute_PurchaseOrderPrint; |
115 | 115 |
break; |
116 |
case (int)ClsExcute.ProcessExecuteNo.ConstructionLedger: // 12:工事詳細台帳
|
|
116 |
case (int)ClsExcute.ProcessExecuteNo.ConstructionLedger: // 13:工事詳細台帳
|
|
117 | 117 |
handle = ProcessExecute_ConstructionLedger; |
118 | 118 |
break; |
119 |
case (int)ClsExcute.ProcessExecuteNo.TAndPCosts: // 13:交通費及び購入品入力
|
|
119 |
case (int)ClsExcute.ProcessExecuteNo.TAndPCosts: // 14:交通費及び購入品入力
|
|
120 | 120 |
handle = ProcessExecute_TAndPCosts; |
121 | 121 |
break; |
122 | 122 |
} |
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/PurchaseOrderPrint/ProcessControl.cs | ||
---|---|---|
113 | 113 |
case (int)ClsExcute.ProcessExecuteNo.PurchaseOrderPrint: // 10:注文書印刷 |
114 | 114 |
handle = ProcessExecute_PurchaseOrderPrint; |
115 | 115 |
break; |
116 |
case (int)ClsExcute.ProcessExecuteNo.ConstructionLedger: // 12:工事詳細台帳
|
|
116 |
case (int)ClsExcute.ProcessExecuteNo.ConstructionLedger: // 13:工事詳細台帳
|
|
117 | 117 |
handle = ProcessExecute_ConstructionLedger; |
118 | 118 |
break; |
119 |
case (int)ClsExcute.ProcessExecuteNo.TAndPCosts: // 13:交通費及び購入品入力
|
|
119 |
case (int)ClsExcute.ProcessExecuteNo.TAndPCosts: // 14:交通費及び購入品入力
|
|
120 | 120 |
handle = ProcessExecute_TAndPCosts; |
121 | 121 |
break; |
122 | 122 |
} |
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/Request/RequestInput/FrmRequestInput.Designer.cs | ||
---|---|---|
28 | 28 |
/// </summary> |
29 | 29 |
private void InitializeComponent() |
30 | 30 |
{ |
31 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
32 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
33 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
34 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); |
|
35 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
36 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
37 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
38 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
39 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
40 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
41 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
42 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
43 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
44 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
45 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
46 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
47 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle17 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
48 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle18 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
49 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle19 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
50 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle20 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
51 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle21 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
31 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle43 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
32 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle44 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
33 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle45 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
34 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle46 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
35 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle47 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
36 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle48 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
37 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle49 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
38 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle50 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
39 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle51 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
40 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle52 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
41 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle53 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
42 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle54 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
43 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle55 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
44 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle56 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
45 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle57 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
46 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle58 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
47 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle59 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
48 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle60 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
49 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle61 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
50 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle62 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
51 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle63 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
52 | 52 |
this.label3 = new System.Windows.Forms.Label(); |
53 |
this.dgv1 = new CustomControls.DataGridViewEX(); |
|
53 |
this.dgv1 = new ProcessManagement.Forms.CustomControls.DataGridViewEX();
|
|
54 | 54 |
this.col001 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
55 | 55 |
this.col002 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
56 | 56 |
this.col003 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
... | ... | |
84 | 84 |
this.SeparateBillingLabel = new System.Windows.Forms.Label(); |
85 | 85 |
this.CombinedOrderLabel = new System.Windows.Forms.Label(); |
86 | 86 |
this.groupBoxEx1 = new ProcessManagement.Forms.CustomControls.GroupBoxEx(); |
87 |
this.label2 = new System.Windows.Forms.Label(); |
|
88 |
this.label4 = new System.Windows.Forms.Label(); |
|
89 |
this.cbReqMonth = new System.Windows.Forms.ComboBox(); |
|
90 |
this.label5 = new System.Windows.Forms.Label(); |
|
91 |
this.txtOrderer = new System.Windows.Forms.TextBox(); |
|
92 |
this.lblReqOrder = new System.Windows.Forms.Label(); |
|
93 | 87 |
this.pnlNormal = new System.Windows.Forms.Panel(); |
94 | 88 |
this.lblApprovalCount = new System.Windows.Forms.Label(); |
95 | 89 |
this.button2 = new System.Windows.Forms.Button(); |
... | ... | |
98 | 92 |
this.btnDeny = new System.Windows.Forms.Button(); |
99 | 93 |
this.btnPend = new System.Windows.Forms.Button(); |
100 | 94 |
this.btnAgree = new System.Windows.Forms.Button(); |
95 |
this.label2 = new System.Windows.Forms.Label(); |
|
96 |
this.label4 = new System.Windows.Forms.Label(); |
|
97 |
this.cbReqMonth = new System.Windows.Forms.ComboBox(); |
|
98 |
this.label5 = new System.Windows.Forms.Label(); |
|
99 |
this.txtOrderer = new System.Windows.Forms.TextBox(); |
|
100 |
this.lblReqOrder = new System.Windows.Forms.Label(); |
|
101 | 101 |
((System.ComponentModel.ISupportInitialize)(this.dgv1)).BeginInit(); |
102 | 102 |
this.groupBoxEx1.SuspendLayout(); |
103 | 103 |
this.pnlNormal.SuspendLayout(); |
... | ... | |
108 | 108 |
// |
109 | 109 |
this.label3.BackColor = System.Drawing.Color.Gold; |
110 | 110 |
this.label3.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
111 |
this.label3.Location = new System.Drawing.Point(465, 10);
|
|
111 |
this.label3.Location = new System.Drawing.Point(470, 10);
|
|
112 | 112 |
this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); |
113 | 113 |
this.label3.Name = "label3"; |
114 | 114 |
this.label3.Size = new System.Drawing.Size(400, 20); |
... | ... | |
151 | 151 |
this.col098, |
152 | 152 |
this.col99}); |
153 | 153 |
this.dgv1.EnableHeadersVisualStyles = false; |
154 |
this.dgv1.Location = new System.Drawing.Point(5, 98);
|
|
154 |
this.dgv1.Location = new System.Drawing.Point(5, 106);
|
|
155 | 155 |
this.dgv1.Name = "dgv1"; |
156 | 156 |
this.dgv1.RowHeadersVisible = false; |
157 | 157 |
this.dgv1.RowHeadersWidth = 24; |
158 | 158 |
this.dgv1.RowTemplate.Height = 21; |
159 |
this.dgv1.Size = new System.Drawing.Size(1320, 477);
|
|
159 |
this.dgv1.Size = new System.Drawing.Size(1330, 477);
|
|
160 | 160 |
this.dgv1.TabIndex = 10; |
161 | 161 |
this.dgv1.CellBeginEdit += new System.Windows.Forms.DataGridViewCellCancelEventHandler(this.dgv1_CellBeginEdit); |
162 | 162 |
this.dgv1.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgv1_CellEndEdit); |
... | ... | |
190 | 190 |
// col004 |
191 | 191 |
// |
192 | 192 |
this.col004.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None; |
193 |
dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
|
194 |
dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
|
|
195 |
this.col004.DefaultCellStyle = dataGridViewCellStyle1;
|
|
193 |
dataGridViewCellStyle43.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
|
194 |
dataGridViewCellStyle43.BackColor = System.Drawing.SystemColors.Control;
|
|
195 |
this.col004.DefaultCellStyle = dataGridViewCellStyle43;
|
|
196 | 196 |
this.col004.Frozen = true; |
197 | 197 |
this.col004.HeaderText = ""; |
198 | 198 |
this.col004.Name = "col004"; |
... | ... | |
203 | 203 |
// |
204 | 204 |
// col005 |
205 | 205 |
// |
206 |
dataGridViewCellStyle2.BackColor = System.Drawing.Color.White;
|
|
207 |
this.col005.DefaultCellStyle = dataGridViewCellStyle2;
|
|
206 |
dataGridViewCellStyle44.BackColor = System.Drawing.Color.White;
|
|
207 |
this.col005.DefaultCellStyle = dataGridViewCellStyle44;
|
|
208 | 208 |
this.col005.Frozen = true; |
209 | 209 |
this.col005.HeaderText = ""; |
210 | 210 |
this.col005.Name = "col005"; |
... | ... | |
215 | 215 |
// |
216 | 216 |
// col006 |
217 | 217 |
// |
218 |
dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
219 |
dataGridViewCellStyle3.BackColor = System.Drawing.Color.White;
|
|
220 |
this.col006.DefaultCellStyle = dataGridViewCellStyle3;
|
|
218 |
dataGridViewCellStyle45.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
219 |
dataGridViewCellStyle45.BackColor = System.Drawing.Color.White;
|
|
220 |
this.col006.DefaultCellStyle = dataGridViewCellStyle45;
|
|
221 | 221 |
this.col006.Frozen = true; |
222 | 222 |
this.col006.HeaderText = "受注金額"; |
223 | 223 |
this.col006.Name = "col006"; |
... | ... | |
227 | 227 |
// |
228 | 228 |
// col007 |
229 | 229 |
// |
230 |
dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; |
|
231 |
dataGridViewCellStyle4.BackColor = System.Drawing.SystemColors.Control; |
|
232 |
this.col007.DefaultCellStyle = dataGridViewCellStyle4; |
|
230 |
dataGridViewCellStyle46.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
|
231 |
dataGridViewCellStyle46.BackColor = System.Drawing.SystemColors.Control;
|
|
232 |
this.col007.DefaultCellStyle = dataGridViewCellStyle46;
|
|
233 | 233 |
this.col007.Frozen = true; |
234 | 234 |
this.col007.HeaderText = ""; |
235 | 235 |
this.col007.Name = "col007"; |
... | ... | |
239 | 239 |
// |
240 | 240 |
// col008 |
241 | 241 |
// |
242 |
dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
243 |
this.col008.DefaultCellStyle = dataGridViewCellStyle5;
|
|
242 |
dataGridViewCellStyle47.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
243 |
this.col008.DefaultCellStyle = dataGridViewCellStyle47;
|
|
244 | 244 |
this.col008.FillWeight = 120F; |
245 | 245 |
this.col008.Frozen = true; |
246 | 246 |
this.col008.HeaderText = "合計"; |
... | ... | |
251 | 251 |
// |
252 | 252 |
// col009 |
253 | 253 |
// |
254 |
dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
255 |
this.col009.DefaultCellStyle = dataGridViewCellStyle6;
|
|
254 |
dataGridViewCellStyle48.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
255 |
this.col009.DefaultCellStyle = dataGridViewCellStyle48;
|
|
256 | 256 |
this.col009.HeaderText = "1回目"; |
257 | 257 |
this.col009.Name = "col009"; |
258 | 258 |
this.col009.ReadOnly = true; |
... | ... | |
261 | 261 |
// |
262 | 262 |
// col010 |
263 | 263 |
// |
264 |
dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
265 |
this.col010.DefaultCellStyle = dataGridViewCellStyle7;
|
|
264 |
dataGridViewCellStyle49.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
265 |
this.col010.DefaultCellStyle = dataGridViewCellStyle49;
|
|
266 | 266 |
this.col010.HeaderText = "2回目"; |
267 | 267 |
this.col010.Name = "col010"; |
268 | 268 |
this.col010.ReadOnly = true; |
... | ... | |
271 | 271 |
// |
272 | 272 |
// col011 |
273 | 273 |
// |
274 |
dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
275 |
this.col011.DefaultCellStyle = dataGridViewCellStyle8;
|
|
274 |
dataGridViewCellStyle50.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
275 |
this.col011.DefaultCellStyle = dataGridViewCellStyle50;
|
|
276 | 276 |
this.col011.HeaderText = "3回目"; |
277 | 277 |
this.col011.Name = "col011"; |
278 | 278 |
this.col011.ReadOnly = true; |
... | ... | |
281 | 281 |
// |
282 | 282 |
// col12 |
283 | 283 |
// |
284 |
dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
285 |
this.col12.DefaultCellStyle = dataGridViewCellStyle9;
|
|
284 |
dataGridViewCellStyle51.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
285 |
this.col12.DefaultCellStyle = dataGridViewCellStyle51;
|
|
286 | 286 |
this.col12.HeaderText = "4回目"; |
287 | 287 |
this.col12.Name = "col12"; |
288 | 288 |
this.col12.ReadOnly = true; |
... | ... | |
292 | 292 |
// |
293 | 293 |
// col13 |
294 | 294 |
// |
295 |
dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
296 |
this.col13.DefaultCellStyle = dataGridViewCellStyle10;
|
|
295 |
dataGridViewCellStyle52.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
296 |
this.col13.DefaultCellStyle = dataGridViewCellStyle52;
|
|
297 | 297 |
this.col13.HeaderText = "5回目"; |
298 | 298 |
this.col13.Name = "col13"; |
299 | 299 |
this.col13.ReadOnly = true; |
... | ... | |
303 | 303 |
// |
304 | 304 |
// col14 |
305 | 305 |
// |
306 |
dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
307 |
this.col14.DefaultCellStyle = dataGridViewCellStyle11;
|
|
306 |
dataGridViewCellStyle53.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
307 |
this.col14.DefaultCellStyle = dataGridViewCellStyle53;
|
|
308 | 308 |
this.col14.HeaderText = "6回目"; |
309 | 309 |
this.col14.Name = "col14"; |
310 | 310 |
this.col14.ReadOnly = true; |
... | ... | |
314 | 314 |
// |
315 | 315 |
// col15 |
316 | 316 |
// |
317 |
dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
318 |
this.col15.DefaultCellStyle = dataGridViewCellStyle12;
|
|
317 |
dataGridViewCellStyle54.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
318 |
this.col15.DefaultCellStyle = dataGridViewCellStyle54;
|
|
319 | 319 |
this.col15.HeaderText = "7回目"; |
320 | 320 |
this.col15.Name = "col15"; |
321 | 321 |
this.col15.ReadOnly = true; |
... | ... | |
325 | 325 |
// |
326 | 326 |
// col16 |
327 | 327 |
// |
328 |
dataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
329 |
this.col16.DefaultCellStyle = dataGridViewCellStyle13;
|
|
328 |
dataGridViewCellStyle55.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
329 |
this.col16.DefaultCellStyle = dataGridViewCellStyle55;
|
|
330 | 330 |
this.col16.HeaderText = "8回目"; |
331 | 331 |
this.col16.Name = "col16"; |
332 | 332 |
this.col16.ReadOnly = true; |
... | ... | |
336 | 336 |
// |
337 | 337 |
// col17 |
338 | 338 |
// |
339 |
dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
340 |
this.col17.DefaultCellStyle = dataGridViewCellStyle14;
|
|
339 |
dataGridViewCellStyle56.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
340 |
this.col17.DefaultCellStyle = dataGridViewCellStyle56;
|
|
341 | 341 |
this.col17.HeaderText = "9回目"; |
342 | 342 |
this.col17.Name = "col17"; |
343 | 343 |
this.col17.ReadOnly = true; |
... | ... | |
347 | 347 |
// |
348 | 348 |
// col18 |
349 | 349 |
// |
350 |
dataGridViewCellStyle15.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
351 |
this.col18.DefaultCellStyle = dataGridViewCellStyle15;
|
|
350 |
dataGridViewCellStyle57.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
351 |
this.col18.DefaultCellStyle = dataGridViewCellStyle57;
|
|
352 | 352 |
this.col18.HeaderText = "10回目"; |
353 | 353 |
this.col18.Name = "col18"; |
354 | 354 |
this.col18.ReadOnly = true; |
... | ... | |
358 | 358 |
// |
359 | 359 |
// col19 |
360 | 360 |
// |
361 |
dataGridViewCellStyle16.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
362 |
this.col19.DefaultCellStyle = dataGridViewCellStyle16;
|
|
361 |
dataGridViewCellStyle58.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
362 |
this.col19.DefaultCellStyle = dataGridViewCellStyle58;
|
|
363 | 363 |
this.col19.HeaderText = "11回目"; |
364 | 364 |
this.col19.Name = "col19"; |
365 | 365 |
this.col19.ReadOnly = true; |
... | ... | |
369 | 369 |
// |
370 | 370 |
// col20 |
371 | 371 |
// |
372 |
dataGridViewCellStyle17.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
373 |
this.col20.DefaultCellStyle = dataGridViewCellStyle17;
|
|
372 |
dataGridViewCellStyle59.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
373 |
this.col20.DefaultCellStyle = dataGridViewCellStyle59;
|
|
374 | 374 |
this.col20.HeaderText = "12回目"; |
375 | 375 |
this.col20.Name = "col20"; |
376 | 376 |
this.col20.ReadOnly = true; |
... | ... | |
380 | 380 |
// |
381 | 381 |
// col21 |
382 | 382 |
// |
383 |
dataGridViewCellStyle18.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
384 |
this.col21.DefaultCellStyle = dataGridViewCellStyle18;
|
|
383 |
dataGridViewCellStyle60.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
384 |
this.col21.DefaultCellStyle = dataGridViewCellStyle60;
|
|
385 | 385 |
this.col21.HeaderText = "13回目"; |
386 | 386 |
this.col21.Name = "col21"; |
387 | 387 |
this.col21.ReadOnly = true; |
... | ... | |
391 | 391 |
// |
392 | 392 |
// col22 |
393 | 393 |
// |
394 |
dataGridViewCellStyle19.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
395 |
this.col22.DefaultCellStyle = dataGridViewCellStyle19;
|
|
394 |
dataGridViewCellStyle61.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
395 |
this.col22.DefaultCellStyle = dataGridViewCellStyle61;
|
|
396 | 396 |
this.col22.HeaderText = "14回目"; |
397 | 397 |
this.col22.Name = "col22"; |
398 | 398 |
this.col22.ReadOnly = true; |
... | ... | |
402 | 402 |
// |
403 | 403 |
// col23 |
404 | 404 |
// |
405 |
dataGridViewCellStyle20.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
406 |
this.col23.DefaultCellStyle = dataGridViewCellStyle20;
|
|
405 |
dataGridViewCellStyle62.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
406 |
this.col23.DefaultCellStyle = dataGridViewCellStyle62;
|
|
407 | 407 |
this.col23.HeaderText = "15回目"; |
408 | 408 |
this.col23.Name = "col23"; |
409 | 409 |
this.col23.ReadOnly = true; |
... | ... | |
413 | 413 |
// |
414 | 414 |
// col098 |
415 | 415 |
// |
416 |
dataGridViewCellStyle21.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
417 |
this.col098.DefaultCellStyle = dataGridViewCellStyle21;
|
|
416 |
dataGridViewCellStyle63.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
|
|
417 |
this.col098.DefaultCellStyle = dataGridViewCellStyle63;
|
|
418 | 418 |
this.col098.HeaderText = "残り"; |
419 | 419 |
this.col098.Name = "col098"; |
420 | 420 |
this.col098.ReadOnly = true; |
... | ... | |
436 | 436 |
this.btnEntry.BackColor = System.Drawing.Color.Green; |
437 | 437 |
this.btnEntry.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
438 | 438 |
this.btnEntry.ForeColor = System.Drawing.Color.White; |
439 |
this.btnEntry.Location = new System.Drawing.Point(1071, 585);
|
|
439 |
this.btnEntry.Location = new System.Drawing.Point(1071, 590);
|
|
440 | 440 |
this.btnEntry.Name = "btnEntry"; |
441 | 441 |
this.btnEntry.Size = new System.Drawing.Size(120, 28); |
442 | 442 |
this.btnEntry.TabIndex = 13; |
... | ... | |
449 | 449 |
this.btnEnd.BackColor = System.Drawing.Color.Blue; |
450 | 450 |
this.btnEnd.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
451 | 451 |
this.btnEnd.ForeColor = System.Drawing.Color.White; |
452 |
this.btnEnd.Location = new System.Drawing.Point(1197, 585);
|
|
452 |
this.btnEnd.Location = new System.Drawing.Point(1197, 590);
|
|
453 | 453 |
this.btnEnd.Name = "btnEnd"; |
454 | 454 |
this.btnEnd.Size = new System.Drawing.Size(120, 28); |
455 | 455 |
this.btnEnd.TabIndex = 14; |
... | ... | |
462 | 462 |
this.btnAdd.BackColor = System.Drawing.Color.Orange; |
463 | 463 |
this.btnAdd.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
464 | 464 |
this.btnAdd.ForeColor = System.Drawing.Color.Black; |
465 |
this.btnAdd.Location = new System.Drawing.Point(158, 585);
|
|
465 |
this.btnAdd.Location = new System.Drawing.Point(158, 590);
|
|
466 | 466 |
this.btnAdd.Name = "btnAdd"; |
467 | 467 |
this.btnAdd.Size = new System.Drawing.Size(120, 28); |
468 | 468 |
this.btnAdd.TabIndex = 12; |
... | ... | |
475 | 475 |
this.btnOtherProc.BackColor = System.Drawing.Color.Lime; |
476 | 476 |
this.btnOtherProc.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
477 | 477 |
this.btnOtherProc.ForeColor = System.Drawing.Color.Black; |
478 |
this.btnOtherProc.Location = new System.Drawing.Point(12, 585);
|
|
478 |
this.btnOtherProc.Location = new System.Drawing.Point(12, 590);
|
|
479 | 479 |
this.btnOtherProc.Name = "btnOtherProc"; |
480 | 480 |
this.btnOtherProc.Size = new System.Drawing.Size(140, 28); |
481 | 481 |
this.btnOtherProc.TabIndex = 11; |
... | ... | |
535 | 535 |
this.groupBoxEx1.Controls.Add(this.lblReqOrder); |
536 | 536 |
this.groupBoxEx1.Location = new System.Drawing.Point(5, 52); |
537 | 537 |
this.groupBoxEx1.Name = "groupBoxEx1"; |
538 |
this.groupBoxEx1.Size = new System.Drawing.Size(1320, 40);
|
|
538 |
this.groupBoxEx1.Size = new System.Drawing.Size(1330, 46);
|
|
539 | 539 |
this.groupBoxEx1.TabIndex = 18; |
540 | 540 |
this.groupBoxEx1.TabStop = false; |
541 | 541 |
// |
542 |
// label2 |
|
543 |
// |
|
544 |
this.label2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128))))); |
|
545 |
this.label2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
546 |
this.label2.CausesValidation = false; |
|
547 |
this.label2.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
548 |
this.label2.Location = new System.Drawing.Point(5, 7); |
|
549 |
this.label2.Name = "label2"; |
|
550 |
this.label2.Size = new System.Drawing.Size(100, 25); |
|
551 |
this.label2.TabIndex = 2; |
|
552 |
this.label2.Text = "請求先"; |
|
553 |
this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
554 |
// |
|
555 |
// label4 |
|
556 |
// |
|
557 |
this.label4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128))))); |
|
558 |
this.label4.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
559 |
this.label4.CausesValidation = false; |
|
560 |
this.label4.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
561 |
this.label4.Location = new System.Drawing.Point(599, 7); |
|
562 |
this.label4.Name = "label4"; |
|
563 |
this.label4.Size = new System.Drawing.Size(100, 25); |
|
564 |
this.label4.TabIndex = 4; |
|
565 |
this.label4.Text = "請求月"; |
|
566 |
this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
567 |
// |
|
568 |
// cbReqMonth |
|
569 |
// |
|
570 |
this.cbReqMonth.BackColor = System.Drawing.Color.White; |
|
571 |
this.cbReqMonth.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; |
|
572 |
this.cbReqMonth.FlatStyle = System.Windows.Forms.FlatStyle.Popup; |
|
573 |
this.cbReqMonth.FormattingEnabled = true; |
|
574 |
this.cbReqMonth.Location = new System.Drawing.Point(707, 7); |
|
575 |
this.cbReqMonth.Name = "cbReqMonth"; |
|
576 |
this.cbReqMonth.Size = new System.Drawing.Size(109, 24); |
|
577 |
this.cbReqMonth.TabIndex = 5; |
|
578 |
// |
|
579 |
// label5 |
|
580 |
// |
|
581 |
this.label5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128))))); |
|
582 |
this.label5.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
583 |
this.label5.CausesValidation = false; |
|
584 |
this.label5.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
585 |
this.label5.Location = new System.Drawing.Point(832, 7); |
|
586 |
this.label5.Name = "label5"; |
|
587 |
this.label5.Size = new System.Drawing.Size(100, 25); |
|
588 |
this.label5.TabIndex = 6; |
|
589 |
this.label5.Text = "請求回数"; |
|
590 |
this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
591 |
// |
|
592 |
// txtOrderer |
|
593 |
// |
|
594 |
this.txtOrderer.BackColor = System.Drawing.Color.White; |
|
595 |
this.txtOrderer.ImeMode = System.Windows.Forms.ImeMode.On; |
|
596 |
this.txtOrderer.Location = new System.Drawing.Point(113, 8); |
|
597 |
this.txtOrderer.Name = "txtOrderer"; |
|
598 |
this.txtOrderer.ReadOnly = true; |
|
599 |
this.txtOrderer.Size = new System.Drawing.Size(470, 23); |
|
600 |
this.txtOrderer.TabIndex = 3; |
|
601 |
this.txtOrderer.TextChanged += new System.EventHandler(this.txtOrderer_TextChanged); |
|
602 |
this.txtOrderer.Validating += new System.ComponentModel.CancelEventHandler(this.txtOrderer_Validating); |
|
603 |
// |
|
604 |
// lblReqOrder |
|
605 |
// |
|
606 |
this.lblReqOrder.BackColor = System.Drawing.Color.White; |
|
607 |
this.lblReqOrder.Location = new System.Drawing.Point(940, 7); |
|
608 |
this.lblReqOrder.Name = "lblReqOrder"; |
|
609 |
this.lblReqOrder.Size = new System.Drawing.Size(85, 24); |
|
610 |
this.lblReqOrder.TabIndex = 7; |
|
611 |
this.lblReqOrder.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
612 |
// |
|
613 | 542 |
// pnlNormal |
614 | 543 |
// |
615 | 544 |
this.pnlNormal.BackColor = System.Drawing.Color.White; |
545 |
this.pnlNormal.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
616 | 546 |
this.pnlNormal.Controls.Add(this.lblApprovalCount); |
617 | 547 |
this.pnlNormal.Controls.Add(this.button2); |
618 | 548 |
this.pnlNormal.Controls.Add(this.btnApproval); |
619 |
this.pnlNormal.Location = new System.Drawing.Point(1053, 4);
|
|
549 |
this.pnlNormal.Location = new System.Drawing.Point(1053, 5);
|
|
620 | 550 |
this.pnlNormal.Name = "pnlNormal"; |
621 |
this.pnlNormal.Size = new System.Drawing.Size(262, 30);
|
|
551 |
this.pnlNormal.Size = new System.Drawing.Size(262, 34);
|
|
622 | 552 |
this.pnlNormal.TabIndex = 8; |
623 | 553 |
// |
624 | 554 |
// lblApprovalCount |
... | ... | |
638 | 568 |
this.button2.BackColor = System.Drawing.Color.White; |
639 | 569 |
this.button2.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
640 | 570 |
this.button2.ForeColor = System.Drawing.Color.Red; |
641 |
this.button2.Location = new System.Drawing.Point(103, 3);
|
|
571 |
this.button2.Location = new System.Drawing.Point(99, 3);
|
|
642 | 572 |
this.button2.Name = "button2"; |
643 | 573 |
this.button2.Size = new System.Drawing.Size(100, 24); |
644 | 574 |
this.button2.TabIndex = 13; |
... | ... | |
661 | 591 |
// pnlApproval |
662 | 592 |
// |
663 | 593 |
this.pnlApproval.BackColor = System.Drawing.Color.White; |
594 |
this.pnlApproval.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
664 | 595 |
this.pnlApproval.Controls.Add(this.btnDeny); |
665 | 596 |
this.pnlApproval.Controls.Add(this.btnPend); |
666 | 597 |
this.pnlApproval.Controls.Add(this.btnAgree); |
667 |
this.pnlApproval.Location = new System.Drawing.Point(1053, 4);
|
|
598 |
this.pnlApproval.Location = new System.Drawing.Point(1053, 5);
|
|
668 | 599 |
this.pnlApproval.Name = "pnlApproval"; |
669 |
this.pnlApproval.Size = new System.Drawing.Size(262, 30);
|
|
600 |
this.pnlApproval.Size = new System.Drawing.Size(262, 34);
|
|
670 | 601 |
this.pnlApproval.TabIndex = 9; |
671 | 602 |
this.pnlApproval.Visible = false; |
672 | 603 |
// |
... | ... | |
706 | 637 |
this.btnAgree.UseVisualStyleBackColor = false; |
707 | 638 |
this.btnAgree.Click += new System.EventHandler(this.btnAgree_Click); |
708 | 639 |
// |
640 |
// label2 |
|
641 |
// |
|
642 |
this.label2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128))))); |
|
643 |
this.label2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
644 |
this.label2.CausesValidation = false; |
|
645 |
this.label2.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
646 |
this.label2.Location = new System.Drawing.Point(5, 10); |
|
647 |
this.label2.Name = "label2"; |
|
648 |
this.label2.Size = new System.Drawing.Size(100, 25); |
|
649 |
this.label2.TabIndex = 2; |
|
650 |
this.label2.Text = "請求先"; |
|
651 |
this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
652 |
// |
|
653 |
// label4 |
|
654 |
// |
|
655 |
this.label4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128))))); |
|
656 |
this.label4.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
657 |
this.label4.CausesValidation = false; |
|
658 |
this.label4.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
659 |
this.label4.Location = new System.Drawing.Point(599, 10); |
|
660 |
this.label4.Name = "label4"; |
|
661 |
this.label4.Size = new System.Drawing.Size(100, 25); |
|
662 |
this.label4.TabIndex = 4; |
|
663 |
this.label4.Text = "請求月"; |
|
664 |
this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
665 |
// |
|
666 |
// cbReqMonth |
|
667 |
// |
|
668 |
this.cbReqMonth.BackColor = System.Drawing.Color.White; |
|
669 |
this.cbReqMonth.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; |
|
670 |
this.cbReqMonth.FlatStyle = System.Windows.Forms.FlatStyle.Popup; |
|
671 |
this.cbReqMonth.FormattingEnabled = true; |
|
672 |
this.cbReqMonth.Location = new System.Drawing.Point(707, 10); |
|
673 |
this.cbReqMonth.Name = "cbReqMonth"; |
|
674 |
this.cbReqMonth.Size = new System.Drawing.Size(109, 24); |
|
675 |
this.cbReqMonth.TabIndex = 5; |
|
676 |
// |
|
677 |
// label5 |
|
678 |
// |
|
679 |
this.label5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128))))); |
|
680 |
this.label5.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
681 |
this.label5.CausesValidation = false; |
|
682 |
this.label5.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
683 |
this.label5.Location = new System.Drawing.Point(832, 10); |
|
684 |
this.label5.Name = "label5"; |
|
685 |
this.label5.Size = new System.Drawing.Size(100, 25); |
|
686 |
this.label5.TabIndex = 6; |
|
687 |
this.label5.Text = "請求回数"; |
|
688 |
this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
689 |
// |
|
690 |
// txtOrderer |
|
691 |
// |
|
692 |
this.txtOrderer.BackColor = System.Drawing.Color.White; |
|
693 |
this.txtOrderer.ImeMode = System.Windows.Forms.ImeMode.On; |
|
694 |
this.txtOrderer.Location = new System.Drawing.Point(113, 11); |
|
695 |
this.txtOrderer.Name = "txtOrderer"; |
|
696 |
this.txtOrderer.ReadOnly = true; |
|
697 |
this.txtOrderer.Size = new System.Drawing.Size(470, 23); |
|
698 |
this.txtOrderer.TabIndex = 3; |
|
699 |
this.txtOrderer.TextChanged += new System.EventHandler(this.txtOrderer_TextChanged); |
|
700 |
this.txtOrderer.Validating += new System.ComponentModel.CancelEventHandler(this.txtOrderer_Validating); |
|
701 |
// |
|
702 |
// lblReqOrder |
|
703 |
// |
|
704 |
this.lblReqOrder.BackColor = System.Drawing.Color.White; |
|
705 |
this.lblReqOrder.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
706 |
this.lblReqOrder.Location = new System.Drawing.Point(940, 10); |
|
707 |
this.lblReqOrder.Name = "lblReqOrder"; |
|
708 |
this.lblReqOrder.Size = new System.Drawing.Size(85, 24); |
|
709 |
this.lblReqOrder.TabIndex = 7; |
|
710 |
this.lblReqOrder.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
711 |
// |
|
709 | 712 |
// FrmRequestInput |
710 | 713 |
// |
711 | 714 |
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; |
712 | 715 |
this.BackColor = System.Drawing.Color.Black; |
713 |
this.ClientSize = new System.Drawing.Size(1330, 625);
|
|
716 |
this.ClientSize = new System.Drawing.Size(1340, 625);
|
|
714 | 717 |
this.Controls.Add(this.CombinedOrderLabel); |
715 | 718 |
this.Controls.Add(this.SeparateBillingLabel); |
716 | 719 |
this.Controls.Add(this.groupBoxEx1); |
... | ... | |
722 | 725 |
this.Controls.Add(this.btnEnd); |
723 | 726 |
this.Controls.Add(this.label3); |
724 | 727 |
this.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
725 |
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
728 |
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
|
|
726 | 729 |
this.Margin = new System.Windows.Forms.Padding(4); |
727 |
this.MaximizeBox = false; |
|
728 |
this.MinimizeBox = false; |
|
729 | 730 |
this.Name = "FrmRequestInput"; |
730 | 731 |
this.ShowIcon = false; |
731 | 732 |
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; |
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/Request/RequestInput/ProcessControl.cs | ||
---|---|---|
119 | 119 |
case (int)ClsExcute.ProcessExecuteNo.PurchaseOrderPrint: // 10:注文書印刷 |
120 | 120 |
handle = ProcessExecute_PurchaseOrderPrint; |
121 | 121 |
break; |
122 |
case (int)ClsExcute.ProcessExecuteNo.ConstructionLedger: // 12:工事詳細台帳
|
|
122 |
case (int)ClsExcute.ProcessExecuteNo.ConstructionLedger: // 13:工事詳細台帳
|
|
123 | 123 |
handle = ProcessExecute_ConstructionLedger; |
124 | 124 |
break; |
125 |
case (int)ClsExcute.ProcessExecuteNo.TAndPCosts: // 13:交通費及び購入品入力
|
|
125 |
case (int)ClsExcute.ProcessExecuteNo.TAndPCosts: // 14:交通費及び購入品入力
|
|
126 | 126 |
handle = ProcessExecute_TAndPCosts; |
127 | 127 |
break; |
128 | 128 |
case (int)ClsExcute.ProcessExecuteNo.RequestPrint: // 14:請求書印刷 |
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/Request/RequestSummaryList/ProcessControl.cs | ||
---|---|---|
128 | 128 |
case (int)ClsExcute.ProcessExecuteNo.PurchaseOrderPrint: // 10:注文書印刷 |
129 | 129 |
handle = ProcessExecute_PurchaseOrderPrint; |
130 | 130 |
break; |
131 |
case (int)ClsExcute.ProcessExecuteNo.ConstructionLedger: // 12:工事詳細台帳
|
|
131 |
case (int)ClsExcute.ProcessExecuteNo.ConstructionLedger: // 13:工事詳細台帳
|
|
132 | 132 |
handle = ProcessExecute_ConstructionLedger; |
133 | 133 |
break; |
134 |
case (int)ClsExcute.ProcessExecuteNo.TAndPCosts: // 13:交通費及び購入品入力
|
|
134 |
case (int)ClsExcute.ProcessExecuteNo.TAndPCosts: // 14:交通費及び購入品入力
|
|
135 | 135 |
handle = ProcessExecute_TAndPCosts; |
136 | 136 |
break; |
137 | 137 |
} |
branches/src/ProcessManagement/ProcessManagement/Forms/Master/Security/FrmSecurity.cs | ||
---|---|---|
108 | 108 |
|
109 | 109 |
new KeyValuePair<int, string>(-1, "日次(施工)管理"), // ----- タイトル |
110 | 110 |
new KeyValuePair<int, string>((int)ClsExcute.ProcessExecuteNo.DepartmentExpenssList, string.Empty), // 11:部署別台帳一覧 |
111 |
new KeyValuePair<int, string>((int)ClsExcute.ProcessExecuteNo.ConstructionLedgerList, string.Empty), // 12:工事詳細台帳一覧
|
|
111 |
new KeyValuePair<int, string>((int)ClsExcute.ProcessExecuteNo.ConstructionLedgerList, string.Empty), // 13:工事詳細台帳一覧
|
|
112 | 112 |
new KeyValuePair<int, string>((int)ClsExcute.ProcessExecuteNo.PriceOfBudget, string.Empty), // 37:台帳状況確認画面 |
113 | 113 |
new KeyValuePair<int, string>((int)ClsExcute.ProcessExecuteNo.ConstructionLedger, string.Empty), // 13:工事詳細台帳 |
114 | 114 |
new KeyValuePair<int, string>((int)ClsExcute.ProcessExecuteNo.DRList, string.Empty), // 15:工事日報-一覧 |
branches/src/ProcessManagement/ProcessManagement/Forms/ZMenu/FrmMenuAuxiliary.cs | ||
---|---|---|
6188 | 6188 |
// 他部署の副担当・指導員を取得する |
6189 | 6189 |
ArrayList OtherArrary = new ArrayList(); |
6190 | 6190 |
// 他振分金額を取得する |
6191 |
CommonLedgerData.GetPersonOuterCostValue(TargetYear, DepCode, ref OtherArrary); |
|
6191 |
CommonLedgerData.GetPersonOuterCostValue(TargetYear, DepCode, PerCode, ref OtherArrary);
|
|
6192 | 6192 |
foreach (object[] objRec in OtherArrary) |
6193 | 6193 |
{ |
6194 | 6194 |
int PlusMinus = CommonMotions.cnvInt(objRec[0]); |
branches/src/ProcessManagement/ProcessManagement/Properties/AssemblyInfo.cs | ||
---|---|---|
32 | 32 |
// すべての値を指定するか、下のように '*' を使ってビルドおよびリビジョン番号を |
33 | 33 |
// 既定値にすることができます: |
34 | 34 |
// [assembly: AssemblyVersion("1.0.*")] |
35 |
[assembly: AssemblyVersion("1.0.1.210")]
|
|
36 |
[assembly: AssemblyFileVersion("1.0.1.210")]
|
|
35 |
[assembly: AssemblyVersion("1.0.1.212")]
|
|
36 |
[assembly: AssemblyFileVersion("1.0.1.212")]
|
|
37 | 37 |
// Log4netを使用する |
38 | 38 |
[assembly: log4net.Config.XmlConfigurator(ConfigFile = @"log4net.config", Watch = true)] |
他の形式にエクスポート: Unified diff