fix: refs #6403 extend length to 6 digits for mrw clientType #2696
|
@ -53,7 +53,7 @@ module.exports = Self => {
|
|||
LPAD(IF(mw.serviceType IS NULL, ms.serviceType, mw.serviceType), mc.serviceTypeWidth, '0') serviceType,
|
||||
IF(mw.weekdays, 'S', 'N') weekDays,
|
||||
oa.description deliveryObservation,
|
||||
ms.clientType
|
||||
LPAD(ms.clientType, mc.clientTypeWidth, '0') clientType
|
||||
FROM expedition e
|
||||
JOIN ticket t ON e.ticketFk = t.id
|
||||
JOIN agencyMode am ON am.id = t.agencyModeFk
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
-- Place your SQL code here
|
||||
ALTER TABLE vn.mrwConfig ADD IF NOT EXISTS clientTypeWidth int(10) unsigned NULL
|
||||
COMMENT 'If it does not reach the required value, it will be padded with zeros on the left to meet the specified length.';
|
||||
|
||||
UPDATE vn.mrwConfig
|
||||
SET clientTypeWidth = 6;
|
Loading…
Reference in New Issue