yanweiyuan3
2023-08-09 588bc7829387dfc761cc25f06f77d4c81818bd10
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Quintiq file version 2.0
#parent: #root
Method FormatJSONForPackAsZip (BinaryValue binaryvalue_i, String brokername_i) as JSONBuilder id:Method_LibSOPImpExp_DialogExcelExport_FormatJSONForPackAsZip
{
  #keys: '[144528.4.1876460984]'
  Body:
  [*
    // Returns JSON for the Excel file to use for packing as ZIP
    
    // Get the Excel filename to create
    broker := select( Domain, EDIDefinitionManager.BrokerDefinitions, broker, broker.Name() = brokername_i );
    filename := broker.Destination().astype( EDIXLSLinkDefinition ).FileName()
    filepath := filename + ".xlsx";
    
    // Currently require us to hardcode the format, to create RfC to request core tech provide better API
    json := JSON::Object();
    json.Add( "name", filepath );
    json.Add( "content", binaryvalue_i.AsBase64EncodedString() );
    
    return &json;
  *]
  ReturnsOwning: true
}