31 lines
839 B
PHP
31 lines
839 B
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use Tests\TestCase;
|
|
use App\Services\PrintService;
|
|
|
|
class ExampleTest extends TestCase
|
|
{
|
|
/**
|
|
* A basic test example.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function test_example()
|
|
{
|
|
dd(PrintService::make()->template('00596456352258754', 'a4fcc59f40fd438d9afdd4fc2e9b99fc', [
|
|
'name' => '乡村基',
|
|
'sn' => '20230223133856127032',
|
|
'time' => '2023-02-23 13:38:56',
|
|
'desk' => '10号桌',
|
|
'products' => [
|
|
['name' => '香草拿铁(大杯)', 'price' => '32.00', 'amount' => '1', 'money' => '32.00'],
|
|
['name' => '西瓜汁(大杯)', 'price' => '18.00', 'amount' => '1', 'money' => '18.00'],
|
|
],
|
|
'total' => '50.00',
|
|
'remarks' => '打包'
|
|
]));
|
|
}
|
|
}
|