You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wkcrm/application/crm/traits/AutoNumberTrait.php

59 lines
1.6 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<?php
/**
* 自动编号(合同、回款、回访、发票)
*
* @author qifan
* @date 2020-12-09
*/
namespace app\crm\traits;
use app\crm\model\NumberSequence;
use think\Db;
trait AutoNumberTrait
{
private $stringToDate = ['yyyyMMdd' => 'Ymd', 'yyyy' => 'Y', 'yyyyMM' => 'Ym'];
/**
* 获取自动编号
*
* @param $type 1合同2回款3回访4发票
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
public function getAutoNumbers($type)
{
$number = '';
$data = [];
$info = Db::name('crm_number_sequence')->where('number_type', $type)->where('status', 0)->select();
foreach ($info AS $key => $value) {
# 文本
if ($value['type'] == 1) {
$number .= $value['value'] . '-';
}
# 日期
if ($value['type'] == 2) {
$number .= date($this->stringToDate[$value['value']]) . '-';
}
# 数字
if ($value['type'] == 3) {
$number .= $value['last_number'] . '-';
# 需要更新的数据
$data[] = [
'number_sequence_id' => $value['number_sequence_id'],
'last_number' => $value['last_number'] + $value['increase_number'],
'last_date' => time()
];
}
}
return ['number' => rtrim($number, '-'), 'data' => $data];
}
}