backend-api http://jira.mfd.msk:8088/browse/CLS-721 meta
This commit is contained in:
parent
bbd133093f
commit
730f759908
4 changed files with 24 additions and 3 deletions
|
|
@ -26,6 +26,9 @@ public class TradingClearingRegistryNewAction implements IAction<TradingClearing
|
|||
@ApiModelProperty(value = "Наименование статуса", example = "ACTV")
|
||||
@JsonProperty
|
||||
private String status;
|
||||
@ApiModelProperty(value = "Тип ТКР", example = "A")
|
||||
@JsonProperty
|
||||
private String tradingClearingRegistryType;
|
||||
|
||||
|
||||
@Override
|
||||
|
|
@ -35,6 +38,7 @@ public class TradingClearingRegistryNewAction implements IAction<TradingClearing
|
|||
req.setMoneyAccountId(this.moneyAccountId);
|
||||
req.setDepoAccountId(this.depoAccountId);
|
||||
req.setStatus(this.status);
|
||||
req.setTradingClearingRegistryType(tradingClearingRegistryType);
|
||||
return req;
|
||||
}
|
||||
|
||||
|
|
@ -75,4 +79,12 @@ public class TradingClearingRegistryNewAction implements IAction<TradingClearing
|
|||
public void setStatus(String status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getTradingClearingRegistryType() {
|
||||
return tradingClearingRegistryType;
|
||||
}
|
||||
|
||||
public void setTradingClearingRegistryType(String tradingClearingRegistryType) {
|
||||
this.tradingClearingRegistryType = tradingClearingRegistryType;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
|
||||
{
|
||||
"version": "3.12.8.99",
|
||||
"version": "3.12.8.100",
|
||||
|
||||
"enums": {
|
||||
|
||||
|
|
@ -4202,6 +4202,10 @@
|
|||
{"code": "status",
|
||||
"type": 12,"name": "Наименование статуса","shortname": "Статус","link": "serviceStatus"
|
||||
}
|
||||
,
|
||||
{"code": "tradingClearingRegistryType",
|
||||
"type": 12,"name": "Тип торгово-клирингового регистра","shortname": "Тип ТКР","link": "tradingClearingRegistryType"
|
||||
}
|
||||
]
|
||||
}
|
||||
,
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--?xml-stylesheet type="text/xsl" href="\..\corp-reports\src\data\meta\meta.server.xslt"?-->
|
||||
<meta version="3.12.8.99">
|
||||
<meta version="3.12.8.100">
|
||||
<!-- _xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" _xsi:noNamespaceSchemaLocation="file:///E:/d/projects/meta/from/meta.xsd" -->
|
||||
<!--Здесь словари-->
|
||||
<enums>
|
||||
|
|
@ -974,6 +974,7 @@
|
|||
<moneyAccountId type="1" name="Номер денежного счета" shortname="Денежный счет" link="account" linkCode="account" required="true"/>
|
||||
<depoAccountId type="1" name="Номер депозитарного счета" shortname="Депозитарный счет" link="account" linkCode="account"/>
|
||||
<status type="12" name="Наименование статуса" shortname="Статус" link="serviceStatus"/>
|
||||
<tradingClearingRegistryType type="12" name="Тип торгово-клирингового регистра" shortname="Тип ТКР" link="tradingClearingRegistryType"/>
|
||||
</post>
|
||||
<put name="Изменение ТКР" confirmation="companyId,code,moneyAccountId,depoAccountId,status" class="ru.spcex.clearing.backendapi.controller.request.cud.registry.TradingClearingRegistryUpdateAction">
|
||||
<id type="1" name="Идентификатор записи" shortname="ID" link="clientCode" linkCode="id" required="true"/>
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
|
||||
{
|
||||
"version": "3.12.8.99",
|
||||
"version": "3.12.8.100",
|
||||
|
||||
"enums": {
|
||||
|
||||
|
|
@ -4202,6 +4202,10 @@
|
|||
{"code": "status",
|
||||
"type": 12,"name": "Наименование статуса","shortname": "Статус","link": "serviceStatus"
|
||||
}
|
||||
,
|
||||
{"code": "tradingClearingRegistryType",
|
||||
"type": 12,"name": "Тип торгово-клирингового регистра","shortname": "Тип ТКР","link": "tradingClearingRegistryType"
|
||||
}
|
||||
]
|
||||
}
|
||||
,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue