console.php 876 B

1234567891011121314151617181920
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 控制台配置
  4. // +----------------------------------------------------------------------
  5. return [
  6. // 指令定义
  7. 'commands' => [
  8. "generrateinvoice"=>app\admin\command\GenerrateInvoice::class,
  9. "getorderinfoandinvoiceinfo"=>app\admin\command\GetOrderInfoAndInvoiceInfo::class,
  10. 'copyCxData'=>app\command\copyCxData::class,//复制采销数据到中间表
  11. 'handleCxData'=>app\command\handleCxData::class,//处理中间表的采销数据
  12. 'Good'=>app\command\good::class,//处理中间表的采销数据
  13. 'reporttips'=>app\command\reportTips::class,//处理中间表的采销数据
  14. 'Report'=>app\command\Report::class,//处理中间表的采销数据
  15. 'ExecPush'=>app\command\ExecPush::class,//处理中间表的采销数据
  16. ],
  17. ];