hanhwa_nexacro/client/nexacro-src/Base/frmMasterData.xfdl

84 lines
4.8 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<FDL version="2.1">
<Form id="frmMasterData" titletext="기준정보 관리" width="1440" height="900" onload="Form_onload">
<Objects>
<Dataset id="dsEntity">
<ColumnInfo>
<Column id="entityCode" type="STRING" size="256"/>
<Column id="entityName" type="STRING" size="256"/>
<Column id="baseCurrency" type="STRING" size="256"/>
</ColumnInfo>
</Dataset>
<Dataset id="dsAccount">
<ColumnInfo>
<Column id="accountCode" type="STRING" size="256"/>
<Column id="accountName" type="STRING" size="256"/>
<Column id="accountCategory" type="STRING" size="256"/>
<Column id="internalTradeYn" type="STRING" size="256"/>
</ColumnInfo>
</Dataset>
<Dataset id="dsFxRate">
<ColumnInfo>
<Column id="fiscalPeriod" type="STRING" size="256"/>
<Column id="currencyCode" type="STRING" size="256"/>
<Column id="rateToKrw" type="BIGDECIMAL" size="256"/>
</ColumnInfo>
</Dataset>
<Dataset id="dsOwnership">
<ColumnInfo>
<Column id="parentEntityCode" type="STRING" size="256"/>
<Column id="childEntityCode" type="STRING" size="256"/>
<Column id="ownershipRatio" type="BIGDECIMAL" size="256"/>
</ColumnInfo>
</Dataset>
</Objects>
<Script type="xscript5.1"><![CDATA[
this.gfnApiBase = function()
{
return application.g_apiBase || "/api";
};
this.gfnBuildTransactionUrl = function(path)
{
return this.gfnApiBase() + path;
};
this.gfnShowMessage = function(message)
{
trace(message);
};
this.Form_onload = function(obj, e)
{
this.gfnShowMessage("기준정보 관리 loaded");
};
this.txLoadReference = function(obj, e)
{
this.gfnShowMessage("txLoadReference -> /api/tx/master/reference");
};
]]></Script>
<Static id="sta_grdEntity" taborder="0" left="36" top="80" width="640" height="24" text="법인정보"/>
<Grid id="grdEntity" taborder="1" left="36" top="108" width="640" height="260" binddataset="dsEntity">
<Formats><Format id="default"><Columns><Column size="213"/><Column size="213"/><Column size="213"/></Columns><Rows><Row size="32" band="head"/><Row size="28"/></Rows><Band id="head"><Cell col="0" text="법인코드"/><Cell col="1" text="법인명"/><Cell col="2" text="기준통화"/></Band><Band id="body"><Cell col="0" text="bind:entityCode"/><Cell col="1" text="bind:entityName"/><Cell col="2" text="bind:baseCurrency"/></Band></Format></Formats>
</Grid>
<Static id="sta_grdAccount" taborder="0" left="708" top="80" width="696" height="24" text="계정코드"/>
<Grid id="grdAccount" taborder="1" left="708" top="108" width="696" height="260" binddataset="dsAccount">
<Formats><Format id="default"><Columns><Column size="174"/><Column size="174"/><Column size="174"/><Column size="174"/></Columns><Rows><Row size="32" band="head"/><Row size="28"/></Rows><Band id="head"><Cell col="0" text="계정코드"/><Cell col="1" text="계정명"/><Cell col="2" text="분류"/><Cell col="3" text="내부거래"/></Band><Band id="body"><Cell col="0" text="bind:accountCode"/><Cell col="1" text="bind:accountName"/><Cell col="2" text="bind:accountCategory"/><Cell col="3" text="bind:internalTradeYn"/></Band></Format></Formats>
</Grid>
<Static id="sta_grdFxRate" taborder="0" left="36" top="382" width="640" height="24" text="환율정보"/>
<Grid id="grdFxRate" taborder="1" left="36" top="410" width="640" height="260" binddataset="dsFxRate">
<Formats><Format id="default"><Columns><Column size="213"/><Column size="213"/><Column size="213"/></Columns><Rows><Row size="32" band="head"/><Row size="28"/></Rows><Band id="head"><Cell col="0" text="회계기간"/><Cell col="1" text="통화"/><Cell col="2" text="KRW 환산율"/></Band><Band id="body"><Cell col="0" text="bind:fiscalPeriod"/><Cell col="1" text="bind:currencyCode"/><Cell col="2" text="bind:rateToKrw"/></Band></Format></Formats>
</Grid>
<Static id="sta_grdOwnership" taborder="0" left="708" top="382" width="696" height="24" text="지분율"/>
<Grid id="grdOwnership" taborder="1" left="708" top="410" width="696" height="260" binddataset="dsOwnership">
<Formats><Format id="default"><Columns><Column size="232"/><Column size="232"/><Column size="232"/></Columns><Rows><Row size="32" band="head"/><Row size="28"/></Rows><Band id="head"><Cell col="0" text="모법인"/><Cell col="1" text="자법인"/><Cell col="2" text="지분율"/></Band><Band id="body"><Cell col="0" text="bind:parentEntityCode"/><Cell col="1" text="bind:childEntityCode"/><Cell col="2" text="bind:ownershipRatio"/></Band></Format></Formats>
</Grid>
<Static id="staMessage0" taborder="900" left="36" top="824" width="1368" height="20" text="기준정보, 계정, 환율, 지분율을 확인합니다."/>
<Layouts>
<Layout width="1440" height="900" screenid="Desktop_screen"/>
</Layouts>
</Form>
</FDL>