Resolve "Customer source changes" #1514

Merged
korina.cordero merged 2 commits from 548-customer-source-changes-2 into master-fix 2021-06-23 09:35:34 +00:00
2 changed files with 1 additions and 3 deletions
Showing only changes of commit 2b356194bb - Show all commits

View file

@ -217,7 +217,7 @@ class CreateCustomerFromWarrantyCommand extends Command
$new_cust->setFirstName($w_first_name)
->setLastName($w_last_name)
->setPhoneMobile($w_mobile_num)
->setCreateSource('CMB_CreateFromCustomerWarranty');
->setCreateSource('CMB_CreateCustomerFromWarranty');
$this->em->persist($new_cust);

View file

@ -15,8 +15,6 @@ use App\Entity\Customer;
use App\Entity\CustomerVehicle;
use App\Entity\Vehicle;
use App\Ramcar\CustomerSource;
use Catalyst\APIBundle\Access\Generator as ACLGenerator;
class CustomerController extends APIController