|
|
#2 |
|
Участник
|
В Ах3 и Ах4 есть такой же, с разницей что в 3ке просто boolean, а в 4ке public boolean
X++: boolean isCreditNote_PL()
{
SalesLine salesLine;
if (this.SalesId &&
isConfigurationKeyEnabled(configurationKeyNum(PlCreditNote)))
{
select firstonly RecId from salesLine
where salesLine.SalesId == this.SalesId &&
salesLine.CreditNoteInternalRef_PL;
}
return salesLine.RecId != 0;
} |
|
|
|
|
|