create();
$role = Role::firstOrCreate(['slug' => 'admin'], ['name' => 'Admin']);
$user->roles()->sync([$role->id]);
$this->actingAs($user);
// Extend whitelist with account.balance_amount
$settings = DocumentSetting::instance();
$wl = $settings->whitelist;
$wl['account'] = array_values(array_unique(array_merge($wl['account'] ?? [], ['balance_amount'])));
$settings->whitelist = $wl;
$settings->save();
app(\App\Services\Documents\DocumentSettings::class)->refresh();
// Prepare contract + account
$contract = Contract::factory()->create();
$account = Account::factory()->create([
'contract_id' => $contract->id,
]);
$account->update(['balance_amount' => 987.65]);
// Build docx
$tmp = tempnam(sys_get_temp_dir(), 'doc');
$zip = new \ZipArchive;
$zip->open($tmp, \ZipArchive::OVERWRITE);
$zip->addFromString('[Content_Types].xml', '');
$zip->addFromString('word/document.xml', '{{account.balance_amount}}');
$zip->close();
$bytes = file_get_contents($tmp);
Storage::disk('public')->put('templates/account-balance.docx', $bytes);
$template = new \App\Models\DocumentTemplate;
$template->fill([
'name' => 'AccountTest',
'slug' => 'account-template',
'core_entity' => 'contract',
'version' => 1,
'engine' => 'docx',
'file_path' => 'templates/account-balance.docx',
'file_hash' => sha1($bytes),
'file_size' => strlen($bytes),
'mime_type' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
'active' => true,
'output_filename_pattern' => null,
'fail_on_unresolved' => false,
'entities' => [],
'columns' => [],
'tokens' => [],
'created_by' => $user->id,
'updated_by' => $user->id,
]);
$template->save();
$resp = $this->postJson(route('contracts.generate-document', ['contract' => $contract->uuid]), [
'template_slug' => 'account-template',
]);
$resp->assertOk();
}
}