jongotlin / paxml

安装次数: 5,427

依赖: 0

推荐者: 0

安全: 0

星标: 0

关注者: 3

分支: 0

开放问题: 0

类型:

2.0.1 2022-05-12 05:36 UTC

This package is auto-updated.

Last update: 2024-09-12 11:18:02 UTC


README

创建Paxml文档

$paxmlGenerator = new PaxmlGenerator();
$paxml = new Paxml();
$header = new Header();
$paxml->setHeader($header);
$salaryTransaction = new SalaryTransaction('1', '1122334455', '123', 1.2);
$salaryTransaction->setUnitPrice(1000);
$paxml->addSalaryTransaction($salaryTransaction);

$config = new PaxmlConfig();
$config->setAnstIdPrefix('LL');

$paxmlDocument = $paxmlGenerator->createPaxmlDocument($paxml, $config);
echo $paxmlDocument->saveXML();