emizoripx / pos-invoicing-fel
FEL发票包
v1.1.11
2023-06-19 19:35 UTC
- dev-master
- v1.1.11
- v1.1.10
- v1.1.9
- v1.1.8
- v1.1.7
- v1.1.6
- v1.1.5
- v1.1.4
- v1.1.3
- v1.1.2
- v1.1.1
- v1.1.0
- v1.0.38
- v1.0.37
- v1.0.36
- v1.0.35
- v1.0.34
- v1.0.33
- v1.0.32
- v1.0.31
- v1.0.30
- v1.0.29
- v1.0.28
- v1.0.27
- v1.0.26
- v1.0.25
- v1.0.24
- v1.0.23
- v1.0.22
- v1.0.21
- v1.0.20
- v1.0.19
- v1.0.18
- v1.0.17
- v1.0.16
- v1.0.15
- v1.0.14
- v1.0.13
- v1.0.12
- v1.0.11
- v1.0.10
- v1.0.9
- v1.0.8
- v1.0.7
- v1.0.6
- v1.0.5
- v1.0.4
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0
- dev-develop
- dev-template-invoice
- dev-add-branches
- dev-nit-validate-service
- dev-settings-whatsapp
- dev-integration-settings
- dev-dynamic-link
- dev-changes-invoice
- dev-fixes-ui
- dev-notify-email
- dev-contingency-invoice
- dev-branches
- dev-limit-whatsapp
- dev-send-whatsapp
This package is auto-updated.
Last update: 2024-09-19 22:54:21 UTC
README
从POS管理电子发票的库
安装
-
仅在没有安装的情况下
composer require emizoripx/pos-invoicing-fel
步骤 1
- 运行
php artisan migrate
为包创建新表
开发说明
在本地环境中进行开发
- 在项目目录中创建一个名为
package
的文件夹 - 进入创建的目录,克隆仓库
https://github.com/emizoripx/pos-invoicing-fel.git
- 将以下行添加到项目的
composer.json
文件中
"autoload": { "psr-4": { ... "EmizorIpx\\PosInvoicingFel\\" : "package/pos-invoicing-fel/src/" } },
- 然后在终端运行以下命令
docker-compose exec app composer dumpautoload
docker-compose exec app php artisan optimize
docker-compose exec app php artisan vendor:publish --tag=public --force
设置餐厅
在fel_restorants表的配置列中,我们可以将以下配置作为键值聚合
- 发票打印字体大小
{ "font_size": "10" }
- 启用为员工启用发票的选项
{ "enable_invoices_staff": 1 }
- 从总和中移除黑色条纹
{ "without_background_total": 1 }
- 为配送添加产品代码
{ "product_delivery_code": "DEL-2122331" }